scripts7com

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

Jan 19th, 2016
174
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.37 KB | None | 0 0
  1.  <?php
  2. #// Bypass read files [R-2] 2016
  3. #// scripts7.com
  4. #// twitter.com/scripts7com
  5. #  r-2
  6. #
  7. #// Change dir("/scripts7.com/"); to any path to see the files
  8. #// Ex:
  9. #//$r7 = dir("/home/scripts7.com/public_html/admin/");
  10.  
  11. $r7 = dir("/scripts7.com/");
  12. while (false !== ($s7 = $r7->read())) : echo "<span style='color:#336633;'>".$s7."</span><br />\n";
  13. endwhile;
  14. ?>
Add Comment
Please, Sign In to add comment