Skip to content

Instantly share code, notes, and snippets.

@debuti
Created September 11, 2018 10:27
Show Gist options
  • Save debuti/a598d15560c1baad400f9d949998724a to your computer and use it in GitHub Desktop.
Save debuti/a598d15560c1baad400f9d949998724a to your computer and use it in GitHub Desktop.
Simplest HTTP server with netcat
while true; do
(echo -e 'HTTP/1.1 200 OK\r\n'; echo -e "\n\tMy website has date function" ; echo -e "\t$(date)\n") | nc -lp 8080;
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment