Is this possible? How?
I have seen a few articles that note vulnerabilities in apps where HTTP_X_FORWARDED_FOR is preferred over REMOTE_ADDR ( ). I have seen other articles about spoofing HTTP_REFERER but nothing about spoofing REMOTE_ADDR.
The vulnerability warnings about HTTP_X_FORWARDED_FOR are presented because the scripts are inappropriately favoring HTTP_X_FORWARDED_FOR over REMOTE_ADDR. This makes me think REMOTE_ADDR could not be spoofed (as easily or at all).
What security issues are there with displaying unique content to certain users based on REMOTE_ADDR?
Example:
I have seen a few articles that note vulnerabilities in apps where HTTP_X_FORWARDED_FOR is preferred over REMOTE_ADDR ( ). I have seen other articles about spoofing HTTP_REFERER but nothing about spoofing REMOTE_ADDR.
The vulnerability warnings about HTTP_X_FORWARDED_FOR are presented because the scripts are inappropriately favoring HTTP_X_FORWARDED_FOR over REMOTE_ADDR. This makes me think REMOTE_ADDR could not be spoofed (as easily or at all).
What security issues are there with displaying unique content to certain users based on REMOTE_ADDR?
Example:
Code:
if ($REMOTE_ADDR == '129.54.25.111') {
// Show the user something special
}