代码拉取完成,页面将自动刷新
#coding:utf-8
'''
simple demo of extracting apk permission list
the result will be saved in the "permission_list.csv"
please put all apk file in the "source_apk" folder
'''
from androguard.core.bytecodes.apk import APK
import os
def file_name(file_dir):
file_list = []
for root, dirs, files in os.walk(file_dir):
file_list.append(files)
return file_list[0]
def main():
f = open('permission_list.csv','w')
file_list = file_name('source_apk')
print('processing...')
for apk in file_list:
try:
a = APK('source_apk/' + apk)
b = a.get_permissions()
f.write(apk+',')
for i in b:
f.write(i+',')
f.write('\n')
except:
print(apk+'occured an error!')
f.close()
print('finish...')
if __name__ == "__main__":
main()
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。