-
Notifications
You must be signed in to change notification settings - Fork 0
/
hack_the_poll.html
63 lines (37 loc) · 1.71 KB
/
hack_the_poll.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
//website :
// https://fast-poll.com/poll/08c7e1bf
// https://fast-poll.com/poll/results/08c7e1bf
//paste it in a console of inspect element
//more than 100 votes from a same ip addr is not possible
// delete the cokkie and vote again
$(".gdpr-cookie-message-wrapper").hide();
$("#poll-form").on("submit", function (e) {
e.preventDefault();
var dataString = $(this).serialize();
$.ajax({
type: "POST",
url: "https://fast-poll.com/poll/08c7e1bf",
data: dataString,
success: function () {
// Display message back to the user here
console.log(count+ " vote submitted");
}
});
});
$("#item_one_08d5e84e-dbc7-11eb-b0a2-020055").trigger("click");
var count=0;
let repeat = setTimeout(
function change() {
if (count<30) {
$("[title='Submit your vote']").trigger("click");
count++;
repeat = setTimeout(change , 1500);
}
}
,1500);
//////////////////////////////////////////////////////////////
$('[src="assets/img/hero-slider/hilight21.jpg"]').attr("src","https://www.mediafire.com/convkey/1495/idy7spl8439m6er7g.jpg");
$('[src="assets/img/hero-slider/t2.jpg"]').attr("src","https://www.mediafire.com/convkey/f881/2nprip9416y8462zg.jpg");
$('[src="assets/img/hero-slider/t4.jpg"]').attr("src","https://www.mediafire.com/convkey/01aa/lh3oiu9cfjv7lmp7g.jpg");
$('[src="assets/img/hero-slider/t5.jpeg"]').attr("src","https://www.mediafire.com/convkey/e11b/tqyinpgpnpg89fj7g.jpg");
$('[src="assets/img/hero-slider/t8.jpg"]').attr("src","https://www.mediafire.com/convkey/7274/ugzpejs0buruzcx7g.jpg");