... | ... | @@ -75,8 +75,9 @@ in the [knowledge base](http://support.arachni-scanner.com/kb/). |
|
|
* [HTTP](#http)
|
|
|
* [User agent (--http-user-agent)](#http-user-agent)
|
|
|
* [Request concurrency (--http-request-concurrency)](#http-request-concurrency)
|
|
|
* [HTTP request queue size (--http-queue-size)](#http-queue-size)
|
|
|
* [HTTP request timeout (--http-timeout)](#http-timeout)
|
|
|
* [Request timeout (--http-request-timeout)](#http-request-timeout)
|
|
|
* [Request redirect limit (--http-request-redirect-limit)](#http-request-redirect-limit)
|
|
|
* [Request queue size (--http-queue-size)](#http-queue-size)
|
|
|
* [HTTPS only (--https-only)](#https-only)
|
|
|
* [Cookie jar (--cookie-jar)](#cookie-jar)
|
|
|
* [Cookie string (--cookie-string)](#cookie-string)
|
... | ... | @@ -103,7 +104,6 @@ in the [knowledge base](http://support.arachni-scanner.com/kb/). |
|
|
* [Follow subdomains (-f/--follow-subdomains)](#follow-subdomains)
|
|
|
* [Depth limit (--depth)](#depth)
|
|
|
* [Link count limit (--link-count)](#link-count)
|
|
|
* [Redirect limit (--redirect-limit)](#redirect-limit)
|
|
|
* [Extend paths (--extend-paths)](#extend-paths)
|
|
|
* [Restrict paths (--restrict-paths)](#restrict-paths)
|
|
|
* [Auditor](#auditor)
|
... | ... | @@ -384,29 +384,40 @@ Sets the maximum amount of requests to be active at any given time; this usually |
|
|
**Warning**: Given enough bandwidth and a high enough concurrency setting the scan could cause a DoS.
|
|
|
Be careful when setting this option too high, don't kill your server.
|
|
|
|
|
|
<h3 id='http-queue-size'><a href='#http-queue-size'>HTTP request queue size (--http-queue-size)</a></h3>
|
|
|
<h3 id='http-request-timeout'><a href='#http-request-timeout'>Request timeout (--http-request-timeout)</a></h3>
|
|
|
|
|
|
**Expects**: `integer`
|
|
|
**Expects**: `integer (milliseconds)`
|
|
|
|
|
|
**Default**: `500`
|
|
|
**Default**: `50000`
|
|
|
|
|
|
**Multiple invocations?**: `no`
|
|
|
|
|
|
|
|
|
Maximum amount of HTTP requests to keep in the queue.
|
|
|
Limit how long the HTTP client should wait for a response from the server.
|
|
|
|
|
|
**Note**: More means better scheduling and better performance, fewer means less RAM consumption.
|
|
|
<h3 id='http-request-redirect-limit'><a href='#http-request-redirect-limit'>Request redirect limit (--http-request-redirect-limit)</a></h3>
|
|
|
|
|
|
<h3 id='http-timeout'><a href='#http-timeout'>HTTP timeout (--http-timeout)</a></h3>
|
|
|
**Expects**: `integer`
|
|
|
|
|
|
**Expects**: `integer (milliseconds)`
|
|
|
**Default**: `5`
|
|
|
|
|
|
**Default**: `50000`
|
|
|
**Multiple invocations?**: `no`
|
|
|
|
|
|
|
|
|
Limits the amount of HTTP redirects the client should follow for each request.
|
|
|
|
|
|
<h3 id='http-request-queue-size'><a href='#http-request-queue-size'>Request queue size (--http-request-queue-size)</a></h3>
|
|
|
|
|
|
**Expects**: `integer`
|
|
|
|
|
|
**Default**: `500`
|
|
|
|
|
|
**Multiple invocations?**: `no`
|
|
|
|
|
|
|
|
|
Limit how long the HTTP client should wait for a response from the server.
|
|
|
Maximum amount of HTTP requests to keep in the client queue.
|
|
|
|
|
|
**Note**: More means better scheduling and better performance, less means less RAM consumption.
|
|
|
|
|
|
<h3 id='https-only'><a href='#https-only'>HTTP timeout (--https-only)</a></h3>
|
|
|
|
... | ... | @@ -767,17 +778,6 @@ It specifies how deep into the site structure the crawler should go. |
|
|
|
|
|
It specifies how many links the crawler should follow.
|
|
|
|
|
|
<h3 id='redirect-limit'><a href='#redirect-limit'>Redirect limit (--redirect-limit)</a></h3>
|
|
|
|
|
|
**Expects**: `integer`
|
|
|
|
|
|
**Default**: `20`
|
|
|
|
|
|
**Multiple invocations?**: `no`
|
|
|
|
|
|
|
|
|
It specifies how many redirects the crawler should follow.
|
|
|
|
|
|
<h3 id='extend-paths'><a href='#extend-paths'>Extend paths (--extend-paths)</a></h3>
|
|
|
|
|
|
**Expects**: `file`
|
... | ... | |