@echo off echo ======================================== echo Canada Post App - Frida Hook Launcher echo ======================================== echo. echo Available Hooks: echo 1. Ultimate Bypass (SSL + Root + Emulator + Analytics) echo 2. Comprehensive Hook (All features + detailed logging) echo 3. Simple Auth Hook (Lightweight) echo 4. Exit echo. set /p choice="Select hook [1-4]: " if "%choice%"=="1" ( echo. echo [*] Launching ULTIMATE BYPASS... echo [*] Bypassing: SSL Pinning, Root Detection, Emulator Detection, Analytics echo [*] This is the MOST COMPLETE bypass for all security measures echo. frida -U -f com.canadapost.android -l frida_ultimate_bypass.js ) else if "%choice%"=="2" ( echo. echo [*] Launching Comprehensive Hook... echo [*] This will hook: Auth, AWS Signing, SSL, Root, Emulator echo [*] Includes detailed logging echo. frida -U -f com.canadapost.android -l frida_comprehensive_hook.js ) else if "%choice%"=="3" ( echo. echo [*] Launching Simple Auth Hook... echo [*] This will hook: Token Interceptor, App Check, SSL, Root, Emulator echo. frida -U -f com.canadapost.android -l frida_simple_auth_hook.js ) else if "%choice%"=="4" ( echo Exiting... exit /b 0 ) else ( echo Invalid choice! pause exit /b 1 ) echo. echo ======================================== echo Hook execution completed echo ======================================== pause