作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用 hash-buster 并从我的服务器向 hash-buster 的数据库发出请求。
每次我收到此错误时:
Hash function : MD5
/usr/lib/python3/dist-packages/urllib3/connectionpool.py:849: InsecureRequestWarning: Unverified HTTPS request is being made. Adding certificate verification is strongly advised. See: https://urllib3.readthedocs.io/en/latest/advanced-usage.html#ssl-warnings
InsecureRequestWarning
我在 Ubuntu(19.04)中也是 python 3 的新手。请帮助我在我的服务器中添加证书,实际上我需要一步一步的指南来安装和激活它(或其他)。
最佳答案
I am trying to use hash-buster....
... Unverified HTTPS request is being made. Addingcertificate verification is strongly advised. ...
response = requests.get('https://www.nitrxgen.net/md5db/' + hashvalue, verify=False).text
因此,这里使用
verify=False
明确禁用证书验证。 .鉴于代码中还有其他 HTTPS 请求,并且这是唯一一个禁用了证书验证的请求,它可能会解决该站点的问题。
www.nitrxgen.net
表明该站点未正确配置:
This server's certificate chain is incomplete. Grade capped to B.
关于python-3.x - 如何在 Ubuntu 上的 python 3 中添加证书验证,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67658552/
我是一名优秀的程序员,十分优秀!