Simple HTTPs servers

I love the SimpleHTTPServer module on Python. It sets up a quick HTTP server when you are in dire need of a simple way to download files to a target. root@Kali:~# python -m SimpleHTTPServer Serving HTTP on 0.0.0.0 port 8000 … On a real assignment…