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?
|
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.
|
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:
|
|||
|
|
|
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). |
|||
|
|
|
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. |
|||
|
|
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:
|
|||
|
|
|
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. |
|||
|
|
