我想使用Fiddler重定向来自的URL请求: “https://pstatic.fo.local:8088/ .....”至“https://127.0.0.1:8088/ ....”
例如,对“https://servername:8088/hello/world/index.html”的请求将被重定向到“https://127.0.0.1:8088/hello/world/index.html”。
我阅读了以下帖子: Fiddler: Creating an AutoResponse rule to map all calls to one host to another host
我使用规则编辑器进行重定向:
没有成功。 我也尝试过:
正则表达式:https://pstatic.fo.local:8088/(.*) - > https://127.0.0.1:8088/ $ 1
正则表达式:https://pstatic.fo.local:8088/(.*) - > https://127.0.0.1:8088/ $ 0
每当我进入浏览器并输入: https://pstatic.fo.local:8088/hello/world/index.html
我在浏览器中收到以下内容:
您的连接不是私密的
攻击者可能试图窃取您的信息 pstatic.fo.local(例如,密码,消息或信用卡)。 NET :: ERR_CERT_COMMON_NAME_INVALID
你知道我能做些什么才能让它发挥作用吗?
答案 0 :(得分:2)
选项:
正则表达式:https://pstatic.fo.local:8088/(。*) - > https://127.0.0.1:8088/ $ 1
是正确的。
我必须做的就是启用处理HTTPS请求的选项。 它可以通过以下方式完成: 工具 - > Telerik Fiddler Optoins - > HTTPS->勾选“捕获HTTPS连接”和“解密HTTPS流量”选项。