-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathrunICCBot.py
38 lines (30 loc) · 1.4 KB
/
runICCBot.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
import os
import sys
import shutil
def analyzeApk(apkPath, resPath, sdk):
id=0
logDir = resPath+"/logs"
outputDir = resPath+"/output"
if(not os.path.exists(logDir)):
os.makedirs(logDir)
if(not os.path.exists(outputDir)):
os.makedirs(outputDir)
if(os.path.exists(apkPath)):
apks = os.listdir(apkPath)
extraArgs = "" #"-noLibCode "#
for apk in apks:
if apk[-4:] ==".apk":
id+=1
print ("\n\n\nThis is the "+str(id)+"th app " +apk)
resFile = logDir+"/"+apk[:-4]+".txt"
if(not os.path.exists(resFile)):
print("java -jar "+jarFile+" -path "+ apkPath +" -name "+apk+" -androidJar "+ sdk +"/platforms "+ extraArgs +" -time 30 -maxPathNumber 100 -client MainClient -outputDir "+outputDir+" >> "+logDir+"/"+apk[:-4]+".txt")
os.system("java -jar "+jarFile+" -path "+ apkPath +" -name "+apk+" -androidJar "+ sdk +"/platforms "+ extraArgs +" -time 30 -maxPathNumber 100 -client MainClient -outputDir "+outputDir+" >> "+logDir+"/"+apk[:-4]+".txt")
if __name__ == '__main__' :
apkPath = sys.argv[1]
resPath = sys.argv[2]
jarFile = "ICCBot.jar"
if not os.path.exists(jarFile):
print("ICCBot.jar not found! Please run \"scripts/mvn.py\" to build ICCBot first!")
sdk = "lib/"
analyzeApk(apkPath, resPath, sdk)