View Full Version : Moderate user if hostaddress = whatever
GeorgeofCS
05-01-2002, 10:21 AM
Ok I've been having a problem with a troll he knows he's being banned, being ignored, etc. So he's using surfola.com's program to hide his IP I'm wanting to know is it possible to make a hack that will either prevent registering or moderate users that come from the a certain host address. Because I know in the (".gethostbyaddr($ip[ipaddress]).") piece it says he's from surfola. It might be helpful in tracking down the real bad trolls.
I've tried pretty much everything else to keep him banned, but so far this is the only way I can think of.
Admin
05-01-2002, 10:25 AM
You can edit newreply.php and newthread.php and replace this:
// auto bypass queueing for admins/mods
if (ismoderator($foruminfo[forumid])) {
$visible=1;
}
With this:
// auto bypass queueing for admins/mods
if (ismoderator($foruminfo[forumid])) {
$visible=1;
} elseif (whatever) {
$visible = 0;
}
I don't know if you're checking his IP address of hostname, so just use what you want instead of whatever.
GeorgeofCS
05-01-2002, 11:00 AM
but just curious on the piece that you'd add for say.
if hostaddress contains surfola.com put into query
it would be
if (gethostbyaddr($ip[ipaddress]=surfola.com)
or would you need to add something to say if it contains surfola.com.
I'm still better at the ifs and elses stuff. Still learning thewhatnots :)
Admin
05-01-2002, 11:25 AM
if (strstr(gethostbyaddr($ipaddress), 'surfola.com')) {
GeorgeofCS
05-01-2002, 09:03 PM
Thanks firefly It works like a charm :)
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.