Tor命令行检测远程ip
当通过 telnet 连接到 tor 时,是否有命令可以检测正在使用 tor 的实际 ip?
我的意思是发送“getinfo Circuit-status”或“signal newnym”命令
谢谢!
is there a command to detect the actual ip that is using tor when connected to tor via telnet?
I mean like sending "getinfo circuit-status" or "signal newnym" commands
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是我看到的关于 获取当前出口中继的 IP。这是一个有趣的问题,所以我添加了 常见问题解答条目 - 希望这有帮助!
This is the second question I've seen about getting the IP of your present exit relays. It's an interesting question so I've added a FAQ entry for it - hope this helps!
“getinfo 地址”将告诉您 tor 认为您当前的外部 IP 地址是什么。听起来您可能对任意电路的最后一跳感兴趣。您可以通过查找路径中最后一个路由器的 IP,从“getinfo Circuit-status”查询中找出这一点。
因此,如果其中一个电路将其路径列为
$000000000000000000000000000,$111111111111111111111111111,$222222222222222222222222222
那么您可以发出另一个查询“getinfo ns/id/222 2222222222222222222222222
”来确定该IP最后一个路由器。"getinfo address" will tell you what tor believes your current external IP address to be. It sounds like you might be interested in what the final hop of an arbitrary circuit is. You can figure this out from your "getinfo circuit-status" query by looking up the IP of the last router in the path.
So, if one of the circuits lists its path as
$000000000000000000000000000,$111111111111111111111111111,$222222222222222222222222222
then you may issue another query "getinfo ns/id/222222222222222222222222222
" to determine the IP of that last router.