MOON
Server: Apache
System: Linux kvm.asjudinet.com 5.14.0-611.5.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Tue Nov 11 08:09:09 EST 2025 x86_64
User: asjudine (1001)
PHP: 8.0.30
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/asjudine/www/modules/AvantGo/index.php
<?php


if (!eregi("modules.php", $PHP_SELF)) {
	die ("You can't access this file directly...");
}

header("Content-Type: text/html");
echo "<html>\n"
    ."<head>\n"
    ."<title>$sitename - AvantGo</title>\n"
    ."<meta name=\"HandheldFriendly\" content=\"True\">\n"
    ."</head>\n"
    ."<body>\n\n\n"
    ."<div align=\"center\">\n";
$result = sql_query("SELECT sid, title, time FROM $prefix"._stories." ORDER BY sid DESC limit 10", $dbi);
if (!result) {
    echo "An error occured";
} else {
    echo "\t<a href=\"$nuke_url\"><img src=\"images/logo.gif\" alt=\"$slogan\" border=\"0\"></a><br>\r\n"
	."\t<h1>$sitename</h1>\r\n"
	."\t<table border=\"0\" align=\"center\">\r\n"
	."\t\t<tr>\r\n"
	."\t\t\t<td bgcolor=\"#efefef\">Article</td>\r\n"
	."\t\t\t<td bgcolor=\"#efefef\">Date</td>\r\n"
	."\t\t</tr>\r\n";
    for ($m=0; $m < sql_num_rows($result, $dbi); $m++) {
	list($sid, $title, $time) = sql_fetch_row($result, $dbi);
	echo "\t\t<tr>\r\n"
	    ."\t\t\t<td><a href=\"$nuke_url/print.php?sid=$sid\">$title</a></td>\r\n"
	    ."\t\t\t<td>$time</td>\r\n"
	    ."\t\t</tr>\r\n";
    }
    echo"\t</table>\r\n";
}
echo "</body>\n"
    ."</html>";
include ("counter.php");

?>