@@ -20,7 +20,6 @@ def initialize(info = {})
20
20
OptString . new ( 'VHOST' , [ false , "HTTP server virtual host" ] ) ,
21
21
OptString . new ( 'URI' , [ true , "The starting page to crawl" , "/" ] ) ,
22
22
Opt ::Proxies ,
23
- OptBool . new ( 'RUN_DIRBUSTER' , [ false , 'The maximum number of pages to crawl per URL' , true ] ) ,
24
23
OptInt . new ( 'MAX_PAGES' , [ true , 'The maximum number of pages to crawl per URL' , 500 ] ) ,
25
24
OptInt . new ( 'MAX_MINUTES' , [ true , 'The maximum number of minutes to spend on each URL' , 5 ] ) ,
26
25
OptInt . new ( 'MAX_THREADS' , [ true , 'The maximum number of concurrent requests' , 4 ] ) ,
@@ -33,6 +32,7 @@ def initialize(info = {})
33
32
34
33
register_advanced_options (
35
34
[
35
+ OptBool . new ( 'RUN_DIRBUSTER' , [ false , 'The maximum number of pages to crawl per URL' , true ] ) ,
36
36
OptInt . new ( 'RequestTimeout' , [ false , 'The maximum number of seconds to wait for a reply' , 15 ] ) ,
37
37
OptInt . new ( 'RedirectLimit' , [ false , 'The maximum number of redirects for a single request' , 5 ] ) ,
38
38
OptInt . new ( 'RetryLimit' , [ false , 'The maximum number of attempts for a single request' , 5 ] ) ,
0 commit comments