扭曲的Python代理

时间:2012-08-03 16:46:40

标签: python proxy twisted twisted.web

您好!我有这段代码:

from twisted.web import proxy, http
from twisted.internet import reactor

class akaProxy(proxy.Proxy):
    """
    Local proxy = bridge between browser and web application
    """

    def dataReceived(self, data):

        print "Received data..."

        headers = data.split("\n")
        request = headers[0].split(" ")

        method = request[0].lower()
        action = request[1]
        print action
        print "ended content manipulation"  
        return proxy.Proxy.dataReceived(self, data)

class ProxyFactory(http.HTTPFactory):
    protocol = akaProxy

def intercept(port):
    print "Intercept"
    try:                
        factory = ProxyFactory()
        reactor.listenTCP(port, factory)
        reactor.run()
    except Exception as excp:
        print str(excp)

intercept(1337)

我使用上面的代码拦截浏览器和网站之间的所有内容。使用上述内容时,我配置了我的浏览器设置:IP:127.0.0.1和端口:1337。我将此脚本放在远程服务器中,以将我的远程服务器作为代理服务器。但是,当我将浏览器代理IP设置更改为我的服务器时,它不起作用。我做错了什么?我还需要配置什么?

2 个答案:

答案 0 :(得分:2)

据推测,您的dataReceived在尝试解析传递给它的数据时会引发异常。尝试启用日志记录,以便您可以看到更多正在发生的事情:

from twisted.python.log import startLogging
from sys import stdout
startLogging(stdout)

您的解析器可能引发异常的原因是dataReceived仅在完整请求时才会被调用。使用从TCP连接读取的任何字节调用它。这可能是一个完整的请求,一个部分请求,甚至两个请求(如果正在使用流水线)。

答案 1 :(得分:0)

代理上下文中的

dataReceived处理“将rawData转换为行”,因此尝试操作代码可能为时尚早。您可以尝试覆盖allContentReceived,然后您就可以访问完整的标题和内容。这是一个我相信你所做的事情的例子:

#!/usr/bin/env python
from twisted.web import proxy, http

class SnifferProxy(proxy.Proxy):
    """
    Local proxy = bridge between browser and web application
    """

    def allContentReceived(self):
        print "Received data..."
        print "method = %s" % self._command
        print "action = %s" % self._path
        print "ended content manipulation\n\n"
        return proxy.Proxy.allContentReceived(self)


class ProxyFactory(http.HTTPFactory):

    protocol = SnifferProxy

if __name__ == "__main__":
    from twisted.internet import reactor
    reactor.listenTCP(8080, ProxyFactory())
    reactor.run()