3

我在端口上本地运行一个 http 服务器8181。我已经mitmproxy在我的设备上进行了配置,现在我需要将来自特定域的请求转发到我的本地服务器实例。所以我使用这里描述的请求重定向示例脚本:

def request(flow):
    # pretty_host takes the "Host" header of the request into account,
    # which is useful in transparent mode where we usually only have the IP
    # otherwise.

    # Method 2: Redirect the request to a different server
    if flow.request.pretty_host.endswith("mydomain.com"):
        flow.request.headers["Host"] = flow.request.headers
        flow.request.host = "localhost"
        flow.request.port = 8181
        flow.request.scheme = 'http'

这可行,但我需要将Host标头设置为原始请求主机,所以我按照此处描述的添加标头示例进行操作

flow.request.headers["Host"] = flow.request.headers

但是当mitmproxy我在请求中看不到这个标头时,我也没有在localhost服务器日志中得到它。

所以我想做的和cURL

curl -b c -c c "http://localhost:8181/something" -H "Host: mydomain.com"

为了至少拥有所需的请求标头,例如

*   Trying ::1...
* Connected to localhost (::1) port 8181 (#0)
> GET /something HTTP/1.1
> Host:mydomain.com
> User-Agent: curl/7.43.0
> Accept: */*
4

1 回答 1

1

尝试:flow.request.headers["Host"] = ["mydomain.com"] 参考:https ://github.com/mitmproxy/mitmproxy/blob/v0.9.2/examples/redirect_requests.py

于 2017-09-13T09:39:19.973 回答