How secure is a HTTP POST?

Matt picture Matt · Jun 17, 2009 · Viewed 76k times · Source

Is a POST secure enough to send login credentials over?

Or is an SSL connection a must?

Answer

Gumbo picture Gumbo · Jun 17, 2009

SSL is a must.

POST method is not more secure than GET as it also gets sent unencrypted over network.

SSL will cover the whole HTTP communication and encrypt the HTTP data being transmitted between the client and the server.