Android 恶意软件静态分析 - Androguard

问题描述 投票:0回答:0

TypeError Traceback(最后一次调用) /usr/lib/python3.10/codeop.py in call(self, source, filename, symbol) 116 117 def call(self, source, filename, symbol): --> 118 codeob = compile(source, filename, symbol, self.flags, True) 119 用于 _features 中的功能: 120 如果 codeob.co_flags & feature.compiler_flag:

TypeError:模块中缺少必填字段“type_ignores”

示例链接: https://www.exploit-db.com/docs/english/33093-introduction-to-android-malware-analysis.pdf

安卓卫士链接: https://androguard.readthedocs.io/en/latest/intro/gettingstarted.html

我目前正在研究使用 Androguard 进行 Android 恶意软件静态分析。我正在尝试使用以下链接中的示例分析恶意软件,并且我想从文件中检索权限和 API 调用。但是,当我使用如下语法:"a, d, dx = AnalyzeAPK("file path")"时,就会出现上述错误。我该如何解决这个问题?谢谢。

系统: Ubuntu 22.04.1 蟒蛇 3.10.6

android permissions static malware-detection androguard
© www.soinside.com 2019 - 2024. All rights reserved.