mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-24 20:17:24 +08:00
fix maxlogin.php
This commit is contained in:
+10
-10
@@ -70,9 +70,9 @@ else
|
|||||||
|
|
||||||
while ($arr = mysql_fetch_assoc($res))
|
while ($arr = mysql_fetch_assoc($res))
|
||||||
{
|
{
|
||||||
$r2 = sql_query("SELECT id,username FROM users WHERE ip=".sqlesc($arr[ip])) or sqlerr(__FILE__,__LINE__);
|
$r2 = sql_query("SELECT id,username FROM users WHERE ip=".sqlesc($arr['ip'])) or sqlerr(__FILE__,__LINE__);
|
||||||
$a2 = mysql_fetch_assoc($r2);
|
$a2 = mysql_fetch_assoc($r2);
|
||||||
print("<tr><td align=>$arr[id]</td><td align=left>$arr[ip] " . ($a2[id] ? get_username($a2['id']) : "" ) . "</td><td align=left>$arr[added]</td><td align=left>$arr[attempts]</td><td align=left>".($arr[type] == "recover" ? "Recover Password Attempt!" : "Login Attempt!")."</td><td align=left>".($arr[banned] == "yes" ? "<font color=red><b>banned</b></font> <a href=maxlogin.php?action=unban&id=$arr[id]><font color=green>[<b>unban</b>]</font></a>" : "<font color=green><b>not banned</b></font> <a href=maxlogin.php?action=ban&id=$arr[id]><font color=red>[<b>ban</b>]</font></a>")." <a OnClick=\"return confirm('Are you wish to delete this attempt?');\" href=maxlogin.php?action=delete&id=$arr[id]>[<b>delete</b></a>] <a href=maxlogin.php?action=edit&id=$arr[id]><font color=blue>[<b>edit</b></a>]</font></td></tr>\n");
|
print("<tr><td align=>{$arr['id']}</td><td align=left>{$arr['ip']} " . ($a2['id'] ? get_username($a2['id']) : "" ) . "</td><td align=left>{$arr['added']}</td><td align=left>$arr[attempts]</td><td align=left>".($arr['type'] == "recover" ? "Recover Password Attempt!" : "Login Attempt!")."</td><td align=left>".($arr['banned'] == "yes" ? "<font color=red><b>banned</b></font> <a href=maxlogin.php?action=unban&id={$arr['id']}><font color=green>[<b>unban</b>]</font></a>" : "<font color=green><b>not banned</b></font> <a href=maxlogin.php?action=ban&id={$arr['id']}><font color=red>[<b>ban</b>]</font></a>")." <a OnClick=\"return confirm('Are you wish to delete this attempt?');\" href=maxlogin.php?action=delete&id={$arr['id']}>[<b>delete</b></a>] <a href=maxlogin.php?action=edit&id={$arr['id']}><font color=blue>[<b>edit</b></a>]</font></td></tr>\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
@@ -104,12 +104,12 @@ stdfoot();
|
|||||||
$result = sql_query($query) or sqlerr(__FILE__,__LINE__);
|
$result = sql_query($query) or sqlerr(__FILE__,__LINE__);
|
||||||
$a = mysql_fetch_array($result);
|
$a = mysql_fetch_array($result);
|
||||||
print("<table border=1 cellspacing=0 cellpadding=5 width=100%>\n");
|
print("<table border=1 cellspacing=0 cellpadding=5 width=100%>\n");
|
||||||
print("<tr><td><p>IP Address: <b>".htmlspecialchars($a[ip])."</b></p>");
|
print("<tr><td><p>IP Address: <b>".htmlspecialchars($a['ip'])."</b></p>");
|
||||||
print("<p>Action Time: <b>".htmlspecialchars($a[added])."</b></p></tr></td>");
|
print("<p>Action Time: <b>".htmlspecialchars($a['added'])."</b></p></tr></td>");
|
||||||
print("<form method='post' action='maxlogin.php'>");
|
print("<form method='post' action='maxlogin.php'>");
|
||||||
print("<input type='hidden' name='action' value='save'>");
|
print("<input type='hidden' name='action' value='save'>");
|
||||||
print("<input type='hidden' name='id' value='$a[id]'>");
|
print("<input type='hidden' name='id' value='{$a['id']}'>");
|
||||||
print("<input type='hidden' name='ip' value='$a[ip]'>");
|
print("<input type='hidden' name='ip' value='{$a['ip']}'>");
|
||||||
if ($_GET['return'] == 'yes')
|
if ($_GET['return'] == 'yes')
|
||||||
print("<input type='hidden' name='returnto' value='viewunbaniprequest.php'>");
|
print("<input type='hidden' name='returnto' value='viewunbaniprequest.php'>");
|
||||||
print("<tr><td>Attempts <input type='text' size='33' name='attempts' value='$a[attempts]'>");
|
print("<tr><td>Attempts <input type='text' size='33' name='attempts' value='$a[attempts]'>");
|
||||||
@@ -120,9 +120,9 @@ stdfoot();
|
|||||||
stdfoot();
|
stdfoot();
|
||||||
|
|
||||||
}elseif ($action == 'save') {
|
}elseif ($action == 'save') {
|
||||||
$id = sqlesc(intval($_POST['id'] ?? 0));
|
$id = intval($_POST['id'] ?? 0);
|
||||||
$ip = sqlesc($_POST['ip']);
|
$ip = sqlesc($_POST['ip']);
|
||||||
$attempts = sqlesc($_POST['attempts']);
|
$attempts = $_POST['attempts'];
|
||||||
$type = sqlesc($_POST['type']);
|
$type = sqlesc($_POST['type']);
|
||||||
$banned = sqlesc($_POST['banned']);
|
$banned = sqlesc($_POST['banned']);
|
||||||
check($id);
|
check($id);
|
||||||
@@ -149,9 +149,9 @@ stdfoot();
|
|||||||
|
|
||||||
while ($arr = mysql_fetch_assoc($search))
|
while ($arr = mysql_fetch_assoc($search))
|
||||||
{
|
{
|
||||||
$r2 = sql_query("SELECT id,username FROM users WHERE ip=".sqlesc($arr[ip])) or sqlerr(__FILE__,__LINE__);
|
$r2 = sql_query("SELECT id,username FROM users WHERE ip=".sqlesc($arr['ip'])) or sqlerr(__FILE__,__LINE__);
|
||||||
$a2 = mysql_fetch_assoc($r2);
|
$a2 = mysql_fetch_assoc($r2);
|
||||||
print("<tr><td align=>$arr[id]</td><td align=left>$arr[ip] " . ($a2[id] ? get_username($a2[id]) : "" ) . "</td><td align=left>$arr[added]</td><td align=left>$arr[attempts]</td><td align=left>".($arr[type] == "recover" ? "Recover Password Attempt!" : "Login Attempt!")."</td><td align=left>".($arr[banned] == "yes" ? "<font color=red><b>banned</b></font> <a href=maxlogin.php?action=unban&id=$arr[id]><font color=green>[<b>unban</b>]</font></a>" : "<font color=green><b>not banned</b></font> <a href=maxlogin.php?action=ban&id=$arr[id]><font color=red>[<b>ban</b>]</font></a>")." <a OnClick=\"return confirm('Are you wish to delete this attempt?');\" href=maxlogin.php?action=delete&id=$arr[id]>[<b>delete</b></a>] <a href=maxlogin.php?action=edit&id=$arr[id]><font color=blue>[<b>edit</b></a>]</font></td></tr>\n");
|
print("<tr><td align=>{$arr['id']}</td><td align=left>{$arr['ip']} " . ($a2['id'] ? get_username($a2['id']) : "" ) . "</td><td align=left>{$arr['added']}</td><td align=left>$arr[attempts]</td><td align=left>".($arr['type'] == "recover" ? "Recover Password Attempt!" : "Login Attempt!")."</td><td align=left>".($arr['banned'] == "yes" ? "<font color=red><b>banned</b></font> <a href=maxlogin.php?action=unban&id={$arr['id']}><font color=green>[<b>unban</b>]</font></a>" : "<font color=green><b>not banned</b></font> <a href=maxlogin.php?action=ban&id={$arr['id']}><font color=red>[<b>ban</b>]</font></a>")." <a OnClick=\"return confirm('Are you wish to delete this attempt?');\" href=maxlogin.php?action=delete&id={$arr['id']}>[<b>delete</b></a>] <a href=maxlogin.php?action=edit&id={$arr['id']}><font color=blue>[<b>edit</b></a>]</font></td></tr>\n");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
print("</table>\n");
|
print("</table>\n");
|
||||||
|
|||||||
Reference in New Issue
Block a user