up vote 59 down vote favorite
43
share [g+] share [fb]

This may be a dumb question, but between a http POST and GET, what are the differences from a security perspective? Is one inherently more secure then another? I realize that POST doesn't expose information on the URL but is there any real value in that or is it just security through obscurity? What is the best practice here?

Edit: Over https, POST data is encoded, but could urls be sniffed by a 3rd party? Additionally, I am dealing with JSP, but when using JSP or a similar framework, would it be fair to say the best practice is to avoid if at all possible placing sensitive data in the POST or GET and using server side code to handle sensitive information?

link|improve this question
feedback

20 Answers

up vote 47 down vote accepted

As far as security, they are inherently the same. While it is true that POST doesn't expose information via the URL, it exposes just as much information as a GET in the actual network communication between the client and server. If you need to pass information that is sensitive, your first line of defense would be to pass it using Secure HTTP.

GET or query string posts are really good for information required for either bookmarking a particular item, or for assisting in search engine optimization and indexing items.

POST is good for standard forms used to submit one time data. I wouldn't use GET for posting actual forms, unless maybe in a search form where you want to allow the user to save the query in a bookmark, or something along those lines.

link|improve this answer
1  
With the caveat that for a GET the URL shown in the location bar can expose data that would be hidden in a POST. – tvanfosson Oct 13 '08 at 18:29
11  
It's hidden only in the most naive sense – davetron5000 Oct 13 '08 at 18:33
1  
true, but you can also say that the keyboard is insecure because someone could be looking over your shoulder when your typing your password. There's very little difference between security through obscurity and no security at all. – stephenbayer Oct 14 '08 at 14:59
11  
The visibility (and caching) of querystrings in the URL and thus the address box is clearly less secure. There's no such thing as absolute security so degrees of security are relevant. – pbreitenbach Aug 19 '09 at 5:06
1  
it's even exposed if you use a post. in your case, the post would be slightly more secure. But seriously.. I can change post variables all day long, just as easy as get variables. Cookies can even be viewed and modified.. never rely on the information you're site is sending in any way shape or form. The more security you need, the more verification methods you should have in place. – stephenbayer Mar 21 '10 at 14:35
show 3 more comments
feedback

Alright, I have read all of these answers and I see one blatantly missing piece of information:

If a GET request changes data, a confused deputy attack is possible.

Consider this URL:

http://example.com/do.php?action=delete&id=1

Now, let's for example imagine that someone wanted to delete ID #3. What would be the easiest attack vector? Clearly, with sufficient security, the Attacker could not get that URL to do anything.

However, consider this. The attacker finds out who the admin of the site is, follows him onto a forum somwhere and posts this in the forums under a topic about the target site:

<img src="http://example.com/do.php?action=delete&id=3" />

Your browser becomes a confused deputy, executing the delete command under your credentials.

So, the rule is: Don't use 'GET' Requests to Modify Data

If you are using 'POST' requests to modify the data, you can add a hidden, personalized, secret hash to the form that can be verified at the server in order to prevent such an attack. ASP.NET MVC supports this as something called an "Anti-Forgery Token".

In terms of actual data security, however, neither is particularly secure. Use SSL/TLS/HTTPS.

link|improve this answer
18  
+1 for correct answer, what the hell people – BlueRaja - Danny Pflughoeft Jan 9 '10 at 1:49
20  
ahem, CSRF is just as possible with POST. – AviD Dec 13 '10 at 12:09
5  
@Lotus Notes, it is very slightly more difficult, but you do not need any kind of XSS. POST requests are being sent all the time all over the place, and dont forget the CSRF can be sourced from any website, XSS not included. – AviD Dec 15 '10 at 6:00
13  
no you have to make somebody else with privileges to type it, as opposed to a GET which will be silently fetched by the browser. considering that every POST form should be protected with verifiable source hash, and there's no such means for a GET link, your point is silly. – kibitzer Jan 17 '11 at 20:06
9  
Using POST over GET doesn't prevent any kind of CSRF. It just makes them slightly easier to do, since it's easier to get people to go to a random website that allows images from urls, than go to a website that you control (enough to have javascript). Doing <body onload="document.getElementById('a').submit()"><form id="a" action="http://example.com/delete.php" action="post"><input type="hidden" name="id" value="12"></form> isn't really that hard to submit a post somewhere automatically by clicking a link (that contains that html) – FryGuy Jan 18 '11 at 1:53
show 5 more comments
feedback

You have no greater security provided because the variables are sent over HTTP POST than you have with variables sent over HTTP GET.

HTTP/1.1 provides us with a bunch of methods to send a request:

  • OPTIONS
  • GET
  • HEAD
  • POST
  • PUT
  • DELETE
  • TRACE
  • CONNECT

Lets suppose you have the following HTML document using GET:

<html>
<body>
<form action="http://example.com" method="get">
    User: <input type="text" name="username" /><br/>
    Password: <input type="password" name="password" /><br/>
    <input type="hidden" name="extra" value="lolcatz" />
    <input type="submit"/>
</form>
</body>
</html>

What does your browser ask? It asks this:

 GET /?username=swordfish&password=hunter2&extra=lolcatz HTTP/1.1
 Host: example.com
 Connection: keep-alive
 Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/ [...truncated]
 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US) [...truncated]
 Accept-Encoding: gzip,deflate,sdch
 Accept-Language: en-US,en;q=0.8
 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3

Now lets pretend we changed that request method to a POST:

 POST / HTTP/1.1
 Host: example.com
 Connection: keep-alive
 Content-Length: 49
 Cache-Control: max-age=0
 Origin: null
 Content-Type: application/x-www-form-urlencoded
 Accept: application/xml,application/xhtml+xml,text/ [...truncated]
 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.0; [...truncated]
 Accept-Encoding: gzip,deflate,sdch
 Accept-Language: en-US,en;q=0.8
 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3

 username=swordfish&password=hunter2&extra=lolcatz

BOTH of these HTTP requests are:

  • Not encrypted
  • Included in both examples
  • Can be evesdroped on, and subject to MITM attacks.
  • Easily reproduced by third party, and script bots.

Many browsers do not support HTTP methods other than POST/GET.

Many browsers behaviors store the page address, but this doesn't mean you can ignore any of these other issues.

So to be specific:

Is one inherently more secure then another? I realize that POST doesn't expose information on the URL but is there any real value in that or is it just security through obscurity? What is the best practice here?

This is correct, because the software you're using to speak HTTP tends to store the request variables with one method but not another only prevents someone from looking at your browser history or some other naive attack from a 10 year old who thinks they understand h4x0r1ng, or scripts that check your history store. If you have a script that can check your history store, you could just as easily have one that checks your network traffic, so this entire security through obscurity is only providing obscurity to script kiddies and jealous girlfriends.

Over https, POST data is encoded, but could urls be sniffed by a 3rd party?

Here's how SSL works. Remember those two requests I sent above? Here's what they look like in SSL: (I changed the page to https://encrypted.google.com/ as example.com doesn't respond on SSL).

POST over SSL

q5XQP%RWCd2u#o/T9oiOyR2_YO?yo/3#tR_G7 2_RO8w?FoaObi)
oXpB_y?oO4q?`2o?O4G5D12Aovo?C@?/P/oOEQC5v?vai /%0Odo
QVw#6eoGXBF_o?/u0_F!_1a0A?Q b%TFyS@Or1SR/O/o/_@5o&_o
9q1/?q$7yOAXOD5sc$H`BECo1w/`4?)f!%geOOF/!/#Of_f&AEI#
yvv/wu_b5?/o d9O?VOVOFHwRO/pO/OSv_/8/9o6b0FGOH61O?ti
/i7b?!_o8u%RS/Doai%/Be/d4$0sv_%YD2_/EOAO/C?vv/%X!T?R
_o_2yoBP)orw7H_yQsXOhoVUo49itare#cA?/c)I7R?YCsg ??c'
(_!(0u)o4eIis/S8Oo8_BDueC?1uUO%ooOI_o8WaoO/ x?B?oO@&
Pw?os9Od!c?/$3bWWeIrd_?( `P_C?7_g5O(ob(go?&/ooRxR'u/
T/yO3dS&??hIOB/?/OI?$oH2_?c_?OsD//0/_s%r

GET over SSL

rV/O8ow1pc`?058/8OS_Qy/$7oSsU'qoo#vCbOO`vt?yFo_?EYif)
43`I/WOP_8oH0%3OqP_h/cBO&24?'?o_4`scooPSOVWYSV?H?pV!i
?78cU!_b5h'/b2coWD?/43Tu?153pI/9?R8!_Od"(//O_a#t8x?__
bb3D?05Dh/PrS6_/&5p@V f $)/xvxfgO'q@y&e&S0rB3D/Y_/fO?
_'woRbOV?_!yxSOdwo1G1?8d_p?4fo81VS3sAOvO/Db/br)f4fOxt
_Qs3EO/?2O/TOo_8p82FOt/hO?X_P3o"OVQO_?Ww_dr"'DxHwo//P
oEfGtt/_o)5RgoGqui&AXEq/oXv&//?%/6_?/x_OTgOEE%v (u(?/
t7DX1O8oD?fVObiooi'8)so?o??`o"FyVOByY_ Supo? /'i?Oi"4
tr'9/o_7too7q?c2Pv

(note: I converted the HEX to ASCII, some of it should obviously not be displayable)

The entire HTTP conversation is encrypted, the only visible portion of communication is on the TCP/IP layer (meaning the IP address and connection port information).

So let me make a big bold statement here. Your website is not provided greater security over one HTTP method than it is another, hackers and newbs all over the world know exactly how to do what I've just demonstrated here. If you want security, use SSL. Browsers tend to store history, it's recommended by RFC2616 9.1.1 to NOT use GET to preform an action, but to think that POST provides security is flatly wrong.

The only thing that POST is a security measure towards? Protection against your jealous ex flipping through your browser history. That's it. The rest of the world is logged into your account laughing at you.

To further demonstrate why POST isn't secure, Facebook uses POST requests all over the place, so how can software such as FireSheep exist?

link|improve this answer
1  
Extremely well written that deserves far more up votes – aolszowka May 18 '11 at 18:45
feedback

There is no added security.

Post data does not show up in the history and/or log files but if the data should be kept secure, you need SSL.
Otherwise, anybody sniffing the wire can read your data anyway.

link|improve this answer
SSL encodes POST data but a GET url is unencoded correct? – James McMahon Oct 13 '08 at 18:26
1  
if you GET a URL over SSL, a third party will not be able to see the URL, so the security is the same – davetron5000 Oct 13 '08 at 18:33
that's correct, nemo. Obviously users can still see the data in the URL. – Eric Wendelin Oct 13 '08 at 18:34
5  
GET information can only be seen at the start and end of the SSL tunnel – Jacco Oct 13 '08 at 18:35
2  
HTTP over SSL/TLS (implemented correctly) allows the attacker sniffing the wire (or actively tampering) to see only two thing -- the IP address of the destination, and the amount of data going both ways. – Aaron Jan 17 '11 at 22:06
show 4 more comments
feedback

Even if POST gives no real security benefit versus GET, for login forms or any other form with relatively sensitive information, make sure you are using POST as:

  1. The information POSTed will not be saved in the user's history.
  2. The sensitive information (password, etc.) sent in the form will not be visible later on in the URL bar (by using GET, it will be visible in the history and the URL bar).

Also, GET has a theorical limit of data. POST doesn't.

For real sensitive info, make sure to use SSL (HTTPS)

link|improve this answer
for 1. Browser often, for the convenience of users, save information posted in form fields. – Kibbee Oct 13 '08 at 18:37
@Kibbee: By spec, they shouldn't. The major browsers doesn't save that information. – Andrew Moore Oct 13 '08 at 18:41
In the default settings, every time I enter a username and password in firefox / IE, it asks me if I want to save this information, specifically so I won't have to type it in later. – Kibbee Oct 13 '08 at 18:50
Andrew I think he means auto complete on user input fields. For instance, Firefox remembers all data I enter in my website, so when I begin to type text into a search box it will offer to complete the text with my previous searches. – James McMahon Oct 13 '08 at 18:51
Yes, well, that's the point of auto-complete, isn't it. What I meant was the actually history, not auto-complete. – Andrew Moore Oct 13 '08 at 20:11
feedback

Neither one of GET and POST is inherently "more secure" than the other, just like neither one of fax and phone is "more secure" than the other. The various HTTP methods are provided so that you can choose the one which is most appropiate for the problem you're trying to solve. GET is more appropiate for idempotent queries while POST is more appropiate for "action" queries, but you can shoot yourself in the foot just as easily with any of them if you don't understand the security architecture for the application you're maintaining.

It's probably best if you read Chapter 9: Method Definitions of the HTTP/1.1 RFC to get an overall idea of what GET and POST were originally envisioned ot mean.

link|improve this answer
feedback

The difference between GET and POST should not be viewed in terms of security, but rather in their intentions towards the server. GET should never change data on the server - at least other than in logs - but POST can create new resources.

Nice proxies won't cache POST data, but they may cache GET data from the URL, so you could say that POST is supposed to be more secure. But POST data would still be available to proxies that don't play nicely.

As mentioned in many of the answers, the only sure bet is via SSL.

But DO make sure that GET methods do not commit any changes, such as deleting database rows, etc.

link|improve this answer
1  
I agree with this. The question is not security, it's what POST and GET are designed to do. – pbreitenbach Aug 19 '09 at 5:16
feedback

My usual methodology for choosing is something like:

  • GET for items that will be retrieved later by URL
    • E.g. Search should be GET so you can do search.php?s=XXX later on
  • POST for items that will be sent
    • This is relatively invisible comapred to GET and harder to send, but data can still be sent via cURL.
link|improve this answer
anybody can send POST data: <form method="POST" action="whatever.com">; – Jacco Oct 13 '08 at 18:12
But it is harder to do a POST than a GET. A GET is just a URL in the address box. A POST requires a <form> in an HTML page or cURL. – pbreitenbach Aug 19 '09 at 5:10
So a fake post takes notepad and 5 minutes of time... not really much harder. I have used notepad to add features to a phone system that didn't exist. I was able to create a copy of the admin forms for the system that would allow me to assign commands to buttons that "were not possible" as far the vendor was concerned. – Matthew Whited Nov 16 '09 at 19:50
feedback

There is a nice blog entry about this on Jeff's blog Coding Horror: Cross-Site Request Forgeries and You.

link|improve this answer
feedback

Neither one magically confers security on a request, however GET implies some side effects that generally prevent it from being secure.

GET URLs show up in browser history and webserver logs. For this reason, they should never be used for things like login forms and credit card numbers.

However, just POSTing that data doesn't make it secure, either. For that you want SSL. Both GET and POST send data in plaintext over the wire when used over HTTP.

There are other good reasons to POST data, too - like the ability to submit unlimited amounts of data, or hide parameters from casual users.

The downside is that users can't bookmark the results of a query sent via POST. For that, you need GET.

link|improve this answer
feedback

Many people adopt a convention (alluded to by Ross) that GET requests only retrieve data, and do not modify any data on the server, and POST requests are used for all data modification. While one is not more inherently secure than the other, if you do follow this convention, you can apply cross-cutting security logic (e.g. only people with accounts can modify data, so unauthenticated POSTs are rejected).

link|improve this answer
4  
Actually it isn't a "convention" it's part of the HTTP standard. The RFC is very explicit in what to expect from the different methods. – John Nilsson Oct 13 '08 at 20:01
In fact if you allow GET requests to modify state then it's possible a browser that is pre-fetching pages it thinks you might visit will accidentally take actions you didn't want it to. – Jessta Jan 18 '11 at 9:12
feedback

It is harder to alter a POST request (it requires more effort than editing the query string). Edit: In other words, it's only security by obscurity, and barely that.

link|improve this answer
1  
I can alter POST requests just as easy as query string requests, using a few add ons for Firefox. i can even modify cookie data to my heart's content. – stephenbayer Oct 13 '08 at 18:12
Yeah, not that much harder. Might slow the script kiddies down, but they're still out there. – Danimal Oct 13 '08 at 18:14
it won't slow down script kiddies, it is exactly the type of thing script kiddies try all the time. The problem is that they sometimes succeed. – Jacco Oct 13 '08 at 18:16
Uh. Using addons for Firefox = more effort than query string. – eyelidlessness Oct 13 '08 at 18:18
Your answer will give people a false sense that they are being more secure when using a post, when in fact, they are not. Bad answer, bad man. – Chris Marasti-Georg Oct 13 '08 at 18:27
show 1 more comment
feedback

I'm not about to repeat all the other answers, but there's one aspect that I haven't yet seen mentioned - it's the story of disappearing data. I don't know where to find it, but...

Basically it's about a web application that mysteriously every few night did loose all its data and nobody knew why. Inspecting the Logs later revealed that the site was found by google or another arbitrary spider, that happily GET (read: GOT) all the links it found on the site - including the "delete this entry" and "are you sure?" links.

Actually - part of this has been mentioned. This is the story behind "don't change data on GET but only on POST". Crawlers will happily follow GET, never POST. Even robots.txt doesn't help against misbehaving crawlers.

link|improve this answer
feedback
  1. SECURITY as safety of data IN TRANSIT: no difference between POST and GET.

  2. SECURITY as safety of data ON THE COMPUTER: POST is safer (no URL history)

link|improve this answer
feedback

You should also be aware that if your sites contains link to other external sites you dont control using GET will put that data in the refeerer header on the external sites when they press the links on your site. So transfering login data through GET methods is ALWAYS a big issue. Since that might expose login credentials for easy access by just checking the logs or looking in Google analytics (or similar).

link|improve this answer
feedback

GET is visible to anyone (even the one on your shoulder now) and is saved on cache, so is less secure of using post, btw post without some cryptographics routine is not sure, for a bit of security you've to use SSL (https)

link|improve this answer
feedback

This isn't security related but... browsers doesn't cache POST requests.

link|improve this answer
feedback

One reason POST is worse for security is that GET is logged by default, parameters and all data is almost universally logged by your webserver.

POST is the opposite, it's almost universally not logged, leading to very difficult to spot attacker activity.

I don't buy the argument "it's too big", that's no reason to not log anything, at least 1KB, would go a long way for people to identify attackers working away at a weak entry-point until it pop's, then POST does a double dis-service, by enabling any HTTP based back-door to silently pass unlimited amounts of data.

link|improve this answer
feedback

The difference is that GET sends data open and POST hidden (in the http-header).

So get is better for non-secure data, like query strings in Google. Auth-data shall never be send via GET - so use POST here. Of course the whole theme is a little more complicated. If you want to read more, read this article (in German).

link|improve this answer
feedback

Consider this situation: A sloppy API accepts GET requests like:

http://www.example.com/api?apikey=abcdef123456&action=deleteCategory&id=1

In some settings, when you request this URL and if there is an error/warning regarding the request, this whole line gets logged in the log file. Worse yet: if you forget to disable error messages in the production server, this information is just displayed in plain in the browser! Now you've just given your API key away to everyone.

Unfortunately, there are real API's working this way.

I wouldn't like the idea of having some sensitive info in the logs or displaying them in the browser. POST and GET is not the same. Use each where appropriate.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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