Advertisement
mbirth

voteme.sh

Jan 29th, 2022 (edited)
550
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.07 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3. # Benötigte Tools: bash, curl
  4. #
  5. # 1. curl https://pastebin.com/raw/hzZ8n3AR | tr -d '\r' > voteme.sh
  6. # 2. chmod a+x voteme.sh
  7. # 3. ./voteme.sh
  8.  
  9. # Auf iOS:
  10. #
  11. # 1. iSH installieren: https://ish.app
  12. # 2. Nach Start von iSH folgenden Befehl ausführen: apk update
  13. # 3. Dann: apk add curl bash
  14. # 4. Wie oben vorgehen.
  15.  
  16. while [ 1 -eq 1 ]; do
  17.     curl 'https://api.tools.pinpoll.com/v2/vote' \
  18. -X 'POST' \
  19. -H 'Content-Type: application/json;charset=utf-8' \
  20. -H 'Pragma: no-cache' \
  21. -H 'Accept: application/json, text/plain, */*' \
  22. -H 'Accept-Language: en-GB,en;q=0.9' \
  23. -H 'Accept-Encoding: gzip, deflate, br' \
  24. -H 'Cache-Control: no-cache' \
  25. -H 'Host: api.tools.pinpoll.com' \
  26. -H 'Origin: https://tools.pinpoll.com' \
  27. -H 'User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.3 Safari/605.1.15' \
  28. -H 'Referer: https://tools.pinpoll.com/' \
  29. --data-binary '{"question_id":146168,"require_user_opt_in":false,"answer_id":574746,"consent":true}'
  30.     #sleep $((1 + $RANDOM % 3))
  31.     sleep 0.8
  32.     echo ""
  33. done
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement