-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathnonobf.py
36 lines (29 loc) · 917 Bytes
/
nonobf.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#!/usr/bin/python
# Find symbols not deobfuscated in MCP, yet deobfuscated in CB
# py nonobf.py < 1.5/cb2pkgmcp.srg
import sys
import srglib
def isUnmappedMCP(s):
return "func_" in s or "field_" in s
def isUnmappedCB(s):
return len(srglib.splitBaseName(s)) < 3
for line in sys.stdin.readlines():
line = line.strip()
tokens = line.split(" ")
kind = tokens[0]
args = tokens[1:]
if kind == "PK:": # package
pass
elif kind == "CL:": # class
inName, outName = args
pass
elif kind == "FD:": # field
inName, outName = args
if not isUnmappedCB(inName) and isUnmappedMCP(outName):
print kind, inName, outName
elif kind == "MD:": # method
inName, inSig, outName, outSig = args
if not isUnmappedCB(inName) and isUnmappedMCP(outName):
print kind, inName, inSig, outName, outSig
else:
pass