@echo off REM Launch Canada Post app with Frida bypass while mitmproxy is capturing echo. echo ======================================== echo LAUNCHING CANADA POST WITH FRIDA echo ======================================== echo. echo [*] App will launch in 3 seconds... echo [*] Make sure mitmproxy is running first! echo. cd /d "%~dp0" timeout /t 3 >nul echo [*] Launching app with security bypass + credential capture... echo [*] Watch mitmproxy for traffic... echo. REM Launch app with THREE scripts: REM - frida_simple_bypass.js = Bypass SSL, root, emulator, license REM - intercept_http_traffic.js = Log all HTTP/HTTPS calls with headers REM - extract_live_credentials.js = Intercept tokens being injected frida -U -f com.canadapost.android -l frida_simple_bypass.js -l intercept_http_traffic.js -l extract_live_credentials.js echo. echo [*] App session ended echo [*] Check mitmproxy window for captured traffic echo [*] Traffic saved to: canadapost_traffic.mitm echo. pause