Advertisement
scripts7com

Bypass read files [R-1] 2016 - scripts7.com

Jan 19th, 2016
155
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.50 KB | None | 0 0
  1.  <?php
  2. #// Bypass read files [R-1] 2016
  3. #// scripts7.com
  4. #// twitter.com/scripts7com
  5. #  r-1
  6.  
  7. function scripts7($xd=array('scripts7.com'))
  8. {
  9.    
  10. #// Change opendir("/scripts7.com/"); to any path to see the files
  11. #// Ex:
  12. #//$xd = opendir("/home/scripts7.com/public_html/admin/");
  13. $xd = opendir("/scripts7.com/");
  14. while (($f = readdir($xd)) !== false) echo "<span style='color:#0000FF;'>FileName : </span> " . $f . "<br />";
  15. closedir($xd);
  16. }
  17. echo 'scripts7.com <br />';
  18. echo scripts7();
  19.  
  20. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement