plugins: bypass ssl certificate verification. useful when debugging with burp

This commit is contained in:
Robert Vulpe
2021-06-10 13:02:17 +03:00
parent 0a819b503c
commit 1174cb65c1
3 changed files with 4 additions and 3 deletions

View File

@@ -19,7 +19,8 @@ def wayback(host, page):
response = requests.get(
'http://web.archive.org/cdx/search?filter=mimetype:text/html&filter=statuscode:200',
params=payload,
headers=headers
headers=headers,
verify=False
).text
if not response:
return (these_params, False, 'wayback')