-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebnull.py
executable file
·237 lines (187 loc) · 7.98 KB
/
webnull.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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
#!/usr/bin/env python3
import argparse
import datetime
import os
import re
import signal
import sys
import time
import urllib.parse
HOST_MATCHER = r'^([^#\n].*{0}.*)'
COMMENTED_MATCHER = r'^#\s(.*{0})'
class ManagedHostfile:
SHIBBOLETH = '\n## webnull will only write below this line ##\n'
HOSTFILE_PATH = '/etc/hosts' if 'DEV_MODE' not in os.environ else 'dummyhosts'
if 'HOSTFILE_PATH' in os.environ:
HOSTFILE_PATH = os.environ['HOSTFILE_PATH']
def __init__(self):
self.head, self.body = self._head_and_tail()
def _head_and_tail(self):
with open(self.HOSTFILE_PATH, 'r') as hostfile:
hosts = hostfile.read()
parts = hosts.split(self.SHIBBOLETH)
assert(len(parts) < 3)
assert(len(parts) > 0)
preroll = parts[0]
managed = ''
if len(parts) == 2:
managed = parts[1]
return preroll, managed
def current_body(self):
return self.body
def write_body(self, new_body):
with open(self.HOSTFILE_PATH, 'w') as hostfile:
hostfile.write(self.head + self.SHIBBOLETH + new_body)
self.body = new_body
# Returns a list of hostnames modified
def transform_body(self, search_re, replacement_string):
managed = self.current_body()
matched_hostnames = None
if managed == '':
print('Your hostsfile is not managed by webnull, we won\'t change anything')
exit(1)
else:
lines = re.findall(search_re, managed, flags=re.MULTILINE)
matched_hostnames = set(map(lambda line: re.match(r'^[^\t]+\t+([^\t]+)$', line).group(1), lines))
if (len(matched_hostnames) != 0):
new_managed = re.sub(search_re, replacement_string, managed, flags=re.MULTILINE)
self.write_body(new_managed)
return matched_hostnames
def parse_hostname(sitename):
parsed_url = urllib.parse.urlparse(sitename)
hostname = parsed_url.netloc
if hostname == '':
# If you pass in 'facebook.com/foo' urlparse treats it all as the path
match = re.match(r'[^/]+', parsed_url.path)
if match == None:
print('ERROR: Unable to make the provided sitename into a hostname: ' + parsed_url.path)
sys.exit(1)
hostname = match.group(0)
www_matcher = r'^www\.(.+)'
if re.search(www_matcher, hostname) != None:
hostname = re.sub(www_matcher, r'\1', hostname)
return hostname
def nullify_site(sitename):
hostname = parse_hostname(sitename)
hostfile = ManagedHostfile()
managed = hostfile.current_body()
null_matcher = HOST_MATCHER.format(hostname)
neuter_matcher = COMMENTED_MATCHER.format(hostname)
if re.search(null_matcher, managed, flags=re.MULTILINE) != None:
# if it's not commented, we ignore it
print(hostname + ' has already been sent to webnull')
sys.exit(0)
elif re.search(neuter_matcher, managed, flags=re.MULTILINE) != None:
# if it's commented, we replace it
hostfile.transform_body(neuter_matcher, r'\1')
else:
# if it's not there, we write it.
ip5null = '127.0.0.1\t'
ip6null = '::1\t\t'
for null in [ip5null, ip6null]:
for www in ['', 'www.']:
managed += (null + www + hostname + '\n')
hostfile.write_body(managed)
def unblock_site(sitename):
hostname = parse_hostname(sitename)
hostfile = ManagedHostfile()
null_matcher = HOST_MATCHER.format(hostname)
unblocked_hosts = hostfile.transform_body(null_matcher, r'# \1')
if len(unblocked_hosts) == 0:
print('No host matches ' + sitename + '.')
sys.exit(1)
print('\n'.join(unblocked_hosts))
def unblock_all():
hostfile = ManagedHostfile()
all_matcher = r'^(.+)'
unblocked_hosts = hostfile.transform_body(all_matcher, r'# \1')
print('all sites ', end='') # finally a reason to use python 3
def reblock_all():
hostfile = ManagedHostfile()
unblocked_matcher = r'^#\s(.+)'
reblocked_hosts = hostfile.transform_body(unblocked_matcher, r'\1')
def pretty_suffix(d):
return 'th' if 11<=d<=13 else {1:'st',2:'nd',3:'rd'}.get(d%10, 'th')
def pretty_time(time, now=datetime.datetime.now()):
tomorrow = now + datetime.timedelta(days=1)
next_day = now + datetime.timedelta(days=2)
next_week = now + datetime.timedelta(weeks=1)
pretty_fmt = '%-I:%M %p'
pretty_prefix = ''
if tomorrow < time < next_day:
pretty_prefix = 'tomorrow at '
elif time > next_day and time < next_week:
pretty_prefix = '%A at '
elif time > next_week and time.month == now.month and time.year == now.year:
pretty_prefix = '%A the %-d' + pretty_suffix(time.day) + ' at '
elif time > next_week and time.year == now.year:
pretty_prefix = '%B %-d' + pretty_suffix(time.day) + ' at '
elif time > next_week:
pretty_prefix = '%B %-d' + pretty_suffix(time.day) + ' %Y at '
return time.strftime(pretty_prefix + pretty_fmt)
def reblock_timer(duration, cleanup_func):
if 'TEST_DURATION' in os.environ:
duration = float(os.environ['TEST_DURATION'])
def sigint_handler(signal, frame):
cleanup_func()
sys.exit(0)
signals = [signal.SIGINT, signal.SIGHUP]
for sig in signals:
signal.signal(sig, sigint_handler)
end_time = datetime.datetime.now() + datetime.timedelta(minutes=duration)
ptime = pretty_time(end_time)
print('allowed until ' + ptime)
now = time.time()
end_time = now + (duration * 60)
while True:
remaining = end_time - time.time()
if remaining <= 0:
break
if remaining > 1000:
time.sleep(10)
else:
time.sleep(1)
cleanup_func()
def deny_site(args):
nullify_site(args.sitename)
def minutes_to_morning():
now = datetime.datetime.now()
morning = now.replace(hour=6, minute=1, second=0)
if now.hour > 6:
morning = morning + datetime.timedelta(days=1)
return (morning - now).seconds / 60
def allow_site(args):
cleanup_func = None
if args.morning:
args.time = minutes_to_morning()
if args.all:
unblock_all()
cleanup_func = reblock_all
else:
unblock_site(args.sitename)
cleanup_func = lambda: nullify_site(args.sitename)
reblock_timer(args.time, cleanup_func)
def arg_parser():
parser = argparse.ArgumentParser(description='A tool for putting websites into a black hole.')
commands = parser.add_subparsers(title='commands', metavar='COMMAND')
commands.required = True
commands.dest = "commands"
deny = commands.add_parser('deny', description='Add a site to the black hole. It will become unreachable.', help='Add a site to the black hole. It will become unreachable.')
deny.add_argument('sitename', help='The website to be blackholed. A URL will be stripped down correctly.')
deny.set_defaults(func=deny_site)
allow = commands.add_parser('allow', description='Allow access to a blackholed site for a spell.', help='Allow access to a blackholed site for a spell.')
time_or_tomorrow = allow.add_mutually_exclusive_group()
time_or_tomorrow.add_argument('-t', '--time', help='sets the duration to enable a site for. Default is five minutes.', default=5, type=int)
time_or_tomorrow.add_argument('-m', '--morning', help='allow all sites until tomorrow morning at 6am', action='store_true')
all_or_one = allow.add_mutually_exclusive_group(required=True)
all_or_one.add_argument('-a', '--all', action='store_true', help='All blackholed hostnames will be granted access instead of a matching sitename.')
all_or_one.add_argument('sitename', help='All blackholed hostnames that contain this string will be temporarlly granted access.', nargs='?')
allow.set_defaults(func=allow_site)
return parser
def main():
if 'DEV_MODE' in os.environ:
print('Running in Development Mode')
args = arg_parser().parse_args()
args.func(args)
if __name__ == '__main__':
main()