Skip to content

Instantly share code, notes, and snippets.

View NathanielRN's full-sized avatar

Nathaniel Ruiz Nowell NathanielRN

View GitHub Profile
@phrawzty
phrawzty / 2serv.py
Last active May 2, 2024 12:27
simple python http server to dump request headers
#!/usr/bin/env python2
import SimpleHTTPServer
import SocketServer
import logging
PORT = 8000
class GetHandler(SimpleHTTPServer.SimpleHTTPRequestHandler):