feat: MariBank 风控 bypass、澳洲银行 Hook 与 reverse 逆向工作区
新增 MariBank/SeaBank PH Root 与 SHPSSDK bypass、riskToken 净化及 Up/Suncorp/ubank 消息 Hook;整理 reverse/ 脚本与 Frida 工具链,并补充当日工作说明文档。
This commit is contained in:
9
reverse/scripts/list_sdkutils_jni.py
Normal file
9
reverse/scripts/list_sdkutils_jni.py
Normal file
@@ -0,0 +1,9 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
import re
|
||||
from pathlib import Path
|
||||
|
||||
so = Path(__file__).resolve().parent.parent / "extracted" / "native" / "libsdkutils.so"
|
||||
data = so.read_bytes()
|
||||
for name in sorted(set(m.group().decode() for m in re.finditer(rb"Java_com_shopee_bke_lib_jni_[A-Za-z0-9_]+", data))):
|
||||
if "utils" in name or "encrypt" in name.lower():
|
||||
print(name)
|
||||
Reference in New Issue
Block a user