Jump to content

Disallowing direct url


Prodigal Son

Recommended Posts

I suggest adding something that looks at the $_SERVER['HTTP_REFERER'] variable. If that's not the page that has the iframe, kill the app. Otherwise let it run. Like this:

 

<?php
if ($_SERVER['HTTP_REFERER']!="pagewithiframe.php") die("This page cannot be loaded directly");
?>

I suggest adding something that looks at the $_SERVER['HTTP_REFERER'] variable. If that's not the page that has the iframe, kill the app. Otherwise let it run. Like this:

 

<?php
if ($_SERVER['HTTP_REFERER']!="pagewithiframe.php") die("This page cannot be loaded directly");
?>

Hmm, my pages are dynamic, so never know what the url can be. Should I do a strpos to check if my domain is in the HTTP_REFERER? Or maybe a better way?

you could set a $_SESSION variable for the page.  a simple true or false variable that is defined on the parent page..containing the iframe.

 

and then on the iframe you'll probably have to check, destroy, etc the session and what not to keep someone from loading that php file later on.

 

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.