-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathssh_honeypot_downloader.py
85 lines (67 loc) · 2.74 KB
/
ssh_honeypot_downloader.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
#!/usr/bin/env python
import sys
import os
import traceback
import paramiko
import logging
import redis
import requests
import urllib3
import hashlib
import zipfile
from time import sleep
from urllib.parse import urlparse
logging.basicConfig(
format='%(asctime)s - %(name)s - %(levelname)s - %(message)s',
level=logging.INFO,
filename='ssh_honeypot_downloader.log')
# disable InsecureRequestWarnings
urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning)
REDIS_HOST=os.environ.get("REDIS_HOST")
REDIS_PORT=os.environ.get("REDIS_PORT")
REDIS_PASSWORD=os.environ.get("REDIS_PASSWORD")
r = redis.StrictRedis(host=REDIS_HOST, port=REDIS_PORT, password=REDIS_PASSWORD, decode_responses=True)
def downloadURL(url):
# make sure we haven't already checked this URL
if not r.hexists("checked_urls", url):
a = urlparse(url)
file_name = os.path.basename(a.path)
logging.info('Downloading URL: {}'.format(url))
m_sha256 = hashlib.sha256()
file_digest = ''
chunks = []
try:
response = requests.get(url, verify=False, timeout=10)
if response.status_code == 200:
for data in response.iter_content(8192):
m_sha256.update(data)
chunks.append(data)
file_digest = m_sha256.hexdigest()
directory = "uploaded_files"
if not os.path.exists(directory):
os.makedirs(directory)
zip_filename = directory+"/"+file_digest+'.zip'
if not os.path.isfile(zip_filename):
file_contents = b''.join(chunks)
with zipfile.ZipFile(zip_filename, mode='w') as myzip:
myzip.writestr(file_name, file_contents)
else:
print("Did not receive http 200 for requested URL. Received: ", response.status_code)
logging.info('Did not receive http 200 for requested URL. Received {}'.format(response.status_code))
except Exception as err:
print('*** Download URL failed: {}'.format(err))
logging.info('*** Download URL failed: {}'.format(err))
traceback.print_exc()
# add url to redis set so we don't check it again (prevents honeypot from becoming a DoS weapon)
r.hset("checked_urls", url, file_digest)
print("Waiting for URL to download...")
while True:
try:
url_to_download = r.lpop("download_queue")
if url_to_download:
downloadURL(url_to_download)
except Exception as err:
print('*** Download URL failed: {}'.format(err))
logging.info('*** Download URL failed: {}'.format(err))
traceback.print_exc()
sleep(1)