Skip to content

Commit 04c01b9

Browse files
committed
Merge branch 'master' of github:codingo/VHostScan
* 'master' of github:codingo/VHostScan: Update __version__.py Supress insecure warnings within requests Update README.md
2 parents 7f7b5b8 + 46086d6 commit 04c01b9

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

README.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ A virtual host scanner that can be used with pivot tools, detect catch-all scena
2222

2323
# Install Requirements
2424

25-
Using pip install via:
25+
Install via pip using:
2626

2727
```bash
2828
$ pip install -r requirements.txt
@@ -71,6 +71,13 @@ The most straightforward example runs the default wordlist against example.com u
7171
$ VHostScan -t example.com
7272
```
7373

74+
### Quick Example with SSL
75+
If your connection requires SSL, you can use:
76+
77+
```bash
78+
$ VHostScan.py -t example.com --ssl
79+
```
80+
7481
![VHOSTScan Wordlist example](https://github.com/codingo/codingo.github.io/blob/master/assets/Bank%20VHOST%20Example.png)
7582

7683
### Port forwarding

VHostScan/lib/core/virtual_host_scanner.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99

1010
import urllib3
1111
urllib3.disable_warnings()
12+
requests.packages.urllib3.disable_warnings()
1213

1314
DEFAULT_USER_AGENT = 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) '\
1415
'AppleWebKit/537.36 (KHTML, like Gecko) '\

0 commit comments

Comments
 (0)