-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathbaksmali-modifier.py
78 lines (66 loc) · 2.25 KB
/
baksmali-modifier.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
#!/usr/bin/env python
# Copyright (C) 2012 [email protected]
#
# Licensed under the Apache License, Version 2.0 (the 'License');
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an 'AS IS' BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import sys
import os
from pyparsing import *
InjectedCode = ["nop\n" for i in range(10)]
MethodToken = Literal(".method")
AccessFlag = Literal("public") | \
Literal("private") | \
Literal("protected")| \
Literal("abstract")| \
Literal("static")| \
Literal("constructor")| \
Literal("final")| \
Literal("native") | \
Literal("bridge") | \
Literal("synthetic") | \
Literal("native") | \
Literal("varargs") | \
Literal("declared-synchronized")
JavaType = Word(alphas+"[", alphanums +"_$[;/", min=1)
MethodName = Word(alphas+"$_<", alphanums+"_>$", min=1)
ArgList = JavaType
MethodProtoType = MethodName + Suppress("(") + Optional(ArgList) + Suppress(")") + JavaType
MethodDecl = Suppress(MethodToken) + ZeroOrMore(AccessFlag) + Suppress(MethodProtoType)
def injectnops(filename):
with open(filename, "r") as smalifile:
lines = smalifile.readlines()
modified = []
for index, line in enumerate(lines):
modified.append(line)
if line.startswith(".method"):
try:
flags = list(MethodDecl.parseString(line.strip("\n"),parseAll=True))
except Exception as e:
print line
raise e
if "abstract" not in flags and "native" not in flags:
modified += InjectedCode
with open(filename, "w") as smalifile:
smalifile.writelines(modified)
def run(directory):
for dirpath, dinames, filenames in os.walk(directory):
for filename in filter(lambda x: x.endswith(".smali"), filenames):
injectnops(os.path.join(dirpath, filename))
def usage():
print "%s %s"%(sys.argv[0], sys.argv[1])
print ""
print "inject nops into baksmali files"
if __name__ == "__main__":
if len(sys.argv) != 2:
usage()
else:
run(sys.argv[1])