vote up 2 vote down star

My research shows that only the Host, Referer, and User-Agent headers can be spoofed. (source http://download2.rapid7.com/r7-0026/ )

Is this a correct assumption to make? The security of a site I am building may require that "x-requested-with" cannot be faked. This is far from ideal but may be the only avenue I have.

flag

2 Answers

vote up 10 vote down check

The security of a site I am building may require that "x-requested-with" cannot be faked

Just about anything in HTTP can be spoofed. The level of 'spoofability' is hard to determine. It's fairly trivial to craft a request with any header value I desire.

If it's your only option, so be it, but I wouldn't want to use a site that relied on it for anything important.

link|flag
no problem, good luck – Greg Dean Mar 8 at 9:59
just to wrap up, i obviously couldnt continue with the problem i faced, but after some major ( MAJOR! ) refactoring today ive managed to implement a system that is far more secure. thanks everyone. – jdee Mar 8 at 20:00
vote up 5 vote down

Every header can be spoofed. Any header that starts with x- is non-standard.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.