Skip to content

Commit 46086d6

Browse files
authoredNov 22, 2017
Merge pull request #85 from ccsplit/supress-insecure
Supress insecure warnings within requests
2 parents 90cedb2 + 2d82546 commit 46086d6

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed
 

‎lib/core/__version__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
# |V|H|o|s|t|S|c|a|n| Developed by @codingo_ & @__timk
33
# +-+-+-+-+-+-+-+-+-+ https://github.com/codingo/VHostScan
44

5-
__version__ = '1.8.1'
5+
__version__ = '1.8.2'

‎lib/core/virtual_host_scanner.py

+1
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)
Please sign in to comment.