Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

simplehttpserver: add page #12261

Merged
merged 11 commits into from
Feb 15, 2024
25 changes: 25 additions & 0 deletions pages/common/simplehttpserver.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# simplehttpserver

> A simple HTTP/S server that supports file upload, basic authentication, and YAML rules for custom responses.
> A Go alternative to Python's `http.server`.
> More information: <https://github.com/projectdiscovery/simplehttpserver>.

- Start the HTTP server serving the current directory with [v]erbose output (listen on all interfaces and port 8000 by default):

`simplehttpserver -verbose`

- Start the HTTP server with [b]asic authentication serving a specific [p]ath over port 80 on all interfaces:

`sudo simplehttpserver -basic-auth {{username}}:{{password}} -path {{/var/www/html}} -listen 0.0.0.0:80`

- Start the HTTP server, enabling HTTPS using a self-signed certificate with custom SAN on all interfaces:

`sudo simplehttpserver -https -domain {{*.selfsigned.com}} -listen 0.0.0.0:443`

- Start the HTTP server with custom response [h]eaders and [u]pload capability:

`simplehttpserver -upload -header '{{X-Powered-By: Go}}' -header '{{Server: SimpleHTTPServer}}'`

- Start the HTTP server with customizable [r]ules in YAML (see documentation for DSL):

`simplehttpserver -rules {{rules.yaml}}`
Loading