如何创建和运行 Docker Tor Bridge 映像以增强隐私性和匿名性
Table of Contents
创建 torrc.default
文件: /torrc.default
与默认 torrc 相比,唯一需要更改的是以下一行:
SocksPort 0.0.0.0:9050
构建 docker 镜像
运行以下命令来构建 docker 镜像。
docker build -t simeononsecurity/docker-tor-bridge .
运行 docker 容器
docker run -d \
--restart always \
-p 9050:9050 \
--name torproxy \
simeononsecurity/docker-tor-bridge:latest
测试
获取您当前的 IP 地址
curl -L http://ifconfig.me
通过 tor socks 代理获取您的 IP 地址
curl --socks5 http://localhost:9050 -L http://ifconfig.me