Meta options
... or options that are mutualized among task categories for efficiency, speed, and user-friendliness.
Meta options apply to tasks, workflows, or scans. When passed to workflows or scans, they will be passed to each task contained in the runner.
Some tasks, workflows, or scans do not support some of the options mentioned below. Runsecator x/w/s <name> --help
to get the complete list of supported options.
Execution Options
Threads (-threads
)
-threads
)Number of threads to use. Applies to all tasks supporting threads (or concurrency).
Requests Options
The following options will apply to tasks making network requests (if they implement it), no matter the protocol used (HTTP, TCP, UDP, DNS, FTP, ...).
Proxy (-proxy
)
-proxy
)Proxy (HTTP, Socks5, ...) to use when communicating with the targets.
Learn more about Proxies.
Rate limit (-rl
)
-rl
)Rate limit is an upper limit on the number of requests per second.
Timeout (-timeout
)
-timeout
)Timeout is the time to wait (in seconds) before giving up on the request.
Retries (-retries
)
-retries
)Retries is the number of retries for the port scan.
HTTP Options
The following options will apply to tasks making HTTP requests (if they implement it).
Header (-header
)
-header
)Custom header to add to each request in the form "KEY1:VALUE1; KEY2:VALUE2".
Method (-method
)
-method
)HTTP method to use for request GET, POST, PUT, DELETE, etc...
User-agent (-ua
)
-ua
)Custom user-agent to use for request.
Match regex (-mr)
-mr)
Keep responses which body content match the input.
Match size (-ms
)
-ms
)Keep responses which body size (in bytes) match the input.
Match-words (-mw)
-mw)
Keep responses which body word count match the input.
Match code (-mc
)
-mc
)Keep responses which HTTP status codes match the input.
Filter regex (-fr
)
-fr
)Filter out responses which body content match the input.
Filter codes (-fc
)
-fc
)Filter out responses which HTTP status codes match the input.
Filter size (-fs)
-fs)
Filter out responses which body size (in bytes) match the input.
Filter words (-fw
)
-fw
)Filter out responses which body word count match the input.
Follow redirect (-frd
)
-frd
)Follow all http redirects.
Wordlist (-w
)
-w
)Custom wordlist to use.
Last updated