approve ignoring certificates for CI

This commit is contained in:
ophirharpazg 2020-09-02 12:45:09 +03:00
parent 7e7ca954d3
commit e69ff81e6f
1 changed files with 3 additions and 3 deletions

View File

@ -75,7 +75,7 @@ class DrupalExploiter(WebRCE):
response = requests.get(f'{url}?_format=hal_json',
json=payload,
headers={"Content-Type": "application/hal+json"},
verify=False)
verify=False) # noqa: DUO123
if is_response_cached(response):
LOG.info(f'Checking if node {url} is vuln returned cache HIT, ignoring')
@ -92,7 +92,7 @@ class DrupalExploiter(WebRCE):
r = requests.get(f'{url}?_format=hal_json',
json=payload,
headers={"Content-Type": "application/hal+json"},
verify=False)
verify=False) # noqa: DUO123
if is_response_cached(r):
LOG.info(f'Exploiting {url} returned cache HIT, may have failed')
@ -136,7 +136,7 @@ def find_exploitbale_article_ids(base_url: str, lower: int = 1, upper: int = 100
articles = set()
while lower < upper:
node_url = urljoin(base_url, str(lower))
response = requests.get(node_url, verify=False)
response = requests.get(node_url, verify=False) # noqa: DUO123
if response.status_code == 200:
if is_response_cached(response):
LOG.info(f'Found a cached article at: {node_url}, skipping')