The basis for this hack is that when mods/admins click on the link to see the persons IP (assuming they have IPs logged, but only viewable to mods/admins) it will tell them if the person is using a proxy, and if they are it will tell you the real IP of the person.
How? Well as some of you may know, most proxys send out an additional header $HTTP_X_FORWARDED_FOR . This gives the real IP of the person. For example, right now I am using rogers default user proxy, my environmental variables would read:
if ($HTTP_X_FORWARDED_FOR) {
//insert into sql table etc
}
Then somewhere in the inner workings of the vb code, it would check if there is data in that sql table, if there is then it would display the IP. This could be done in the IP viewing php, or as I thought origionally somewhere in the post on the left side under the username etc.
Anyone want to help me with this? I can do the php, but I dont know what vb scripts to edit (or you can just do it all yourself )