How secure is a HTTP GET when the data is URL Encoded?
问题 If the data is Url Encoded, is it secure enough to send login credentials over HTTP GET? 回答1: Not at all. URL encoded is easily reversible. You should encrypt the transport layer (i.e. use HTTPS) 回答2: No - URL encoding is meant to make sure all the characters you try to send with a GET request can actually arrive at the other end. It is actually designed to be easily encoded and decoded to prepare data for transport, not for security. 回答3: URL encoding is not any kind of encryption, it just