Search code examples
securityposthttpwebrequestxmlhttprequest

How secure is a HTTP POST?


Is a POST secure enough to send login credentials over?

Or is an SSL connection a must?


Solution

  • 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.