I'm all in a security funk right now so I'm going through making everything as secure as possible. I got a login going and I'm referencing this:

http://www.addedbytes.com/writing-secure-php/writing-secure-php-1/

The first example is that of a login and if you say "?authorization=1" you get in. But if I wrap my code around a if($_POST) then the user MUST make a post. Can a user FAKE a $_POST? How do I go about faking a $_POST?

link|improve this question

3  
Umm do you know what $_POST is? – Jakub Jul 28 '11 at 19:03
The correct way to check the HTTP method would be $_SERVER['REQUEST_METHOD'], see php.net/manual/en/reserved.variables.server.php . Basically, all of those variables can be influenced by the client and cannot be trusted completely. – giraff Jul 28 '11 at 19:25
feedback

8 Answers

up vote 8 down vote accepted

A user can simply create a file on their local machine with:

<form action="http://yoursite.com/login.php" method="post">
<input type="text" name="username"  value="hahaha faked it!" />
<input type="text" name="password" value="hee hee you can't tell this is fake" />
<input type="submit">
</form>

and boom, "fake" post. In other words, you have to assume that anything and everything the user sends is potentially fake.

link|improve this answer
ahh, yeah I just used inspect element to go in and change the action and added the "?authorization=1" - wow that was stupid easy to break. Thanks! – Howdy_McGee Jul 28 '11 at 19:02
1  
+1 POST is just as easy to fake as GET. You should also explain a bit CSRF tokens. – Gabi Purcaru Jul 28 '11 at 19:03
1  
DOM Inspectors are double-edged swords. They are great for both web development and fooling security measures. – Evan Mulawski Jul 28 '11 at 19:05
Disagree with @Gabi: GET Request may be a little bit simpler, not only for the script kiddies, but for XSS holes as well (e.g. <img src="delete_my_profile.php" />) (CSRF Tokes are good, though, of course.) – giraff Jul 28 '11 at 19:16
feedback

Yes they can.

With cURL and other HTTP clients, anybody can fake this.

Watch this

<form method="post" action="http://yoursite/index.php">
<input type="text" name="authorization" value="1" /><input type="submit">
</form>

Then user saves this as .html in his computer, opens in his browser. Then posts the form.

link|improve this answer
feedback

Two ways, make a curl request, or actually set the post variable on top of the php. E.g:

$_POST['var'] = "WHAT I WANT";
link|improve this answer
feedback

You can use cURL in PHP to POST like so:

$ch = curl_init();
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_TIMEOUT, 5);
curl_setopt($ch,CURLOPT_POST, 1); 
curl_exec($ch);
curl_close($ch);
link|improve this answer
feedback

The $_POST superglobal variable is populated from the query string that's contained in the body of an HTTP POST request. Since the user/client is the one who initiates the HTTP (POST & others) requests to the HTTP server, then yes - the client can "fake" a $_POST array's values & keys. Refer:

link|improve this answer
feedback

...yes a user can "fake" a post (whatever that means). Try tamper data on for size.

link|improve this answer
feedback

I think you are mistaking $_GET with $_POST because if you are looking for $_POST vars and this is working, ?authorization=1, something is messed up.

Also, $_POST's can be faked, yes.

link|improve this answer
feedback

Check the referrer and see where the post comes from. That should help you rule out people with local post files.

link|improve this answer
1  
The referer can be faked as well (via curl). But of course, makes it a little bit harder. – giraff Jul 28 '11 at 19:17
True. Forgot that when writing.curse you curl... – Nils Munch Jul 28 '11 at 19:19
feedback

Your Answer

 
or
required, but never shown

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