Deterministic traffic generator for proxy/WAF/AV testing
# Health check
curl http://prd.linuxsurfer.com/healthz
# Login simulation
curl -X POST -d "username=test&password=test&mode=valid" http://prd.linuxsurfer.com/login
# Upload file
curl -X POST -F "file=@myfile.txt" http://prd.linuxsurfer.com/upload
# Download 1MB binary
curl -o test.bin "http://prd.linuxsurfer.com/download?type=bin&size=1MB"
# Echo with custom headers
curl -H "X-Custom: value" http://prd.linuxsurfer.com/echo
# Slow response test
curl -w "Time: %{time_total}s\n" "http://prd.linuxsurfer.com/slow?sleep=2s"