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.

link|improve this question

1  
My included PHP files tend to be nothing other than functions, in which case calling them will do nothing anyway. – cletus Jan 3 '09 at 23:20
3  
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
feedback

19 Answers

up vote 25 down vote accepted

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

link|improve this answer
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
7  
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
feedback

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);
?>
link|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
1  
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
not to be overly critical, but you have a syntax mistake: <?php if(!defined('MyConst')){die('Direct access not premitted');} .. missing a ) after MyConst – sdolgy Oct 6 '11 at 20:20
show 1 more comment
feedback

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.

link|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
1  
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
1  
At some hosts (including my current one), you can point your domain to whichever folder you wish. – Dinah Jun 23 '09 at 15:43
feedback

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.

link|improve this answer
1  
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
feedback

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.

link|improve this answer
feedback

An alternative (or compliment) 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>
link|improve this answer
+1 for syntax hints for us lazy types! – Kyle Oct 17 '11 at 18:23
feedback

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");
link|improve this answer
This is dangerous if register_globals is on. – jmucchiello Jan 3 '09 at 18:51
5  
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
feedback

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.

link|improve this answer
feedback

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.

link|improve this answer
feedback
<?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
?>
link|improve this answer
feedback

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.

link|improve this answer
feedback

Do something like:

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

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.

link|improve this answer
feedback

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("...");
}
link|improve this answer
feedback

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.

link|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
feedback

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.

link|improve this answer
feedback

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

link|improve this answer
feedback

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.

link|improve this answer
feedback

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.

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

Your Answer

 
or
required, but never shown

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