How can I hide, spoof or mask an IP address?

1

0

Possible Duplicate:
Make my IP address appear to be from another country

Several friends said they have done it with a proxy address. Is there a quick/easy way of doing it without having to purchase advertized software? I am able to get originating IP address with $_SERVER['REMOTE_ADDR']

Frank R.

Posted 2010-08-22T05:06:49.390

Reputation: 431

Question was closed 2010-08-23T00:47:25.667

Answers

4

It is impossible to spoof your ip address over the open internet over a TCP connection due to the Three Way Handshake. PHP's $_SERVER['REMOTE_ADDR'] pulls the ip address directly from apaches tcp socket and there for cannot be influenced. It is likely that you are looking for a proxy server.

Rook

Posted 2010-08-22T05:06:49.390

Reputation: 319

1

This probably belongs over on ServerFault but check out websites like:

HideMyAss.com

Just realize you are using a public proxy so don't send anything sensitive.

Christopher Painter

Posted 2010-08-22T05:06:49.390

Reputation: 230

1

user1190

Posted 2010-08-22T05:06:49.390

Reputation: 569