Skip to content

Commit 4a6e345

Browse files
committed
Added --no-lookups description
1 parent 37a3815 commit 4a6e345

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ A virtual host scanner that can be used with pivot tools, detect catch-all scena
1212
* Work over HTTP and HTTPS
1313
* Ability to set the real port of the webserver to use in headers when pivoting through ssh/nc
1414
* Add simple response headers to bypass some WAF products
15+
* Identify new targets by using reverse lookups and append to wordlist
1516

1617
## Product Comparisons
1718

@@ -40,6 +41,7 @@ $ pip install -r requirements.txt
4041
| --unique-depth UNIQUE_DEPTH | Show likely matches of page content that is found x times (default 1). |
4142
| --ssl | If set then connections will be made over HTTPS instead of HTTP. |
4243
| --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). |
44+
| --no-lookups | Disbale reverse lookups (identifies new targets and append to wordlist, on by default). |
4345
| --rate-limit | Amount of time in seconds to delay between each scan (default 0). |
4446
| --waf | If set then simple WAF bypass headers will be sent. |
4547
| -oN OUTPUT_NORMAL | Normal output printed to a file when the -oN option is specified with a filename argument. |

VHostScan.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ def main():
3030
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)
3131
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)
3232
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)
33-
parser.add_argument("--no-lookups", dest="no_lookup", action="store_true", help="Disable reverse lookups (identifies new targets and appends to wordlist).", default=False)
33+
parser.add_argument("--no-lookups", dest="no_lookup", action="store_true", help="Disable reverse lookups (identifies new targets and appends to wordlist, on by default).", default=False)
3434
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)
3535
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)
3636
parser.add_argument("-oN", dest="output_normal", help="Normal output printed to a file when the -oN option is specified with a filename argument." )

0 commit comments

Comments
 (0)