@echo off echo ============================================================ echo Purolator Account Extractor with Security Bypasses echo ============================================================ echo. echo This script will: echo - Bypass SSL pinning echo - Bypass root detection echo - Bypass emulator detection echo - Extract account numbers from the app echo. echo Make sure: echo 1. Frida server is running on device echo 2. Device is connected via ADB echo 3. You have real Purolator login credentials echo. echo ============================================================ echo. echo [*] Starting Frida server on device... adb shell "su -c 'killall frida-server 2>/dev/null; /data/local/tmp/frida-server &'" timeout /t 2 /nobreak >nul echo [*] Starting Purolator app... adb shell am force-stop com.purolator.mobileapp timeout /t 1 /nobreak >nul adb shell monkey -p com.purolator.mobileapp 1 timeout /t 3 /nobreak >nul echo [*] Attaching Frida to running app... echo. frida -U com.purolator.mobileapp -l frida_extract_accounts_complete.js pause