Reputation: 141
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.
Upvotes: 0
Views: 591
Reputation: 17839
yes, you can do it in the Net
panel, by clicking on the request, and observing it's contents. See image below:
This is using Mozilla Firefox 15.0.1
Upvotes: 1
Reputation: 160833
Yes, you could use firebug
to 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.
Upvotes: 1