What are the filed in the header which will be always present [99% atleast] and can not be altered ?

link|improve this question

Could you explain what you mean by "can not be altered", and why you have tagged this "security"? – Tom Anderson May 8 '11 at 13:58
i tagged it with SECURITY coz HEADER have something to do with security, i think. 'can not be altered' i tried to mean which part of header a user can not change – Sourav May 8 '11 at 14:07
"Can not be altered" how? With JavaScript? – Matt Ball May 8 '11 at 14:09
@ Matt Ball i would recommend you FF addon WebDeveloper and Header Tool and User Agent Switcher – Sourav May 8 '11 at 14:13
feedback

2 Answers

up vote 0 down vote accepted

The request. Everything else is optional. Host header is mandatory if using HTTP/1.1.

link|improve this answer
feedback

According to w3.org this header fields is not modifiable by javascript:

  • Accept-Charset
  • Accept-Encoding
  • Connection
  • Content-Length
  • Cookie
  • Cookie2
  • Content-Transfer-Encoding
  • Date
  • Expect
  • Host
  • Keep-Alive
  • Referer
  • TE
  • Trailer
  • Transfer-Encoding
  • Upgrade
  • User-Agent
  • Via
  • Proxy-*
  • Sec-*
link|improve this answer
But they also are not present. Using the simplest HTTP client named 'telnet', one can request google's homepage using one line and terminating headers with 2 empty lines: GET / HTTP/1.0 – Mel May 8 '11 at 14:59
feedback

Your Answer

 
or
required, but never shown

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