Is it possible to fake or hijack a content of $_SERVER['REMOTE_ADDR'] variable?
I would like to fake a request with:
$_SERVER['REMOTE_ADDR']='127.0.0.1';
How could I do that with PHP? Can CURL do that somehow?
|
|
|
I assume that you mean faking it remotely. The short answer is yes you can. The long answer about how easy it is depends on how you want to fake it. If you don't care about receiving a response, it's as trivial as opening a raw socket to the destination and forging the source IP address. I'm not sure if it's really easy to do in PHP since all of PHP's socket implementations are at or above the TCP level. But I'm sure it's possible. Now, since you're not in control of the network, the response will not go back to you. So that means that you cannot (reliably anyway) create a TCP connection via a trivial forged TCP header (since the syn-ack does prevent this by requiring two-way communication). However, if you can compromise the gateway the IP is off of, you can do whatever you'd like. So if you compromise the wifi router a computer is connected to, you can pretend to be that computer, and the server won't tell the difference. If you compromise the ISP's outbound router, you can (in theory at least) pretend to be the computer and teh server won't tell the difference. For some more info, see these following links: However, you will only be able to forge the ImportantIf you're using a framework to access this information, be absolutely sure that it does not check the Edit: RelevantI wrote a blog post recently about how I stumbled across a vulnerability in StackOverflow's application. It's very relevant here, since it exploits a very similar mechanism to what this question is looking for (although the circumstances around it are somewhat narrow): |
||||
|
|
|
The remote address is not something added out of courtesy, it's used in the IP protocol to route packages, so if you send a package with a fake address, you will not receive a response, and since you're talking about a HTTP request, which is delivered over a TCP connection, which takes several IP packets (and the matching responses) to set up: No, that's impossible (except of course by actually sending the request from the same host via the loopback interface). |
||||
|
|
You can overwrite any item in the However, it won't change your computer's IP address. |
|||
|
|
|
If you browse via a proxy, There are other headers which you can use instead in this case: This page gives a function which checks all the possibilities and provides the address most likely to be the end user's: http://roshanbh.com.np/2007/12/getting-real-ip-address-in-php.html However if the user is proxying using a badly configured proxy, or a malicious one, or one designed to anonymise the end user, then you won't be able to guarantee any of the headers other than If your end user is browsing via HTTPS, then |
|||
|
|
|
Apache populates |
|||
|
|
|
You can request script using proxy, etc. to change IP address but you cannot set there any text you want. |
|||
|
|
|
That is a variable set by apache or whatever server you're using. You cannot spoof it.
You may run |
|||
|
|