-
Notifications
You must be signed in to change notification settings - Fork 7
/
put-me-on-a-watchlist.py
123 lines (116 loc) Β· 3.33 KB
/
put-me-on-a-watchlist.py
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
#!/usr/bin/python
# -*- coding: utf-8 -*-
# browser history noise
import sys, requests
number_of_requests = 0
noise = [
'how to buy drugs online',
'how to buy drugs via tor',
'how to kill jews',
'using tor to buy drugs',
'how to hire an assassin',
'how to murder fbi',
'how to kill a law enforcement officer',
'dark net assassin',
'how to hire contract killer',
'how to buy heroin online',
'how to self print gun for murder',
'how to make chemical bomb',
'cp',
'animal pornography',
'how to cover up murder',
'buy guns on tor',
'best darknet market',
'exchanging bitcoins for drugs',
'exchanging bitcoins for murder',
'how to kill a child',
'how to beat a child to death',
'how to buy m4a1 darknet',
'how to load m4a1 for shooting people',
'darknet child pornography',
'darknet tor',
'darknet market',
'murding a law enforcement officer',
'how to kill an fbi agent',
'how to steal weapons from fbi',
'how to make a dirty bomb',
'how to join nazis',
'stormfront how to join',
'using darknet for murder',
'using darknet for drugs',
'how to inject baby with heroin',
'murder an nsa offical',
'how to kill the president',
'how to kill a government official',
'how to kill hillary clinton',
'how to bomb congress',
'how to bomb a goovermnet building',
'how to make napalm',
'anarchist cookbook',
'buy torture instruments online',
'hire murder online',
'hire murder tor',
'how to hire contract killer tor',
'how to make a bomb',
'am i a psychopath',
'how to become a terrorist',
'am i being watched',
'hydrogen bomb how',
'lol nsa',
'zoophilia forum',
'am i a nazi',
'why are jews bad',
'i want to kill everyone is this normal',
'pedo porn',
'loli porn',
'how do i doxx someone',
'how do i hack the mainframe',
'how to hack into the government',
'how do i stage a coup',
'buy guns where',
'how to fire rifle',
'shooting guns how',
'how to create atom bomb',
'staging a terrorist attack for dummies',
'buy cocaine online',
'buy heroin online',
'buy illegal drugs online',
'silk road 2.0',
'silk road',
'the dark web',
'criminal stuff',
'how to pick a lock',
'how to dispose of a body',
'uzi purchase online',
'how to make a grenade',
'buy shotgun with cash',
'killing people bad?',
]
noise_length = len(noise)
while True:
# Select query
query = noise[number_of_requests % noise_length]
# Clear screen
print(chr(27) + "[2J")
# Set up message
number_of_requests += 1
noun = 'requests' if number_of_requests > 1 else 'request'
# Display message
print("π©βπ» put-me-on-a-watchlist.py")
print("~~~")
print("We're gonna do some dubious Google searches for you. Sit tight.")
print("Feel free to run this process in the background.\n")
print(
"Made %d %s. Press CTRL + C to stop" %
(number_of_requests, noun)
)
print("\tSearched for \"%s\"" % query)
# Make the request
try:
requests.get("http://google.com/?q=%s" % query)
except (KeyboardInterrupt, SystemExit):
print(
"\n\t%d %s made in total. Bye!" %
(number_of_requests, noun)
)
sys.exit()