I have form where I am entering all the data and on the submit button. I am sending the data for the processing. But what I noticed is that I can edit my post data using Tamper Data Add-on of Firefox and I think it is a Hack. So how can avoid this problem? What I have read is JSF uses default POST to send data, if so then why it is showing data in the Header? Is their any way by which I can control this and encode my post data?
|
That's just how HTTP works. How else would the client be able to send data to the server? Note that you shouldn't confuse request headers with request body. The POST data appears in the request body, not request headers. But why would you like to avoid this? The only reasonable reason I can think of is that you're validating input data in the client side (using for example JS) instead of in the server side. You shouldn't be doing this. You should always validate in the server side. You should never trust user input. Utilize the JSF-provided validators such as As long as you properly validate on the server side, the client can do whatever it want with the HTTP request and you don't need to worry about the safety (that is, when you trust JSF and your own code). JSF has already builtin prevention against XSS and also CSRF (to a certain degree, this has been improved in 2.1 and 2.2 respectively). If your actual concern is actually the man-in-the-middle attacks, then you should take a look at SSL (HTTPS). |
|||||||||||
|