filters-maker/crawler.py

116 lines
3.8 KiB
Python
Raw Normal View History

2021-07-28 14:03:52 +00:00
import os
import requests
import re
2021-08-02 15:25:59 +00:00
def clear_old_files(incoming):
2021-08-02 11:50:11 +00:00
try:
2021-08-02 14:00:05 +00:00
os.remove(incoming)
2021-08-02 11:50:11 +00:00
except OSError:
pass
2021-08-02 13:47:46 +00:00
2021-08-02 15:25:59 +00:00
def download_filters(url,incoming):
2021-07-28 14:03:52 +00:00
print("downloading: ",url)
get = requests.get(url)
if get.status_code == requests.codes.ok:
2021-08-02 14:00:05 +00:00
with open(incoming, 'ab') as f:
2021-07-28 14:03:52 +00:00
for data in get:
f.write(data)
return url
def filtering(filters_welcome):
print("filtering . . .")
with open(filters_welcome, 'r') as f:
lines = f.read().splitlines()
with open(filters_welcome, 'w') as f:
for line in lines:
2021-08-03 11:56:08 +00:00
if not line.startswith(('#',';','@','$',' NS',' NS','@@||','!')) and line.strip():
f.write('\n'.join([line + '\n']))
2021-07-28 14:03:52 +00:00
print("++ successful!")
f.close()
def filteringcon(filters_regex_one):
print("filtering . . .")
with open(filters_regex_one) as f:
file = f.read().split('\n')
for i in range(len(file)):
file[i] = re.sub('\s\s+#.*', '', file[i])
2021-07-28 14:03:52 +00:00
file[i] = re.sub(' CNAME .$', '', file[i])
file[i] = re.sub(' CNAME . $', '', file[i])
with open(filters_regex_one, 'w') as f1:
f1.writelines(["%s\n" % item for item in file])
print("++ successful!")
f.close()
2021-08-08 04:24:35 +00:00
a = ['||','^','|','0.0.0.0 ','0.0.0.0','::1 ','127.0.0.1 ','0','::','::1','127.0.0.1','0','::']
2021-08-02 08:15:42 +00:00
lst = []
with open(filters_regex_one, 'r') as f:
for line in f:
for word in a:
if word in line and not line.startswith('#') and line.startswith((tuple(a))):
2021-08-02 08:15:42 +00:00
line = line.replace(word,'')
else:
line = line.replace(line, line)
2021-08-02 08:15:42 +00:00
lst.append(line)
f.close()
with open(filters_regex_one, 'w') as f:
for line in lst:
f.write(line)
f.close()
2021-08-02 08:15:42 +00:00
2021-08-08 04:24:35 +00:00
remove_words = ['localhost','localhost.localdomain','local','broadcasthost','loopback','ip6-localnet','ip6-mcastprefix','ip6-allnodes','ip6-allrouters','ip6-allhosts','ip6-loopback']
2021-08-08 04:24:35 +00:00
with open(filters_regex_one, 'r') as f:
lines = f.read().splitlines()
with open(filters_regex_one, 'w') as f:
for line in lines:
if not line.endswith((tuple(remove_words))):
2021-08-08 04:24:35 +00:00
f.write('\n'.join([line + '\n']))
2021-08-08 04:24:35 +00:00
with open(filters_regex_one) as f:
file = f.read().split('\n')
for i in range(len(file)):
file[i] = re.sub('\s\s+', ' ', file[i])
file[i] = re.sub('#..*', '', file[i])
with open(filters_regex_one, 'w') as f1:
f1.writelines(["%s\n" % item for item in file])
f.close()
2021-07-28 14:03:52 +00:00
def killingdup(duplicated_file):
print('Getting rid of duplicated line')
with open(duplicated_file, 'r') as f:
lines = set(f.readlines())
with open(duplicated_file, 'w') as f:
f.writelines(set(lines))
2021-07-28 14:03:52 +00:00
print("++ successful!")
f.close()
2021-08-02 15:37:53 +00:00
def excluded(excluded ,incoming):
2021-08-02 15:30:49 +00:00
with open(excluded ,'r') as f:
exclude = f.read().split()
with open(incoming ,'r') as f:
lines = f.read().splitlines() # read lines
2021-08-02 15:34:51 +00:00
with open(incoming ,'w') as f:
2021-08-02 15:30:49 +00:00
for line in lines:
if line.strip() and not line in exclude and not line.startswith(';'):
2021-08-02 15:49:36 +00:00
f.write('\n'.join([line + '\n']))
2021-08-02 15:30:49 +00:00
elif line.startswith((';','$','@',' IN')):
f.write('\n'.join([line + '\n']))
elif not line.strip():
f.write('\n'.join([line + '\n']))
def blankremover(incoming):
with open(incoming ,'r') as f:
lines = f.read().split()
with open(incoming ,'w') as f:
for line in lines:
if line.strip():
f.write('\n'.join([line + '\n']))
2021-08-03 11:56:08 +00:00
def sort(incoming):
with open(incoming, 'r') as f:
lines = sorted(f.readlines())
with open(incoming, 'w') as f:
for line in lines:
2021-08-05 13:35:22 +00:00
f.write(line)