feat: MariBank 风控 bypass、澳洲银行 Hook 与 reverse 逆向工作区
新增 MariBank/SeaBank PH Root 与 SHPSSDK bypass、riskToken 净化及 Up/Suncorp/ubank 消息 Hook;整理 reverse/ 脚本与 Frida 工具链,并补充当日工作说明文档。
This commit is contained in:
18
reverse/scripts/find_crypto_classes.py
Normal file
18
reverse/scripts/find_crypto_classes.py
Normal file
@@ -0,0 +1,18 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
import re
|
||||
import zipfile
|
||||
from pathlib import Path
|
||||
|
||||
APK = Path(__file__).resolve().parent.parent / "apks" / "seabank_ph_base.apk"
|
||||
with zipfile.ZipFile(str(APK)) as zf:
|
||||
for dex_name in zf.namelist():
|
||||
if not dex_name.endswith(".dex"):
|
||||
continue
|
||||
data = zf.read(dex_name)
|
||||
if b"CharacterCrypto" not in data and b"SoUtils" not in data:
|
||||
continue
|
||||
print("===", dex_name, "===")
|
||||
for m in re.finditer(rb"L[^;]{0,120};", data):
|
||||
s = m.group().decode("latin1", errors="replace")
|
||||
if "CharacterCrypto" in s or "SoUtils" in s or "SecurityMain" in s:
|
||||
print(s[1:-1].replace("/", "."))
|
||||
Reference in New Issue
Block a user