Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a php file which I will be using as exclusively as an include. Therefor I would like to throw an error instead of executing it when it's accessed directly by typing in the URL instead of being included.

Basically I need to do a check as follows in the php file:

if ( $REQUEST_URL == $URL_OF_CURRENT_PAGE ) die ("Direct access not premitted");

Is there an easy way to do this.

share|improve this question
4  
instead of the die() you should test 'header("HTTP/1.1 404 File Not Found", 404); exit;'. This will (at least on apache) make the server return the normal 404 page. – gnud Jan 4 '09 at 17:08

21 Answers

up vote 42 down vote accepted

The easiest way is to put your includes in a directory and deny access to that directory in your .htaccess file.

share|improve this answer
1  
Thanks, since I do have full control over the server where I run this app, this is the answer I went with. – Alterlife Jan 3 '09 at 18:23
11  
if you have full control of the server is better if you put the config into a directory directive into the virtual host config file. Apache read it only once on startup, .htaccess is read on every access and slow down the server – Eineki Jan 3 '09 at 19:43
11  
It'd be nice to have an example .htaccess file as part of this answer. – Graham Lea Jun 5 '12 at 11:47
<Files ~ "\.inc$"> Order Allow,Deny Deny from All </Files> – Dracorat Sep 27 '12 at 16:53
3  
+40 for an answer without an example? – Mr. Alien Apr 7 at 8:56

Add this to the page that you want to only be included

<?php
if(!defined('MyConst')){die('Direct access not premitted');}
?>

then on the pages that include it add

<?php
define('MyConst', TRUE);
?>
share|improve this answer
1  
I really need to learn to type quicker. This is the same way I would suggest, as its more secure than a method that uses a variable to check. Since with some PHP setups it may be possible to override the variable. – Mark Davidson Jan 3 '09 at 18:17
2  
This is how a few 'mainstream' applications handle it. I know Joomla does it this way and I think Wiki, Wordpress, and others as well. – UnkwnTech Jan 3 '09 at 18:20
Maybe the message is too helpful for a hacker (no real user would find these pages), you can simply send a redirect header and stop the php processing. – bandi Jan 4 '09 at 10:05
4  
Just send a 404 header and exit -- the error page will look identical to normal 404 pages (at least on Apache). – gnud Jan 4 '09 at 13:24
3  
Now 3 years to notice the typo premitted (; – Frank Presencia Fandos Aug 30 '12 at 21:38
show 3 more comments

I have a file that I need to act differently when it's included vs when it's accessed directly (mainly a print() vs return()) Here's some modified code

if(count(get_included_files()) ==1) exit("Direct access not permitted.");

The file being accessed is always an included file, hince the == 1.

share|improve this answer
3  
That's actually a hell of an idea, checking the included file count. I wonder which is better: using defines, or using this method? This seems more self-contained. – Akoi Meexx Jun 8 '11 at 16:40
First time I've ever seen anyone come up with this. I don't know why though, because it seems as self contained as can be, and it's directly measuring what you actually want to know (if is included or not) rather than measuring something assumed to be associated (like a certain constant or a certain location banned by .htaccess). Beautiful. – Jimbo Jonny Aug 8 '12 at 12:34
This one is really cool because using .htaccess to block all .php files may not be possible all the time as there can be some files in the same directory those need to be called directly or even by javascripts. Thanks for this great idea! – Anuj Sep 18 '12 at 20:55

The best way to prevent direct access to files is to place them outside of the web-server document root (usually, one level above). You can still include them, but there is no possibility of someone accessing them through an http request.

I usually go all the way, and place all of my PHP files outside of the document root aside from the bootstrap file - a lone index.php in the document root that starts routing the entire website/application.

share|improve this answer
This is a great solution if you are able to do so. I only recently had to start working with shared webhosts and discovered one of many annoyances to be that everything must be inside the docroot. – Beau Simensen Jan 3 '09 at 19:29
2  
In every hosting provider I worked with I always had access to (exactly) one level above the document root. – Eran Galperin Jan 3 '09 at 21:21
2  
At some hosts (including my current one), you can point your domain to whichever folder you wish. – Dinah Jun 23 '09 at 15:43

An alternative (or complement) to Chuck's solution would be to deny access to files matching a specific pattern by putting something like this in your .htaccess file

<FilesMatch "\.(inc)$">
    Order deny,allow
    Deny from all
</FilesMatch>
share|improve this answer
1  
+1 for syntax hints for us lazy types! – Kyle Oct 17 '11 at 18:23

Actually my advice is to do all of these best practices.

  • Put the documents outside the webroot OR in a directory denied access by the webserver AND
  • Use a define in your visible documents that the hidden documents check for:
      if (!defined(INCL_FILE_FOO)) {
          header('HTTP/1.0 403 Forbidden');
          exit;
      }

This way if the files become misplaced somehow (an errant ftp operation) they are still protected.

share|improve this answer

The easiest way is to set some variable in the file that calls include, such as

$including = true;

Then in the file that's being included, check for the variable

if (!$including) exit("direct access not permitted");
share|improve this answer
1  
This is dangerous if register_globals is on. – jmucchiello Jan 3 '09 at 18:51
9  
PHP is dangerous if register_globals is on. – David Precious Jan 3 '09 at 18:56
@bigpresh super dangerous to be clear. – UnkwnTech Jan 4 '09 at 20:55

PHP do not have good reliable solution for that so instead using different function wich eventually have flaws I'm using following and it serves basic need.

Your document what includes you add line.

$include_allowed = true;

And Included document what you want to protect.

if (!isset($include_allowed)){die("<meta http-equiv='refresh' content='0;url=\"http://yourdomain/error-document/restricted-access'>");}

if you looking for security then "best" is to store your include files outside of web root like recommended other posts here.

share|improve this answer
Never use a variable for this. Use a define. There are too many backdoors in PHP where variables can be set before the script runs. Put a define in all of your external facing scripts and check to see if that define is set in your internal scripts. – jmucchiello Dec 12 '12 at 19:41

Besides the .htaccess way, I have seen a useful pattern in various frameworks, for example in ruby on rails. They have a separate pub/ directory in the application root directory and the library directories are living in directories at the same level as pub/. Something like this (not ideal, but you get the idea):

app/
 |
 +--pub/
 |
 +--lib/
 |
 +--conf/
 |
 +--models/
 |
 +--views/
 |
 +--controllers/

You set up your web server to use pub/ as document root. This offers better protection to your scripts: while they can reach out from the document root to load necessary components it is impossible to access the components from the internet. Another benefit besides security is that everything is in one place.

This setup is better than just creating checks in every single included file because "access not permitted" message is a clue to attackers, and it is better than .htaccess configuration because it is not white-list based: if you screw up the file extensions it will not be visible in the lib/, conf/ etc. directories.

share|improve this answer

I had this problem once, solved with:

if (strpos($_SERVER['REQUEST_URI'], basename(__FILE__)) !== false) ...

but the ideal solution is to place the file outside of the web-server document root, as mentioned in another anwser.

share|improve this answer
<?php
if (eregi("YOUR_INCLUDED_PHP_FILE_NAME", $_SERVER['PHP_SELF'])) { 
 die("<h4>You don't have right permission to access this file directly.</h4>");
}
?>

place the code above in the top of your included php file.

ex:

<?php
if (eregi("some_functions.php", $_SERVER['PHP_SELF'])) {
    die("<h4>You don't have right permission to access this file directly.</h4>");
}

    // do something
?>
share|improve this answer

You'd better build application with one entrance point, i.e. all files should be reached from index.php

Place this in index.php

define(A,true);

This check should run in each linked file (via require or include)

defined('A') or die(header('HTTP/1.0 403 Forbidden'));
share|improve this answer

Do something like:

<?php
if ($_SERVER['SCRIPT_FILENAME'] == '<path to php include file>') {
    header('HTTP/1.0 403 Forbidden');
    exit('Forbidden');
}
?>
share|improve this answer
This will not prevent it from being loaded in the browser. – UnkwnTech Jan 3 '09 at 18:21

What Joomla! does is defining a Constant in a root file and checking if the same is defined in the included files.

`defined('_JEXEC') or die('Restricted access');`

or else

one can keep all files outside the reach of an http request by placing them outside the webroot directory as most frameworks like CodeIgniter recommend.

or even by placing an .htaccess file within the include folder and writing rules, you can prevent direct access.

share|improve this answer

The following code is used in the Flatnux CMS (http://flatnux.altervista.org):

if ( strpos(strtolower($_SERVER['SCRIPT_NAME']),strtolower(basename(__FILE__))) )
{
    header("Location: ../../index.php");
    die("...");
}
share|improve this answer

I found this php-only and invariable solution which works both with http and cli :

Define a function :

function forbidDirectAccess($file) {
    $self = getcwd()."/".trim($_SERVER["PHP_SELF"], "/");
    (substr_compare($file, $self, -strlen($self)) != 0) or die('Restricted access');
}

Call the function in the file you want to prevent direct access to :

forbidDirectAccess(__FILE__);

Most of the solutions given above to this question do not work in Cli mode.

share|improve this answer
where it is supposed to type the URL in CLI mode? – Your Common Sense Apr 6 '11 at 13:48
It is just to prevent the launch of php script/inlude in cli mode. Can be useful in a project with multiple developers. – Ka. Apr 6 '11 at 14:51

You can use the following method below although, it does have a flaw, because it can be faked, except if you can add another line of code to make sure the request comes only from your server either by using Javascript. You can place this code in the Body section of your HTML code, so the error shows there.

<?
if(!isset($_SERVER['HTTP_REQUEST'])) { include ('error_file.php'); }
else { ?>

Place your other HTML code here

<? } ?>

End it like this, so the output of the error will always show within the body section, if that's how you want it to be.

share|improve this answer

debug_backtrace() || die ("Direct access not premitted");

share|improve this answer

i suggest that don't use of $_SERVER for security reasons .
You can use a variable like $root=true; in first file that included another one.
and use isset($root) in begin of second file that be included.

share|improve this answer

What you can also do is password protect the directory and keep all your php scripts in there, ofcourse except the index.php file, as at the time of include password won't be required as it will be required only for http access. what it will do is also provide you the option to access your scripts in case you want it as you will have password to access that directory. you will need to setup .htaccess file for the directory and a .htpasswd file to authenticate the user.

well, you can also use any of the solutions provided above in case you feel you don't need to access those files normally because you can always access them through cPanel etc.

Hope this helps

share|improve this answer

You can also try renaming the document you don't want people to be able to access. You could rename it to 47d8498d3w.php for instance. Just make something up that people most likely won't type as a http-request. If you include the file with SSI or PHP, the user won't be able to see the name of the document anyway.

share|improve this answer
You should never use that method to secure your files from unwanted executions. – lexalizer Apr 23 '12 at 19:36

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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