Python Twisted代理-如何拦截数据包
我正在尝试使用 Python 打印出 HTTP 响应的正文。
到目前为止,这是我的代码:
from twisted.web import proxy, http
from twisted.internet import reactor
from twisted.python import log
import sys
log.startLogging(sys.stdout)
class ProxyFactory(http.HTTPFactory):
protocol=proxy.Proxy
reactor.listenTCP(8080, ProxyFactory())
reactor.run()
当我将浏览器连接到 localhost:8080 时,我可以看到我的所有请求都通过本地运行的 Python 代理进行定向。但是我如何 1) 打印出响应正文并 2) 在将响应正文发送回浏览器之前对其进行编辑?
我希望有人能给我指出正确的方向——请记住,我对 Python 还很陌生!
I'm trying to print out the body of a HTTP response using Python.
Here is my code sofar:
from twisted.web import proxy, http
from twisted.internet import reactor
from twisted.python import log
import sys
log.startLogging(sys.stdout)
class ProxyFactory(http.HTTPFactory):
protocol=proxy.Proxy
reactor.listenTCP(8080, ProxyFactory())
reactor.run()
When I connect my browser to localhost:8080, I can see that all my requests are being directed through the Python proxy running locally. But how do I 1) print out response body and 2) edit the response body before sending it back to the browser?
I hope someone can point me in the right direction - please bear in mind that I'm very new to Python!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
覆盖协议的 dataReceived 方法(代理.Proxy 在你的情况下)并处理该方法中的数据修改:
Override the dataReceived method of a protocol (proxy.Proxy in your case) and handle the data modification in that method: