I just have doubt can we monitor form’s post method in Firebug or TCP dump?
If yes so how can we made post method of an HTML form secure? As we can observe post or get method of jQuery in Firebug as well.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Yes, you could use
firebugto monitor the form’s post data, but you could only see the data you posted (which is quite obvious), so there is no secure problem.For tcp dump, yes, someone could use it to monitor the post data, so this is why the website need to use
Hypertext Transfer Protocol Secure (HTTPS)to protect the data.