/usr/share/doc/libphp-jpgraph-examples/examples/show-example.php is in libphp-jpgraph-examples 1.5.2-12.1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | <?php $target = urldecode($HTTP_GET_VARS['target']); ?>
<!doctype html public "-//W3C//DTD HTML 4.0 Frameset//EN">
<html>
<head>
<title> Test suite for JpGraph - <?php echo $target; ?></title>
<script type="text/javascript" language="javascript">
<!--
function resize()
{
return true;
}
//-->
</script>
</head>
<frameset rows="*,*" onLoad="resize()">
<?php
if( !strstr($target,"csim") )
echo "<frame src=\"show-image.php?target=".basename($target)."\" name=\"image\">";
else
echo "<frame src=\"".basename($target)."\" name=\"image\">";
?>
<frame src="show-source.php?target=<?php echo basename($target); ?>" name="source">
</frameset>
</html>
|