Skip to content

Commit 2fd32f0

Browse files
committed
Updated rate_limit description
1 parent 4c0c560 commit 2fd32f0

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

Diff for: README.md

+1
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ $ pip install -r requirements.txt
4040
| --unique-depth UNIQUE_DEPTH | Show likely matches of page content that is found x times (default 1). |
4141
| --ssl | If set then connections will be made over HTTPS instead of HTTP. |
4242
| --fuzzy-logic | If set then all unique content replies are compared and a similarity ratio is given for each pair. This helps to isolate vhosts in situations where a default page isn't static (such as having the time on it). |
43+
| --rate_limit | Amount of time in seconds to delay between each scan (default 0). |
4344
| --waf | If set then simple WAF bypass headers will be sent. |
4445
| -oN OUTPUT_NORMAL | Normal output printed to a file when the -oN option is specified with a filename argument. |
4546
| - | By passing a blank '-' you tell VHostScan to expect input from stdin (pipe). |

Diff for: VHostScan.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ def main():
2828
parser.add_argument('--unique-depth', dest='unique_depth', type=int, help='Show likely matches of page content that is found x times (default 1).', default=1)
2929
parser.add_argument("--ssl", dest="ssl", action="store_true", help="If set then connections will be made over HTTPS instead of HTTP (default http).", default=False)
3030
parser.add_argument("--fuzzy-logic", dest="fuzzy_logic", action="store_true", help="If set then fuzzy match will be performed against unique hosts (default off).", default=False)
31-
parser.add_argument("--rate-limit", dest="rate_limit", type=int, help='Amount of time in seconds between each scan (default 0).', default=0)
31+
parser.add_argument("--rate-limit", dest="rate_limit", type=int, help='Amount of time in seconds to delay between each scan (default 0).', default=0)
3232
parser.add_argument("--waf", dest="add_waf_bypass_headers", action="store_true", help="If set then simple WAF bypass headers will be sent.", default=False)
3333
parser.add_argument("-oN", dest="output_normal", help="Normal output printed to a file when the -oN option is specified with a filename argument." )
3434
parser.add_argument("-", dest="stdin", action="store_true", help="By passing a blank '-' you tell VHostScan to expect input from stdin (pipe).", default=False)

0 commit comments

Comments
 (0)