Is it safe to send unencrypted, sensitive data such as a password via POST?
|
It's not safe, unless under SSL. Still perfectly possible, however. |
|||||||||
|
|
Define "safe". Without HTTPS, the method will not withstand attacks that eavesdrop on your connection: The data will be transferred unencrypted. This is why you must use SSL when transmitting credit card data for example. Different from GET, however, POST data will not be stored in the browser's URL history, nor in Proxy logs etc. It's still the method of choice for not totally sensitive log-in processes around the world. |
||||
|
|
|
Let's take a popular and fresh example, facebook sends sensitive data over unencrypted connection. |
|||||
|
|
If the question is using POST vs GET. Then no, POST does not add any further significant security benefits over using GET. I'd recommend visiting the Open Web Application Security Project website, it offers lots of free (it's a not for profit organisation) helpful advice on security. http://www.owasp.org |
|||
|
|