-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathcrimeflaredb.py
50 lines (40 loc) · 1.32 KB
/
crimeflaredb.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
import zipfile
import urllib2
import os.path
import os
def dl_crimeflare():
# http://stackoverflow.com/a/22776
if os.path.exists('data/ipout'):
print('[+] Detected IPOUT file in data. Removing and redownloading')
os.remove('data/ipout')
try:
# From http://www.crimeflare.us/zippy.html
url = 'http://crimeflare.net:83/domains/ipout.zip'
file_name = url.split('/')[-1]
u = urllib2.urlopen(url)
f = open(file_name, 'wb')
meta = u.info()
file_size = int(meta.getheaders("Content-Length")[0])
print "[+] Downloading: %s Bytes: %s" % (file_name, file_size)
file_size_dl = 0
block_sz = 8192
while True:
buffer = u.read(block_sz)
if not buffer:
break
file_size_dl += len(buffer)
f.write(buffer)
status = r"%10d [%3.2f%%]" % (file_size_dl, file_size_dl * 100. / file_size)
status = status + chr(8)*(len(status)+1)
print status,
f.close()
unzip_db(file_name)
os.remove(file_name)
except:
print("[!] Error downloading crimeflaredb!")
pass
def unzip_db(ipout):
print("[+] Unzpping %s " % ipout)
zip_ref = zipfile.ZipFile(ipout, 'r')
zip_ref.extractall('data')
zip_ref.close()