This file is indexed.

/usr/share/doc/libphp-jpgraph-examples/examples/spiderex1.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
<?php
	include ("/usr/share/jpgraph/jpgraph.php");
	include ("/usr/share/jpgraph/jpgraph_spider.php");
	
	// Some data to plot
	$data = array(55,80,46,71,95);
	
	// Create the graph and the plot
	$graph = new SpiderGraph(250,200,"auto");
	$plot = new SpiderPlot($data);

	// Add the plot and display the graph
	$graph->Add($plot);
	$graph->Stroke();
?>