feat: MariBank 风控 bypass、澳洲银行 Hook 与 reverse 逆向工作区
新增 MariBank/SeaBank PH Root 与 SHPSSDK bypass、riskToken 净化及 Up/Suncorp/ubank 消息 Hook;整理 reverse/ 脚本与 Frida 工具链,并补充当日工作说明文档。
This commit is contained in:
15
reverse/scripts/scan_register_endpoint.py
Normal file
15
reverse/scripts/scan_register_endpoint.py
Normal file
@@ -0,0 +1,15 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
import re
|
||||
import zipfile
|
||||
from pathlib import Path
|
||||
|
||||
APK = Path(__file__).resolve().parent.parent / "apks" / "seabank_ph_base.apk"
|
||||
needle = b"uapi/v2/register"
|
||||
with zipfile.ZipFile(str(APK)) as zf:
|
||||
data = b"".join(zf.read(n) for n in zf.namelist() if n.endswith(".dex"))
|
||||
idx = data.find(needle)
|
||||
print("found at", idx)
|
||||
if idx >= 0:
|
||||
ctx = data[max(0, idx - 400): idx + 400]
|
||||
for m in re.finditer(rb"[\x20-\x7e]{4,120}", ctx):
|
||||
print(" ", m.group().decode("latin1"))
|
||||
Reference in New Issue
Block a user