... | ... | @@ -102,8 +102,8 @@ in the [knowledge base](http://support.arachni-scanner.com/kb/). |
|
|
* [Exclude page by content (--scope-exclude-content-pattern)](#scope-exclude-content-pattern)
|
|
|
* [Exclude binaries (--scope-exclude-binaries)](#scope-exclude-binaries)
|
|
|
* [Redundant paths (--scope-redundant-path-pattern)](#scope-redundant-path-pattern)
|
|
|
* [Auto-redundant (--auto-redundant)](#auto-redundant)
|
|
|
* [Example](#auto-redundant_example)
|
|
|
* [Auto-redundant (--scope-auto-redundant)](#scope-auto-redundant)
|
|
|
* [Example](#scope-auto-redundant_example)
|
|
|
* [Depth limit (--depth)](#depth)
|
|
|
* [Link count limit (--link-count)](#link-count)
|
|
|
* [Extend paths (--extend-paths)](#extend-paths)
|
... | ... | @@ -662,7 +662,7 @@ This will cause URLs that contain `calendar.php` to be crawled only 3 times. |
|
|
|
|
|
This option is useful when scanning websites that have a lot of redundant pages like a photo gallery or a dynamically generated calendar.
|
|
|
|
|
|
<h3 id='auto-redundant'><a href='#auto-redundant'>Auto-redundant (--auto-redundant)</a></h3>
|
|
|
<h3 id='scope-auto-redundant'><a href='#scope-auto-redundant'>Auto-redundant (--scope-auto-redundant)</a></h3>
|
|
|
|
|
|
**Expects**: `integer`
|
|
|
|
... | ... | @@ -671,14 +671,13 @@ This option is useful when scanning websites that have a lot of redundant pages |
|
|
**Multiple invocations?**: `no`
|
|
|
|
|
|
|
|
|
The auto-redundant option sets the limit of how many URLs with identical parameters
|
|
|
should be followed.
|
|
|
This option limits how many resources with URLs with identical parameters should be includes in the scan.
|
|
|
|
|
|
This can prevent infinite loops caused by pages like photo galleries or catalogues.
|
|
|
|
|
|
<h4 id='auto-redundant_example'><a href='#auto-redundant_example'>Example</a></h4>
|
|
|
<h4 id='scope-auto-redundant_example'><a href='#scope-auto-redundant_example'>Example</a></h4>
|
|
|
|
|
|
With ```--auto-redundant=2``` and given the following list of URLs:
|
|
|
With `--scope-auto-redundant=2` and given the following list of URLs:
|
|
|
|
|
|
```
|
|
|
http://test.com/?stuff=1
|
... | ... | @@ -691,7 +690,7 @@ http://test.com/?stuff=blah2&stuff2=bloo |
|
|
http://test.com/path.php?stuff=blah&stuff2=1
|
|
|
```
|
|
|
|
|
|
Only the following will be followed:
|
|
|
Only the following will be included:
|
|
|
|
|
|
```
|
|
|
http://test.com/?stuff=1
|
... | ... | |