NAME
ronin-listener-http - Starts a HTTP server for receiving exfiltrated data
SYNOPSIS
ronin-listener http [options]
DESCRIPTION
Starts a HTTP server for receiving exfiltrated data.
OPTIONS
-o,--outputFILE- The output file to write the received DNS queries to.
-F,--output-formattxt|csv|json|ndjson- The output format to use. If not specified, the output format will be inferred
from the output file’s extension. If the output format cannot be inferred from
the output file’s extension, then it will default to
txtformat. -H,--hostIP- The interface to listen on. Defaults to
0.0.0.0if not given. -p,--portPORT- The port to listen on. Defaults to
8080if not given. --vhostHOST- The
Host:header to filter requests by. -R,--rootDIR- The root directory to filter requests by. Defaults to
/if not given. -h,--help- Prints help information.
EXAMPLES
Runs a HTTP listener on 127.0.0.1:8080 that will receive any request:
$ ronin-listener http -p 8080
Runs a HTTP listener on 127.0.0.1:8080 for the virtual-host example.com:
$ ronin-listener http -p 8080 --vhost example.com
Run a HTTP listener on 0.0.0.0:80 as root:
$ sudo ronin-listener http
AUTHOR
Postmodern postmodern.mod3@gmail.com