前言
- 记录
wireshark
使用案例
查看 github 访问情况
技术栈
Windows 10 Wireshark 4.4
本地
proxy
软件为v2ray
socks5://127.0.0.1:10808 http://127.0.0.1:10809
wireshark
监听loopback
,不是以太网
或本地连接
wireshark
捕获过滤器规则dst port 10808 or dst port 10809
使用 http 代理
curl
访问 githubcurl https://github.com -x http://127.0.0.1:10809
wireshark
显示过滤器规则http.host == "github.com:443"
使用 socks 代理
curl
访问 githubcurl https://github.com -x socks5://127.0.0.1:10808
wireshark
显示过滤器规则tls.handshake.extensions_server_name
查看 uv
下载 Python 是否走代理
uv 设置环境变量
export ALL_PROXY='socks5://127.0.0.1:10808'
uv
下载 Pythonuv python install 3.12.5
wireshark
显示过滤器规则tls.handshake.extensions_server_name in {"github.com", "objects.githubusercontent.com"}
- 捕获截图
相关资料
本文出自 qbit snap
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。