Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How can I prevent to accept the custom requests (any type like GET, POST, PUT, DELETE) outside the browser even from address bar of a browser?

share|improve this question
2  
What do you mean by custom request? How can I send a POST, PUT or DELETE from the address bar? What have you tried? – CodeCaster Oct 30 '12 at 11:15

closed as not a real question by CodeCaster, M42, Chris Latta, bmargulies, BNL Oct 30 '12 at 13:59

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

5 Answers

There's no surefire way of doing this because bots can easily fake the user agents of popular browsers. Example, with cURL in PHP, I can do the following:

curl_setopt($ch, 'Mozilla/5.0 (Windows; U; MSIE 7.0; Windows NT 6.0; en-US');
share|improve this answer

There is no way to tell if a request came from a browser or from some other kind of client.

Whatever method you use to determine if a request is authorized has to use some other means to determine that (e.g. a username and password to authenticate a user, and then a database that defines ACLs for users for authorization).

share|improve this answer

You can't prevent custom requests, but you can structure your code to ignore unexpected or nonsensical requests. In doing so, you often make your code more readable, too.

share|improve this answer

How can I prevent to accept the custom requests (any type like GET, POST, PUT, DELETE) outside the browser even from address bar of a browser?

The question isn't clear. Normally you only care for those methods that you do accept. All others will then be silently ignored by your code or framework. Illegal methods will often be rejected even before, by the proxy, multiplexer, or web server, and won't even be passed to your code; you'll never even know they have been attempted (except maybe from the appropriate logs).

When designing a "catch-all" method, you should adopt the same approach, i.e. do not make assumptions on what you'll be getting, but only handle those requests that you know how to handle. Unknown requests should get just an error message.

The above approach is called also "white list": you reject everything except some select few items that you know. The "black list" approach in which you accept everything unless it's a Known Bad item is flawed, because it can only reject the bad that you know, and you run the risk of overlooking something.

So:

// BAD
switch($method)
{
    case 'PUT': die("Put is not allowed!");
    case 'DELETE': die("Put is not allowed!");
    default:
        $cmd = $_GET['cmd'];
        ...
}

// GOOD
switch($method)
{
    case 'GET':
        $cmd = $_GET['cmd']
        ...
        break;

    default: die('This method is not allowed!');
}
share|improve this answer

I would suggest you to filter your requests by checking the HTTP_REFERER to see from what host des the request coming from and as @deed02392 suggested to make your code ignore unexpected requests.

share|improve this answer

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