Conversation
Signed-off-by: Eric Brown <ericwb@users.noreply.github.com>
|
Tip This pull request has had no activity in 2 weeks. Would you like to schedule an interactive session with the reviewers? Can also show an image based on whether in light or dark mode: |
| import ssl | ||
|
|
||
|
|
||
| context = ssl._create_unverified_context() |
Check warning
Code scanning / Bandit
By default, Python will create a secure, verified ssl context for use in such classes as HTTPSConnection. However, it still allows using an insecure context via the _create_unverified_context that reverts to the previous behavior that does not validate certificates or perform hostname checks. Warning

No description provided.