2022-04-20 05:16:56 +00:00
|
|
|
@echo off
|
|
|
|
|
2022-04-22 00:17:00 +00:00
|
|
|
set ORIGIN=%1
|
|
|
|
set ORIGIN=%ORIGIN:"=%
|
|
|
|
|
2022-04-22 00:05:00 +00:00
|
|
|
:: Ensure admin
|
|
|
|
>nul 2>&1 reg query "HKU\S-1-5-19" || (
|
|
|
|
set params = %*:"="""%
|
2022-04-22 00:17:00 +00:00
|
|
|
cd /d "%~dp0" && ( if exist "%temp%\getadmin.vbs" del "%temp%\getadmin.vbs" ) && fsutil dirty query %systemdrive% 1>nul 2>nul || ( echo Set UAC = CreateObject^("Shell.Application"^) : UAC.ShellExecute "cmd.exe", "/k cd ""%~sdp0"" && %~s0 "%1" ", "", "runas", 1 >> "%temp%\getadmin.vbs" && "%temp%\getadmin.vbs" && exit /B )
|
2022-04-22 00:05:00 +00:00
|
|
|
)
|
|
|
|
|
2022-04-20 05:16:56 +00:00
|
|
|
echo Downloading proxy server...
|
|
|
|
|
2022-04-22 00:17:00 +00:00
|
|
|
:: Make sure we are in the right directory
|
|
|
|
cd "%ORIGIN%"
|
|
|
|
|
|
|
|
if not exist "%ORIGIN%/ext" mkdir "%ORIGIN%/ext"
|
|
|
|
if not exist "%ORIGIN%/temp" mkdir "%ORIGIN%/temp"
|
2022-04-20 05:16:56 +00:00
|
|
|
|
2022-04-23 06:08:10 +00:00
|
|
|
:: 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"
|
2022-04-20 05:16:56 +00:00
|
|
|
|
2022-04-20 05:31:23 +00:00
|
|
|
echo Extracting...
|
|
|
|
|
2022-04-20 05:16:56 +00:00
|
|
|
:: Extract from temp/ to ext/ with powershell
|
2022-04-23 06:08:10 +00:00
|
|
|
powershell Expand-Archive -Path "%ORIGIN%/temp/mitmproxy-7.0.4-windows.zip" -DestinationPath "%ORIGIN%/ext/" -Force
|
2022-04-20 05:16:56 +00:00
|
|
|
|
2022-04-22 00:17:00 +00:00
|
|
|
del /s /q "%ORIGIN%/temp"
|
2022-04-20 05:31:23 +00:00
|
|
|
|
2022-04-20 23:27:40 +00:00
|
|
|
echo Running proxy server in order to generate certificates...
|
|
|
|
|
|
|
|
:: Start proxy server
|
2022-04-22 01:30:37 +00:00
|
|
|
start "Proxy Server" %ORIGIN%/ext/mitmdump.exe --ssl-insecure --set ip=%ip%
|
2022-04-20 23:27:40 +00:00
|
|
|
|
|
|
|
:: Allow the proxy server to create the certificates
|
|
|
|
ping 127.0.0.1 -n 6 > nul
|
2022-04-20 05:40:13 +00:00
|
|
|
|
2022-04-20 23:27:40 +00:00
|
|
|
:: Kill the process
|
|
|
|
taskkill /f /im mitmdump.exe
|
|
|
|
|
2022-04-22 00:17:00 +00:00
|
|
|
echo Adding ceritifcate...
|
|
|
|
|
2022-04-20 23:27:40 +00:00
|
|
|
:: Ensure we are elevated for certs
|
|
|
|
>nul 2>&1 certutil -addstore root %USERPROFILE%\.mitmproxy\mitmproxy-ca-cert.cer || (
|
|
|
|
echo Certificate install failed, ensure the script is running as Administrator and that the path "%USERPROFILE%\.mitmproxy" exists,
|
|
|
|
)
|
|
|
|
|
|
|
|
echo Done! You can now open GrassClipper.exe!
|
|
|
|
|
|
|
|
pause
|
2022-04-22 00:17:00 +00:00
|
|
|
|
|
|
|
exit /b
|