PDA

View Full Version : NTL IP's - several people on same ones?


zoombini
12-10-2004, 23:11
I found out today that several people at different locations can all have the same IP.

I.E. someone has posted on another forum & they have done this under exactly the same IP as me (& some others) on the same day!.

How come?

Chris W
12-10-2004, 23:14
The people do not have the same ip (the way ip works makes this impossible) but the forum will be picking up the ip of the proxy server, rather then their real ip address.

MB

zoombini
12-10-2004, 23:25
ah heck...okidoki.
Any way around that with an vb forum?

Chris W
12-10-2004, 23:27
Yep.... the team on this forum see your real ip instead of proxy...

it is a hack installed by the admins i believe

Paul
12-10-2004, 23:29
ah heck...okidoki.
Any way around that with an vb forum?If you mean a vBulletin forum then yes, you install the appropiate hack (like the one I partially wrote, and we use ;))

generationgav
13-10-2004, 12:31
How does this hack work?
The one way I know of it being possible is via Javascript checking, but that is unbelievably easy to fake. So what method do you use? or is that a trade secret?

Paul
13-10-2004, 13:32
trade secret ;)

Horace
15-10-2004, 09:52
generationgav :

http://www.vbulletin.org/forum/showthread.php?t=69295&page=1

You'll need to register to download the fiile.

Tricky
15-10-2004, 10:16
Some PHP Code I knocked up:

if ($HTTP_VIA)
{
*****proxy = "Y";
if (strpos($HTTP_X_FORWARDED_FOR,','))
{
$HTTP_X_FORWARDED_FOR = substr($HTTP_X_FORWARDED_FOR,0,strpos($HTTP_X_FORW ARDED_FOR,',') );
}
*****addy = $HTTP_X_FORWARDED_FOR;
if(*****addy == "")
*****addy = getenv("REMOTE_ADDR");
}
else
{
*****proxy = "N";
*****addy = getenv("REMOTE_ADDR");
}
}


Would result in two variables being set:
*****proxy would be either Y or N to show if you've come via a PROXY (like NTL)
and
*****addy would be your REAL IP Address

EDIT: Don't you just love the filters!!! - the ***** was a $ for the variable followed by hit therefore looking like a foul smelling substance!? instead of ***** I.e. $wordproxy and $wordaddy

David25
15-10-2004, 12:47
If someone was browsing through a properly anonymous proxy can it be detected? I assume not, but one never knows.

nffc
15-10-2004, 13:43
Is there a phpBB hack for this?

zoombini
15-10-2004, 13:51
Thanks for the info folks - passed it on.

poolking
17-10-2004, 00:17
generationgav :

http://www.vbulletin.org/forum/showthread.php?t=69295&page=1

You'll need to register to download the fiile.
And also have a valid vbulletin licence. ;)