fix(tng): 修复地区选择黑屏并加固注册链 native abort 防护
This commit is contained in:
15
reverse/scripts/_scan_tng_vhv_u.py
Normal file
15
reverse/scripts/_scan_tng_vhv_u.py
Normal file
@@ -0,0 +1,15 @@
|
||||
import re
|
||||
import zipfile
|
||||
|
||||
APK = r"reverse/dumps/tng_1.9.10_base.apk"
|
||||
with zipfile.ZipFile(APK) as z:
|
||||
data = b"".join(z.read(n) for n in z.namelist() if n.endswith(".dex"))
|
||||
|
||||
for cls in ["Lvhvlnqgy/w;", "Lvhvlnqgy/u;"]:
|
||||
print("===", cls, "refs ===")
|
||||
pat = cls.encode() + rb"[^\x00]{0,120}"
|
||||
hits = sorted(set(re.findall(pat, data)))
|
||||
for h in hits[:40]:
|
||||
print(h.decode("ascii", "ignore"))
|
||||
print("count", len(hits))
|
||||
print()
|
||||
Reference in New Issue
Block a user