tags:

views:

1035

answers:

3

Similar: http://stackoverflow.com/questions/584272/possible-to-assign-a-new-ip-address-on-every-http-request


Is it possible to display a different/spoofed IP address using CURL when you make requests to a server? If not, is there any alternative way of spoofing your IP address using PHP?

+4  A: 

No. Unless of course you use proxies and route your traffic through them.

Georg
+2  A: 

If you make a TCP/IP request, the other end needs to know your real address or you'll never receive a response back.

R. Bemrose
+1  A: 

If you're using TCP, then no - the TCP handshake is used at the beginning of each connection to ensure that both parties are who they say they are, so unless you're capable of intercepting network traffic between the server and the spoofed host, it's not possible.

See TCP sequence prediction for more information.

Kyle Cronin