feat: MariBank 风控 bypass、澳洲银行 Hook 与 reverse 逆向工作区
新增 MariBank/SeaBank PH Root 与 SHPSSDK bypass、riskToken 净化及 Up/Suncorp/ubank 消息 Hook;整理 reverse/ 脚本与 Frida 工具链,并补充当日工作说明文档。
This commit is contained in:
29
reverse/scripts/scan_register_paths.py
Normal file
29
reverse/scripts/scan_register_paths.py
Normal file
@@ -0,0 +1,29 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
import re
|
||||
import zipfile
|
||||
from pathlib import Path
|
||||
|
||||
APK = Path(__file__).resolve().parent.parent / "apks" / "seabank_ph_base.apk"
|
||||
needles = [
|
||||
b"mobile",
|
||||
b"register",
|
||||
b"otp",
|
||||
b"signUp",
|
||||
b"signup",
|
||||
b"preCheck",
|
||||
b"checkMobile",
|
||||
b"sendSms",
|
||||
b"verifyPhone",
|
||||
b"4067004",
|
||||
b"4067",
|
||||
]
|
||||
with zipfile.ZipFile(str(APK)) as zf:
|
||||
data = b"".join(zf.read(n) for n in zf.namelist() if n.endswith(".dex"))
|
||||
for n in needles:
|
||||
if n in data:
|
||||
print("hit", n.decode())
|
||||
print("\n--- api paths ---")
|
||||
for m in re.finditer(rb"/v[0-9]/[a-zA-Z0-9_/-]{6,80}", data):
|
||||
s = m.group().decode()
|
||||
if any(k in s.lower() for k in ("user", "auth", "register", "mobile", "otp", "sign", "risk", "phone")):
|
||||
print(s)
|
||||
Reference in New Issue
Block a user