feat: MariBank 风控 bypass、澳洲银行 Hook 与 reverse 逆向工作区
新增 MariBank/SeaBank PH Root 与 SHPSSDK bypass、riskToken 净化及 Up/Suncorp/ubank 消息 Hook;整理 reverse/ 脚本与 Frida 工具链,并补充当日工作说明文档。
This commit is contained in:
20
reverse/scripts/find_blocked_msg.py
Normal file
20
reverse/scripts/find_blocked_msg.py
Normal file
@@ -0,0 +1,20 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
import json
|
||||
import glob
|
||||
import os
|
||||
from pathlib import Path
|
||||
|
||||
root = str(Path(__file__).resolve().parent.parent / "extracted" / "apk_extract")
|
||||
needle = "this service has been temporarily blocked"
|
||||
for fp in glob.glob(os.path.join(root, "**", "en.json"), recursive=True):
|
||||
try:
|
||||
with open(fp, encoding="utf-8") as f:
|
||||
d = json.load(f)
|
||||
if not isinstance(d, dict):
|
||||
continue
|
||||
for k, v in d.items():
|
||||
if isinstance(v, str) and needle in v.lower():
|
||||
print(fp)
|
||||
print(k, "->", v)
|
||||
except Exception:
|
||||
pass
|
||||
Reference in New Issue
Block a user