Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #Mit diesem Script ist es unter Linux/Firefox möglich, die Umfrage der SZ-Online unter zu manipulieren.
- #Wird die Seite im Inkognito-Modus aufgerufen, stimmt das Script automatisiert für Option 3 ab, aktualisiert die Seite und kann
- # - da im Inkognito-Modus der nichts im Cache gespeichert wird - erneut abstimmen.
- #!/bin/bash
- count=1
- while true; do
- xdotool mousemove 100 210
- xdotool click 1
- sleep 1
- xdotool mousemove 580 290
- xdotool click 1
- xdotool mousemove 759 70
- xdotool click 1
- sleep $(shuf -i2-3 -n1)
- count=$(( $count + 1 ))
- if [ $count == 30000 ]; then exit 0; fi
- done
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement