0byt3m1n1
Path:
/
data
/
applications
/
aps.bak
/
geeklog
/
1.4.1-4
/
standard
/
htdocs
/
plugins
/
spamx
/
[
Home
]
File: EditIP.Admin.class.php
<?php /** * File: EditIP.Admin.class.php * This is the Edit IPBlacklist Module for the Geeklog Spam-X plugin * * Copyright (C) 2004-2006 by the following authors: * Author Tom Willett tomw AT pigstye DOT net * Dirk Haun dirk AT haun-online DOT de * * Licensed under GNU General Public License * * $Id: EditIP.Admin.class.php,v 1.5 2006/09/02 14:22:26 dhaun Exp $ */ if (strpos ($_SERVER['PHP_SELF'], 'EditIP.Admin.class.php') !== false) { die ('This file can not be used on its own!'); } /** * IP Black List Editor */ require_once ($_CONF['path'] . 'plugins/spamx/BaseAdmin.class.php'); class EditIP extends BaseAdmin { /** * Constructor */ function display() { global $_CONF, $_TABLES, $LANG_SX00; $action = ''; if (isset ($_GET['action'])) { $action = COM_applyFilter ($_GET['action']); } else if (isset ($_POST['paction'])) { $action = COM_applyFilter ($_POST['paction']); } $entry = ''; if (isset ($_GET['entry'])) { $entry = COM_stripslashes ($_GET['entry']); } else if (isset ($_POST['pentry'])) { $entry = COM_stripslashes ($_POST['pentry']); } if ($action == 'delete') { $entry = addslashes ($entry); $result = DB_query ("DELETE FROM {$_TABLES['spamx']} WHERE name = 'IP' AND value = '$entry'"); } elseif ($action == $LANG_SX00['addentry']) { if (!empty ($entry)) { $entry = addslashes ($entry); $result = DB_query ("INSERT INTO {$_TABLES['spamx']} VALUES ('IP', '$entry')"); } } $display = '<hr>' . LB . '<p><b>'; $display .= $LANG_SX00['ipblack']; $display .= '</b></p>' . LB . '<ul>' . LB; $result = DB_query ("SELECT value FROM {$_TABLES['spamx']} WHERE name = 'IP'"); $nrows = DB_numRows ($result); for ($i = 0; $i < $nrows; $i++) { list($e) = DB_fetchArray ($result); $display .= '<li><a href="' . $_CONF['site_admin_url'] . '/plugins/spamx/index.php?command=EditIP&action=delete&entry=' . urlencode ($e) . '">' . htmlspecialchars ($e) . '</a></li>' . LB; } $display .= '</ul>' . LB . '<p>' . $LANG_SX00['e1'] . '</p>' . LB; $display .= '<p>' . $LANG_SX00['e2'] . '</p>' . LB; $display .= '<form method="POST" action="' . $_CONF['site_admin_url'] . '/plugins/spamx/index.php?command=EditIP">' . LB; $display .= '<input type="text" size ="30" name="pentry"> '; $display .= '<input type="submit" name="paction" value="' . $LANG_SX00['addentry'] . '">' . LB; $display .= '</form>' . LB; return $display; } function link() { return 'Edit IP Blacklist'; } } ?>