Prevent direct access to a PHP page. - Stack Overflow most recent 30 from stackoverflow.com2009-11-22T23:45:35Zhttp://stackoverflow.com/feeds/question/185483http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/185483/prevent-direct-access-to-a-php-page5Prevent direct access to a PHP page.SyaZ2008-10-09T00:29:47Z2009-09-24T22:38:40Z
<p>How do I prevent my users from accessing directly pages meant for ajax calls only?</p>
<p>Passing a key during ajax call seems like a solution, whereas access without the key will not be processed. But it is also easy to fabricate the key, no? Curse of View Source...</p>
<p>p/s: Using Apache as webserver.</p>
<p>EDIT: To answer why, I have jQuery ui-tabs in my index.php, and inside those tabs are forms with scripts, which won't work if they're accessed directly. Why a user would want to do that, I don't know, I just figure I'd be more user friendly by preventing direct access to forms without validation scripts.</p>
http://stackoverflow.com/questions/185483/prevent-direct-access-to-a-php-page/185508#18550818Answer by jeremy Ruten for Prevent direct access to a PHP page.jeremy Ruten2008-10-09T00:41:47Z2008-10-09T00:41:47Z<p>There is no way of guaranteeing that they're accessing it through AJAX. Both direct access and AJAX access come from the client, so it can easily be faked.</p>
<p>Why do you want to do this anyways?</p>
<p>If it's because the PHP code isn't very secure, make the PHP code more secure. (For example, if your AJAX passes the user id to the PHP file, write code in the PHP file to make sure that is the correct user id.)</p>
http://stackoverflow.com/questions/185483/prevent-direct-access-to-a-php-page/185511#1855115Answer by Draemon for Prevent direct access to a PHP page.Draemon2008-10-09T00:44:29Z2008-10-09T00:44:29Z<p>It sounds like you might be going about things the wrong way. An AJAX call is just like a standard page request, only by convention the response is not intended for display to the user.</p>
<p>It is, however, still a client request, and so you must be happy for the client to be able to see the response. Obfuscating access using a "key" in this way only serves to complicate things.</p>
<p>I'd actually say the "curse" of view source is a small weapon in the fight against security through obscurity.</p>
<p>So what's your reason for wanting to do this?</p>
http://stackoverflow.com/questions/185483/prevent-direct-access-to-a-php-page/185515#1855153Answer by deathy for Prevent direct access to a PHP page.deathy2008-10-09T00:47:01Z2008-10-09T00:47:01Z<p>If the browser will call your page, either by normal request or ajax, then someone can call it manually. There really isn't a well defined difference between normal and ajax requests as far as the server-client communication goes. </p>
<p>Common case is to pass a header to the server that says "this request was done by ajax". If you're using Prototype, it automatically sets the http header "X-Requested-With" to "XMLHttpRequest" and also some other headers including the prototype version. (See more at <a href="http://www.prototypejs.org/api/ajax/options" rel="nofollow">http://www.prototypejs.org/api/ajax/options</a> at "requestHeaders" )</p>
<p>Add: In case you're using another AJAX library you can probably add your own header. This is useful for knowing what type of request it was on the server side, and for avoiding simple cases when an ajax page would be requested in the browser. It does not protect your request from everyone because you can't.</p>
http://stackoverflow.com/questions/185483/prevent-direct-access-to-a-php-page/185517#1855170Answer by Eric Tuttleman for Prevent direct access to a PHP page.Eric Tuttleman2008-10-09T00:47:59Z2008-10-09T04:23:22Z<p>Not sure about this, but possibly check for a referrer header? i think if someone manually typed in your url, it wouldn't have a referrer header, while AJAX calls do (at least in the quickly test I just did on my system).</p>
<p>It's a bad way of checking though. Referrer can be blank for a lot of reasons. Are you trying to stop people from using your web service as a public service or something?</p>
<p>After reading your edit comments, if the forms will be loaded via ajax calls, than you could check window.location to see if the url is your ajax form's url. if it is, go to the right page via document.location</p>
http://stackoverflow.com/questions/185483/prevent-direct-access-to-a-php-page/185562#1855624Answer by Eran Galperin for Prevent direct access to a PHP page.Eran Galperin2008-10-09T01:09:30Z2008-10-09T01:09:30Z<p>As others have said, Ajax request can be emulated be creating the proper headers.
If you want to have a basic check to see if the request is an Ajax request you can use:</p>
<pre><code> if($_SERVER['HTTP_X_REQUESTED_WITH'] == 'XMLHttpRequest') {
//Request identified as ajax request
}
</code></pre>
<p>However you should never base your security on this check. It will eliminate direct accesses to the page if that is what you need.</p>
http://stackoverflow.com/questions/185483/prevent-direct-access-to-a-php-page/1113019#11130190Answer by Simon Said for Prevent direct access to a PHP page.Simon Said2009-07-11T05:26:51Z2009-07-11T05:26:51Z<p><a href="http://nulltest.com/post/107320142/ajax-restricting-direct-access-to-php-functions" rel="nofollow">HTTP_X_REQUESTED_WITH is not secure.. try cookies.</a></p>
http://stackoverflow.com/questions/185483/prevent-direct-access-to-a-php-page/1280607#12806070Answer by Kelly for Prevent direct access to a PHP page.Kelly2009-08-14T23:07:24Z2009-08-14T23:07:24Z<p>This definitely isn't useful for securing something.. but I think this could be of use if you wanted to have say a php page that generated a whole page if the page was not requested by ajax but only generate the part that you needed returned when ajax was used.. This would allow you to make your site non ajax friendly so if say they click on a link and it's supposed to load a box of comments but they don't have ajax it still sends them to the page that is then generated as a whole page displaying the comments.</p>
http://stackoverflow.com/questions/185483/prevent-direct-access-to-a-php-page/1416691#14166910Answer by AlBeebe for Prevent direct access to a PHP page.AlBeebe2009-09-13T02:35:16Z2009-09-13T02:35:16Z<p>Cookies can be faked as well</p>
http://stackoverflow.com/questions/185483/prevent-direct-access-to-a-php-page/1474549#14745490Answer by Tchalvak for Prevent direct access to a PHP page.Tchalvak2009-09-24T22:38:40Z2009-09-24T22:38:40Z<p>COOKIES are not secure... try the $_SESSION. That's pretty much one of the few things that you can actually rely on cross-page that can't be spoofed. Because, of course, it essentially never leaves your control.</p>