Fool admins with PHP redirect script

Website

Supreme Member
Joined
Feb 8, 2008
Messages
1,260
Reaction score
287
How it works:

1. get the the IP addresses of the admins and mods of the blog you want to spam. This can be done by creating a really controversial post directed at staff. You want ppl to click this!

2. check your stats and get the IP addresses.

3. Put all the suspect ip addresses into this script

PHP:
<?php $blacklist = array("ip#2","ip#2", etc);

if(in_array($_SERVER['REMOTE_ADDR'], $blacklist)) {

	header("Location: http:/www.");

  exit();
 }
 else {
     header('Location: http://www..com');
     exit();
 }
 ?>

the admins will go to the kosher site and everyone else will go to the spam site

Make you post look legit so the mods CLICK IT. And overtly spammy post wont even be clicked and you wont get the IP address. Admins will delete your post quickly it if it links to a personal website so after scanning the stats you should get the moderator IP address quickly. Then stick it in the script.
 
Nice idea... Though on a bigger forum, you'll end up blacklisting quite a few IPs since you can't tell which IP belongs to admin/mod.
 
Back
Top