Page MenuHomePhabricator

InsecureRemarkupGraphvizBlockInterpreter.php

Authored By
epriestley
Sep 13 2015, 7:17 PM
Size
1 KB
Referenced Files
None
Subscribers
None

InsecureRemarkupGraphvizBlockInterpreter.php

<?php
/**
* !!! WARNING !!!
*
* This rule is NOT SECURE! It contains KNOWN VULNERABILITIES which permit an
* attacker to (at a minimum) disclose information about the system with a
* specially crafted input.
*
* INSTALL THIS RULE AT YOUR OWN RISK.
*/
final class InsecureRemarkupGraphvizBlockInterpreter
extends PhutilRemarkupBlockInterpreter {
public function getInterpreterName() {
return 'dot';
}
public function markupContent($content, array $argv) {
if (!Filesystem::binaryExists('dot')) {
return $this->markupError(
pht(
'Unable to locate the `%s` binary. Install Graphviz.',
'dot'));
}
$width = $this->parseDimension(idx($argv, 'width'));
$future = id(new ExecFuture('dot -T%s', 'png'))
->setTimeout(15)
->write(trim($content));
list($err, $stdout, $stderr) = $future->resolve();
if ($err) {
return $this->markupError(
pht(
'Execution of `%s` failed (#%d), check your syntax: %s',
'dot',
$err,
$stderr));
}
$file = PhabricatorFile::buildFromFileDataOrHash(
$stdout,
array(
'name' => 'graphviz.png',
));
if ($this->getEngine()->isTextMode()) {
return '<'.$file->getBestURI().'>';
}
$img = phutil_tag(
'img',
array(
'src' => $file->getBestURI(),
'width' => nonempty($width, null),
));
return phutil_tag_div('phabricator-remarkup-embed-image-full', $img);
}
// TODO: This is duplicated from PhabricatorEmbedFileRemarkupRule since they
// do not share a base class.
private function parseDimension($string) {
$string = trim($string);
if (preg_match('/^(?:\d*\\.)?\d+%?$/', $string)) {
return $string;
}
return null;
}
}

File Metadata

Mime Type
text/plain; charset=utf-8
Storage Engine
amazon-s3
Storage Format
Raw Data
Storage Handle
phabricator/x5/pt/ctnvfcykvfifxlq7
Default Alt Text
InsecureRemarkupGraphvizBlockInterpreter.php (1 KB)

Event Timeline