如何在C#中使用Tor控制协议?

时间:2010-04-30 14:40:08

标签: c# .net network-programming tcpclient tor

我正在尝试以编程方式将命令发送到Tor控制端口以使其刷新链。我无法在C#中找到任何示例,我的解决方案无法正常工作。请求超时。我有服务正在运行,我可以看到它在控制端口上监听。

public string Refresh()
{
    TcpClient client = new TcpClient("localhost", 9051);
    string response = string.Empty;
    string authenticate = MakeTcpRequest("AUTHENTICATE\r\n", client);
    if (authenticate.Equals("250"))
    {
        response = MakeTcpRequest("SIGNAL NEWNYM\r\n", client);
    }
    client.Close();
    return response;
}

public string MakeTcpRequest(string message, TcpClient client)
{
    client.ReceiveTimeout = 20000;
    client.SendTimeout = 20000;
    string proxyResponse = string.Empty;

    try
    {
        // Send message
        StreamWriter streamWriter = new StreamWriter(client.GetStream());
        streamWriter.Write(message);
        streamWriter.Flush();

        // Read response
        StreamReader streamReader = new StreamReader(client.GetStream());
        proxyResponse = streamReader.ReadToEnd();
    }
    catch (Exception ex)
    {
        // Ignore
    }

    return proxyResponse;
}

有人能发现我做错了吗?

编辑:

根据Hans的建议,他现在因某种原因删除了,我试图发送“AUTHENTICATE \ n”而不仅仅是“AUTHENTICATE”。现在我从Tor回来了一个错误:“551无效的引用字符串。你需要把密码放在双引号中。”至少有一些进展。

然后我尝试发送“AUTHENTICATE \”\“\ n”,就像它想要的那样,但它在等待响应时超时。

编辑:

该命令在Windows Telnet客户端中正常工作。我甚至不必添加引号。无法弄清楚出了什么问题。也许双引号在发送时没有正确编码?

4 个答案:

答案 0 :(得分:8)

    public static void CheckIfBlocked(ref HtmlDocument htmlDoc, string ypURL, HtmlWeb hw)
    {
        if (htmlDoc.DocumentNode.InnerText.Contains("FORBIDDEN ACCESS!"))
        {
            Console.WriteLine("Getting Blocked");
            Utils.RefreshTor();
            htmlDoc = hw.Load(ypURL, "127.0.0.1", 8118, null, null);
            if (htmlDoc.DocumentNode.InnerText.Contains("FORBIDDEN ACCESS!"))
            {
                Console.WriteLine("Getting Blocked");
                Utils.RefreshTor();
            }
        }
    }
    public static void RefreshTor()
    {
        IPEndPoint ip = new IPEndPoint(IPAddress.Parse("127.0.0.1"), 9051);
        Socket server = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp);
        try
        {
            server.Connect(ip);
        }
        catch (SocketException e)
        {
            Console.WriteLine("Unable to connect to server.");
            RefreshTor();
            return;
        }

        server.Send(Encoding.ASCII.GetBytes("AUTHENTICATE \"butt\"\n"));
        byte[] data = new byte[1024];
        int receivedDataLength = server.Receive(data);
        string stringData = Encoding.ASCII.GetString(data, 0, receivedDataLength);

        if (stringData.Contains("250"))
        {
            server.Send(Encoding.ASCII.GetBytes("SIGNAL NEWNYM\r\n"));
            data = new byte[1024];
            receivedDataLength = server.Receive(data);
            stringData = Encoding.ASCII.GetString(data, 0, receivedDataLength);
            if (!stringData.Contains("250"))
            {
                Console.WriteLine("Unable to signal new user to server.");
                server.Shutdown(SocketShutdown.Both);
                server.Close();
                RefreshTor();
            }
        }
        else
        {
            Console.WriteLine("Unable to authenticate to server.");
            server.Shutdown(SocketShutdown.Both);
            server.Close();
            RefreshTor();
        }
        server.Shutdown(SocketShutdown.Both);
        server.Close();
    }

答案 1 :(得分:4)

当我发送AUTHENTICATE命令时,StreamReader正在读取结束的响应,但是没有结束,因为成功时流保持打开状态。因此我将其更改为仅在此情况下读取响应的第一行。

public static string MakeTcpRequest(string message, TcpClient client, bool readToEnd)
{
    client.ReceiveTimeout = 20000;
    client.SendTimeout = 20000;
    string proxyResponse = string.Empty;

    try
    {
        // Send message
        using (StreamWriter streamWriter = new StreamWriter(client.GetStream()))
        {
            streamWriter.Write(message);
            streamWriter.Flush();
        }

        // Read response
        using (StreamReader streamReader = new StreamReader(client.GetStream()))
        {
            proxyResponse = readToEnd ? streamReader.ReadToEnd() : streamReader.ReadLine();
        }
    }
    catch (Exception ex)
    {
        throw ex;
    }

    return proxyResponse;
}

答案 2 :(得分:1)

添加了另一个我在下面使用自己的例子。还为那些想要通过控制端口接受命令的Tor设置了一些步骤。

Socket server = null;

//Authenticate using control password
IPEndPoint endPoint = new IPEndPoint(IPAddress.Parse("127.0.0.1"), 9151);
server = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp);
server.Connect(endPoint);
server.Send(Encoding.ASCII.GetBytes("AUTHENTICATE \"your_password\"" + Environment.NewLine));
byte[] data = new byte[1024];
int receivedDataLength = server.Receive(data);
string stringData = Encoding.ASCII.GetString(data, 0, receivedDataLength);

//Request a new Identity
server.Send(Encoding.ASCII.GetBytes("SIGNAL NEWNYM" + Environment.NewLine));
data = new byte[1024];
receivedDataLength = server.Receive(data);
stringData = Encoding.ASCII.GetString(data, 0, receivedDataLength);
if (!stringData.Contains("250"))
{
    Console.WriteLine("Unable to signal new user to server.");
    server.Shutdown(SocketShutdown.Both);
    server.Close();
}
else
{
    Console.WriteLine("SIGNAL NEWNYM sent successfully");
}

配置Tor的步骤:

  1. 将torrc-defaults复制到tor.exe所在的目录中。如果您使用Tor浏览器,则默认目录为:"〜\ Tor Browser \ Browser \ TorBrowser \ Data \ Tor"
  2. 打开cmd提示窗口
  3. chdir到tor.exe所在的目录。如果您使用Tor浏览器,则默认目录为:"〜\ Tor Browser \ Browser \ TorBrowser \ Tor \"
  4. 为Tor控制端口访问生成密码。 tor.exe --hash-password “your_password_without_hyphens” | more
  5. 将您的密码密码哈希添加到ControlPort 9151下的torrc-defaults。它应如下所示:hashedControlPassword 16:3B7DA467B1C0D550602211995AE8D9352BF942AB04110B2552324B2507。如果您接受密码为"密码"你可以复制上面的字符串。
  6. 现在,您可以在启动后通过Telnet访问Tor控件。现在代码可以运行,只需编辑Tor文件在程序中所在的路径。 通过Telnet测试修改Tor:
  7. 使用以下命令启动tor:tor.exe -f .\torrc-defaults
  8. 打开另一个cmd提示,然后输入:telnet localhost 9151
  9. 如果一切顺利,你应该看到一个完全黑屏。输入" autenticate “your_password_with_hyphens”"如果一切顺利,你应该看到" 250 OK"。
  10. 输入" SIGNAL NEWNYM"你会得到一条新的路线,ergo new IP。如果一切顺利,你应该看到" 250 OK"。
  11. 输入" setevents circ" (电路事件)启用控制台输出
  12. 输入" getinfo circuit-status"看电流电路

答案 3 :(得分:0)

可能您使用Vidalia生成用于控制端口访问的哈希密码。您需要使用Tor控制台应用程序并配置torrc文件。