This repository has been archived on 2026-05-07 . You can view files and clone it. You cannot open issues or pull requests or push a commit.
6e68e1f9d11a408fab8651b46e9e0015d4a9252b
simple-nc-server
Ncat
Only works with Ncat versions that are compiled with the -c switch.
while true; do nc -lnp 1337 -c 'read REQ; GET=$(echo $REQ | sed -E "s/GET \/(.*) HTTP.*/\1/"); echo -e "HTTP/1.1 200 OK\nContent-Type: text/html; charset=UTF-8\n\n"; eval "$(echo "%>$(cat index.sh.html)<%" | sed -e "s/<%=/<%echo /g" -e "s/<%/\nRAW\n/g" -e "s/%>/\ncat <<- RAW\n/g")"'; done
(Note: On Debian you might find nc to use the BSD alternative by default. The GNU Netcat is usually at /usr/bin/nc.traditional)
Busybox httpd
If Busybox was compiled with httpd, it can serve simple scripts. If there is no index.html it tries cgi-bin/index.cgi next using whatever is in the shebang. It can be further customized by having a httpd.conf around but keeping it minimal, this works in this repo:
busybox httpd -p 1337 -f
(Note: Alpine Linux now splits Busybox into multiple packages: apk add busybox-extras)
PHP
PHP has a built-in server which can come in handy. For this example there is an index.php with index.sh.html compatible instructions but PHP is quite easy to write so it's better without this extra hoop.
php -S 0.0.0.0:1337
Description
Languages
HTML
72%
PHP
14.3%
Shell
13.7%