vote up 2 vote down star

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

flag

69% accept rate
Scores big in availability but a big 0 in integrity and confidentiality. en.wikipedia.org/wiki/Information_security – jms Jun 17 at 17:54
I think you might have the wrong idea of what GET is used for. – T Pops Jun 17 at 19:09
GETs should be idempotent, so you shouldn't be sending things like this over them and causing actions (i.e. logging in) to happen. – Legooolas Jul 23 at 8:40

7 Answers

vote up 14 vote down check

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

link|flag
4  
In addition to HTTPS, you should use POST so the credentials are not stored in browser history or favorites. – Matthew Flaschen Jun 17 at 17:46
Yeah follow Matthew's advice don't put anything in the URL that you wouldn't want someone else to see! – Martin Dale Lyness Jun 17 at 17:47
ok so if it's to an https site then it should be ok? – Matt Jun 17 at 17:49
Use HTTPS+POST. – Matthew Flaschen Jun 17 at 18:13
vote up 5 vote down

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.

link|flag
vote up 4 vote down

URL encoding is not any kind of encryption, it just prepares the string to be sent through the network.

If your data is sensitive, GET should be completely out of question. Reasons for this?

  1. The obvious one, everyone who takes a peek at the URL bar, will see the data
  2. The data will be left in every proxy log that it passes trough
  3. If the user leaves the site, the next site will have the URL recorded in it's logs/web statistics (REFERER).
link|flag
vote up 1 vote down

You can't be serious... NO!

link|flag
vote up 0 vote down

URLEncoding is for encoding/transmission, not security.

link|flag
vote up 0 vote down

Not at all secure.

link|flag
vote up 0 vote down

Please read the purpose of URL encoding

The specification for URLs (RFC 1738, Dec. '94) poses a problem, in that it limits the use of allowed characters in URLs to only a limited subset of the US-ASCII character set.

HTML, on the other hand, allows the entire range of the ISO-8859-1 (ISO-Latin) character set to be used in documents - and HTML4 expands the allowable range to include all of the Unicode character set as well. In the case of non-ISO-8859-1 characters (characters above FF hex/255 decimal in the Unicode set), they just can not be used in URLs, because there is no safe way to specify character set information in the URL content yet [RFC2396.]

URLs should be encoded everywhere in an HTML document that a URL is referenced to import an object (A, APPLET, AREA, BASE, BGSOUND, BODY, EMBED, FORM, FRAME, IFRAME, ILAYER, IMG, ISINDEX, INPUT, LAYER, LINK, OBJECT, SCRIPT, SOUND, TABLE, TD, TH, and TR elements.)

Security is not the point here. Like already noted, HTTPS should be used when that is required.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.