Last active
September 12, 2019 00:23
-
-
Save eff-kay/c437864575cc14ae2a767d956ff15263 to your computer and use it in GitHub Desktop.
Simple ssh server python examples
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#create key.pem and cert.pem using the following command | |
# >> openssl req -x509 -newkey rsa:2048 -keyout key.pem -out cert.pem -days 365 | |
import BaseHTTPServer, SimpleHTTPServer | |
import ssl | |
httpd = BaseHTTPServer.HTTPServer(('0.0.0.0', 443), | |
SimpleHTTPServer.SimpleHTTPRequestHandler) | |
httpd.socket = ssl.wrap_socket (httpd.socket, | |
keyfile="key.pem", | |
certfile='cert.pem', server_side=True) | |
httpd.serve_forever() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from http.server import BaseHTTPRequestHandler, HTTPServer | |
import logging, ssl | |
from io import BytesIO | |
class S(BaseHTTPRequestHandler): | |
def _set_response(self): | |
self.send_response(200) | |
self.send_header('Content-type', 'text/html') | |
self.end_headers() | |
def do_GET(self): | |
logging.info("GET request,\nPath: %s\nHeaders:\n%s\n", str(self.path), str(self.headers)) | |
self._set_response() | |
self.wfile.write("GET request for {}".format(self.path).encode('utf-8')) | |
def do_POST(self): | |
content_length = int(self.headers['Content-Length']) # <--- Gets the size of data | |
post_data = self.rfile.read(content_length) # <--- Gets the data itself | |
logging.info("POST request,\nPath: %s\nHeaders:\n%s\n\nBody:\n%s\n", | |
str(self.path), str(self.headers), post_data.decode('utf-8')) | |
self.send_response(200) | |
self.end_headers() | |
response = BytesIO() | |
response.write(b'This is POST request. ') | |
response.write(b'Received: ') | |
response.write(post_data) | |
self.wfile.write(response.getvalue()) | |
def run(server_class=HTTPServer, handler_class=S, port=8080): | |
logging.basicConfig(level=logging.INFO) | |
server_address = ('', port) | |
httpd = server_class(server_address, handler_class) | |
httpd.socket = ssl.wrap_socket (httpd.socket, keyfile= "./key.pem", certfile='./cert.pem', server_side=True) | |
logging.info('Starting httpd...\n') | |
try: | |
httpd.serve_forever() | |
except KeyboardInterrupt: | |
pass | |
httpd.server_close() | |
logging.info('Stopping httpd...\n') | |
if __name__ == '__main__': | |
from sys import argv | |
if len(argv) == 2: | |
run(port=int(argv[1])) | |
else: | |
run() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment