====== Web Servers - Simple Local Web Servers ====== ^COMMAND^DESCRIPTION^ |python -m SimpleHTTPServer 80|Run a basic http server, great for serving up shells etc| |python3 -m http.server|Run a basic Python3 http server, great for serving up shells etc| |ruby -rwebrick -e "WEBrick::HTTPServer.new (:Port => 80, :DocumentRoot => Dir.pwd).start"|Run a ruby webrick basic http server| |php -S 0.0.0.0:80|Run a basic PHP http server|