From 00d0a182c7f969544fc83e95d241e1010479578b Mon Sep 17 00:00:00 2001 From: Spirtix Date: Sun, 2 Jul 2023 10:39:43 +0200 Subject: [PATCH] update redirect --- mitm-redirect.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mitm-redirect.py b/mitm-redirect.py index 7a40bea..6823002 100644 --- a/mitm-redirect.py +++ b/mitm-redirect.py @@ -66,7 +66,7 @@ class LocalRedirect: print('Loaded redirect addon') def request(self, flow: mitmproxy.http.HTTPFlow): - if 'api.jumpstart.com' in flow.request.pretty_host and routable(flow.request.path): + if 'api.sodoff.spirtix.com' in flow.request.pretty_host and routable(flow.request.path): flow.request.host = "localhost" flow.request.scheme = 'http' flow.request.port = 5000