amuck-landowner

netcat

  1. mojeda

    Netcat never ending http connection

    I've got a script to server a basic web page using netcat: #!/bin/bash while true; do { echo -e 'HTTP/1.1 200 OK\r\n'; echo -e "Hello World"; } | nc -l -p 8888; done On one server running the exact same script, the page will load instantly, however on another server the page continuously...
Top
amuck-landowner