Advertisement
pankur

DoS

Jun 30th, 2014
251
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. 1
  2. <?php
  3. if(empty($_GET['file']))
  4. die('You didn't enter the file parameter.');
  5.  
  6. $file = $_GET['file'];
  7. if(!file_exists($file))
  8. die('The chosen file does not exist.');
  9. include($file);
  10. ?>
  11. 1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement