If you use HTTPS will your URL params will be safe from sniffing? [duplicate]

Yes your URL would be safe from sniffing; however, one hole that is easily overlooken is if your page references any third party resources such as Google Analytics, Add Content anything, your entire URL will be sent to the third party in the referer. If its really sensitive it doesn’t belong in the query string.

As for your second part of the question, you can’t use SSL if you don’t have a certificate on the server.

Leave a Comment