Advertisement
Guest User

scam site garbage feeder

a guest
Jul 17th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.67 KB | None | 0 0
  1. #!/bin/bash
  2. # this is a bash script that feeds garbage data for the scam site godkingdarius.ga
  3. urandomDump1=`head -c 48 /dev/urandom`
  4. urandomDump2=`head -c 48 /dev/urandom`
  5. sha512dump=`head -c 64 /dev/urandom | sha512sum | cut -d\  -f1`
  6.  
  7. echo "Garbage username payload: [$urandomDump1]"
  8. echo "SHA512 payload: [$sha512dump]"
  9. echo "Garbage password payload: [$urandomDump2]"
  10. echo "Begin sending of fake data to scam site godkingdarius.ga"
  11.  
  12. curl -s -X POST -d "username=$urandomDump1&password2=$sha512dump&password=$urandomDump2&submit_button=Login+Now" -H "Content-Type:application/x-www-form-urlencoded" http://demo.toilagamethu.com/event/login.php > /dev/null
  13.  
  14. echo "Done"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement