From 1dd49ae9c8b65f07b5846097089508acf538c95d Mon Sep 17 00:00:00 2001 From: SpikeHD Date: Fri, 22 Apr 2022 23:08:10 -0700 Subject: [PATCH] rollback to mitmdump 7.0.4 --- scripts/install.cmd | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/install.cmd b/scripts/install.cmd index 0e29eca..df02932 100644 --- a/scripts/install.cmd +++ b/scripts/install.cmd @@ -17,13 +17,13 @@ cd "%ORIGIN%" if not exist "%ORIGIN%/ext" mkdir "%ORIGIN%/ext" if not exist "%ORIGIN%/temp" mkdir "%ORIGIN%/temp" -:: Begin by retrieving mitmproxy 8.0.0 -powershell Invoke-WebRequest -Uri https://snapshots.mitmproxy.org/8.0.0/mitmproxy-8.0.0-windows.zip -OutFile "%ORIGIN%/temp/mitmproxy-8.0.0-windows.zip" +:: Begin by retrieving mitmproxy 7.0.4 +powershell Invoke-WebRequest -Uri https://snapshots.mitmproxy.org/7.0.4/mitmproxy-7.0.4-windows.zip -OutFile "%ORIGIN%/temp/mitmproxy-7.0.4-windows.zip" echo Extracting... :: Extract from temp/ to ext/ with powershell -powershell Expand-Archive -Path "%ORIGIN%/temp/mitmproxy-8.0.0-windows.zip" -DestinationPath "%ORIGIN%/ext/" -Force +powershell Expand-Archive -Path "%ORIGIN%/temp/mitmproxy-7.0.4-windows.zip" -DestinationPath "%ORIGIN%/ext/" -Force del /s /q "%ORIGIN%/temp"