[SSL: UNSAFE_LEGACY_RENEGOTIATION_DISABLED]

使用requess库访问https网址时,返回

(Caused by SSLError(SSLError(1, '[SSL: UNSAFE_LEGACY_RENEGOTIATION_DISABLED] unsafe legacy renegotiation disabled (_ssl.c:1147)')))

原因可能是服务器的认证方式版本太低然后requests抛弃了这种认证方式

参考:python - SSL error unsafe legacy renegotiation disabled - Stack Overflow

解决方法

python 复制代码
import ssl
import urllib.request

url = ""

# Set up SSL context to allow legacy TLS versions
ctx = ssl.create_default_context(ssl.Purpose.SERVER_AUTH)
ctx.options |= 0x4  # OP_LEGACY_SERVER_CONNECT

# Use urllib to open the URL and read the content
response = urllib.request.urlopen(url, context=ctx)
print(response.read().decode())

补充,或者这种(把代理部分的参数去掉)

解决tls版本问题的同时使用代理-CSDN博客

相关推荐
doubt。1 小时前
【BUUCTF】[GXYCTF2019]BabySQli
网络·数据库·笔记·sql·mysql·安全·web安全
laimaxgg1 小时前
Linux网络连接内核
linux·运维·服务器·网络·网络协议·tcp/ip
小徐同学14182 小时前
BGP边界网关协议(Border Gateway Protocol)路由引入、路由反射器
运维·网络·网络协议·华为·智能路由器·信息与通信·bgp
APItesterCris5 小时前
如何监控和防范小红书笔记详情API的安全风险?
网络·笔记·安全
运维技术小记5 小时前
rhel7.9利用有网络环境打包ansible
网络·ansible
明朝百晓生5 小时前
【无线感知会议系列-21 】无线感知6G 研究愿景
网络·人工智能·算法·5g
iceman19525 小时前
TCP Window Full是怎么来的
服务器·网络·tcp/ip
浅念同学5 小时前
网络编程-TCP套接字
网络·网络协议·tcp/ip
别致的影分身6 小时前
Linux网络 TCP socket
linux·网络·tcp/ip
web150850966416 小时前
显卡(Graphics Processing Unit,GPU)架构详细解读
大数据·网络·架构