Skip to content

Instantly share code, notes, and snippets.

@kopiro
Created August 7, 2011 16:37
Show Gist options
  • Save kopiro/1130511 to your computer and use it in GitHub Desktop.
Save kopiro/1130511 to your computer and use it in GitHub Desktop.
Protect PHP download modules
<?php
$u = $_GET["file"];
$u = realpath($u);
$safedir = realpath("./music/");
if (substr($u, 0, strlen($safedir))!=$safedir) die("Error");
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment