You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For #140,
Certificate verification has been explicitly disabled (verify=false) @ src/tools/gophish_complete.py line 135; this permits insecure connections to insecure servers. Therefore, we should re-enable certification validation.
Developer note: There is already a comment in the code about this: comment line 133 to line 134:
Bandit complains about disabling the SSL certificate check, but we have
no choice here since we are using a self-signed certificate.
response = requests.get(url=url, verify=False) # nosec
The text was updated successfully, but these errors were encountered:
dv4harr10
added
the
improvement
This issue or pull request will add or improve functionality, maintainability, or ease of use
label
Dec 29, 2023
Yradio
pushed a commit
to Yradio/gophish-tools
that referenced
this issue
Mar 16, 2024
💡 Summary
For #140,
Certificate verification has been explicitly disabled (verify=false) @ src/tools/gophish_complete.py line 135; this permits insecure connections to insecure servers. Therefore, we should re-enable certification validation.
Developer note: There is already a comment in the code about this: comment line 133 to line 134:
Bandit complains about disabling the SSL certificate check, but we have
no choice here since we are using a self-signed certificate.
response = requests.get(url=url, verify=False) # nosec
The text was updated successfully, but these errors were encountered: