Jump to content

[SOLVED] Deny Direct Access to PHP file


Petsmacker

Recommended Posts

Hey there, I need to make it impossible for anyone to load up a PHP page on my site directly in their browser.

It should only be allowed to be 'included' by PHP using the include() function.

It also needs to be picked at by a few AJAX scripts.

 

Is there a secure way of doing this without htaccess scripts? Such as CHMOD?

 

Any help would be appreciated.

Link to comment
https://forums.phpfreaks.com/topic/89173-solved-deny-direct-access-to-php-file/
Share on other sites

it would be impossible to do a still accept AJAX there is no way to tell between AJAX commands and general browser viewing you can check POST vars sent by AJAX but anyone can create those POST vars to view your page

 

Scott.

This is easy.

Do this:

includefile.php:

if ($include != 1)
{
exit;
}

//some code that you want to process if the file is included

 

file.php

$include = 1;
include("includefile.php");

Thats it.

You won't be able to run the includefile.php by accessing it directly.

 

You can easily adapt this to check for $_GET values in a URL instead of a variable.

An easier method is....

 

<?php

  if ($_SERVER['PHP_SELF' == '/' . basename(__FILE__)) {
    exit();
  }

?>

Are you sure? I heard that $_SERVER['PHP_SELF'] can be unreliable.

 

Probably a good point. I don't keep many php files in my web root so don't usually need to worry.

An easier method is....

 

<?php

  if ($_SERVER['PHP_SELF' == '/' . basename(__FILE__)) {
    exit();
  }

?>

Are you sure? I heard that $_SERVER['PHP_SELF'] can be unreliable.

 

Probably a good point. I don't keep many php files in my web root so don't usually need to worry.

 

What is so un-reliable about that? I use PHP_SELF all the time.

 

 

Or you could do:

 

 

Include("include.php?38383");

 

Then in the include

 

If isset($_GET['38383']){

do script

}else{

die;

}

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.