4

我发现这个脚本https://gist.github.com/estliberitas/4448496关于更改 Tor 身份,但我对这个脚本中的 cookiePath 和 cookie 不太了解。

我正在使用 Ubuntu 安装的 Tor。如何在我的机器中获取 cookiePath?或者有什么方法可以改变 Tor 身份?

4

1 回答 1

2

确保使用CookieAuthentication身份验证方法在配置中启用了 TOR 控制

torrc 文件

## The port on which Tor will listen for local connections from Tor
## controller applications, as documented in control-spec.txt.
ControlPort 9051
## If you enable the controlport, be sure to enable one of these
## authentication methods, to prevent attackers from accessing it.
#HashedControlPassword 16:872860B76453A77D60CA2BB8C1A7042072093276A3D701AD684053EC4C
CookieAuthentication 1

然后,您可以在参数中使用 cookie 的路径运行“estliberitas”脚本:

nodejs tor-identity.js /home/ubuntu/.tor/control_auth_cookie

注意:您可以通过使用获取 cookiePathlocate control_auth_cookie

于 2013-11-04T17:34:48.410 回答