如何在 Python 中的请求中从袜子中的 IPv6 发送请求?
How to send request from IPv6 in socks in request in Python?
我在我的项目中使用 IPv4 作为 socks,但我需要在我的项目中连接 IPv6 socks。
IPv6:(例如)
ip: 1.1.1.1
端口:1080
用户名:用户名
密码:密码
我的代码:
import socks
socks.setdefaultproxy(socks.PROXY_TYPE_SOCKS5, "{}".format(proxy_row['ip']), proxy_row['port'], True, 'username', 'password')
socket.socket = socks.socksocket
url = 'http://website.domain'
response = f.get(url, timeout=10)
从 Github page 判断,您的服务器拒绝连接,这意味着您尝试连接的服务未托管在该 IPv6 地址上。
0x05 - Connection refused - The target server has actively refused the connection (the requested port is closed).
我会尝试使用 nmap
或 ping
检查服务是否在相关 IP (example) 上运行。
我在我的项目中使用 IPv4 作为 socks,但我需要在我的项目中连接 IPv6 socks。
IPv6:(例如)
ip: 1.1.1.1
端口:1080
用户名:用户名
密码:密码
我的代码:
import socks
socks.setdefaultproxy(socks.PROXY_TYPE_SOCKS5, "{}".format(proxy_row['ip']), proxy_row['port'], True, 'username', 'password')
socket.socket = socks.socksocket
url = 'http://website.domain'
response = f.get(url, timeout=10)
从 Github page 判断,您的服务器拒绝连接,这意味着您尝试连接的服务未托管在该 IPv6 地址上。
0x05 - Connection refused - The target server has actively refused the connection (the requested port is closed).
我会尝试使用 nmap
或 ping
检查服务是否在相关 IP (example) 上运行。