mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-03 14:10:57 +08:00
48 lines
1.6 KiB
PHP
48 lines
1.6 KiB
PHP
<?php
|
|
require "../include/bittorrent.php";
|
|
dbconn();
|
|
loggedinorreturn();
|
|
|
|
if (get_user_class() < UC_MODERATOR) stderr("Error", "Permission denied");
|
|
|
|
if ($_SERVER["REQUEST_METHOD"] == "POST")
|
|
$ip = $_POST["ip"];
|
|
else
|
|
$ip = $_GET["ip"] ?? '';
|
|
if ($ip)
|
|
{
|
|
$nip = ip2long($ip);
|
|
if ($nip == -1)
|
|
stderr("Error", "Bad IP.");
|
|
$res = sql_query("SELECT * FROM bans WHERE $nip >= first AND $nip <= last") or sqlerr(__FILE__, __LINE__);
|
|
if (mysql_num_rows($res) == 0)
|
|
stderr("Result", "The IP address <b>". htmlspecialchars($ip) ."</b> is not banned.",false);
|
|
else
|
|
{
|
|
$banstable = "<table class=main border=0 cellspacing=0 cellpadding=5>\n" .
|
|
"<tr><td class=colhead>First</td><td class=colhead>Last</td><td class=colhead>Comment</td></tr>\n";
|
|
while ($arr = mysql_fetch_assoc($res))
|
|
{
|
|
$first = long2ip($arr["first"]);
|
|
$last = long2ip($arr["last"]);
|
|
$comment = htmlspecialchars($arr["comment"]);
|
|
$banstable .= "<tr><td>$first</td><td>$last</td><td>$comment</td></tr>\n";
|
|
}
|
|
$banstable .= "</table>\n";
|
|
stderr("Result", "<table border=0 cellspacing=0 cellpadding=0><tr><td class=embedded style='padding-right: 5px'><img src=pic/smilies/excl.gif></td><td class=embedded>The IP address <b>". htmlspecialchars($ip) ."</b> is banned:</td></tr></table><p>". htmlspecialchars($banstable) ."</p>");
|
|
}
|
|
}
|
|
stdhead();
|
|
|
|
?>
|
|
<h1>Test IP address</h1>
|
|
<form method=post action=testip.php>
|
|
<table border=1 cellspacing=0 cellpadding=5>
|
|
<tr><td class=rowhead>IP address</td><td><input type=text name=ip></td></tr>
|
|
<tr><td colspan=2 align=center><input type=submit class=btn value='OK'></td></tr>
|
|
</form>
|
|
</table>
|
|
|
|
<?php
|
|
stdfoot();
|