How secure is a HTTP GET when the data is URL Encoded?

get, httpwebrequest, security, url-encoding, xmlhttprequest

Solution

Not at all. URL encoded is easily reversible. You should encrypt the transport layer (i.e. use HTTPS)

Problem

If the data is Url Encoded, is it secure enough to send login credentials over HTTP GET?

Original source