美文网首页
androguard 隐私调用方法分析,分析使用了哪些隐私政策权

androguard 隐私调用方法分析,分析使用了哪些隐私政策权

作者: Nebula995 | 来源:发表于2021-08-13 14:58 被阅读0次

通过androguard分析获取如MAC地址,设备ID,IMEI信息等 代码在哪些地方被调用了

环境

python
https://www.python.org
pycharm
https://www.jetbrains.com/pycharm/download/
androguard
https://androguard.readthedocs.io/en/latest/

安装

pip install -U androguard
#启动androguard
#: androguard analyze
# 加载apk
 a, d, dx = AnalyzeAPK("xxxxx.apk")
# import AnalyzeAPK 
from androguard.misc import AnalyzeAPK
# 循环遍历
 for meth in dx.classes['Ljava/net/NetworkInterface;'].get_methods():
            print("\nusage of method {}\n".format(meth.name))
            # 拿到改函数的引用函数
            for _, call, _ in meth.get_xref_from():
            print("usage of call {} {}".format(call.class_name,call.name))
 
#输出结果
usage of method getMacAddress
usage of call Lcom/meizu/cloud/pushsdk/base/c; b
usage of call Lcom/alipay/security/mobile/module/b/b; k
usage of call Lcom/baidu/location/e/h; r
usage of call Lcom/umeng/commonsdk/utils/UMUtils; getMac
usage of call Lcom/meizu/cloud/pushsdk/util/MzSystemUtils; getWifiMac
usage of call Lcom/tencent/smtt/utils/b; f
usage of call Lcom/tencent/a/a/a/a/h; b
usage of call Lcom/baidu/location/a/c; a
usage of call Lcom/umeng/commonsdk/statistics/common/DeviceConfig; getMacBySystemInterface
usage of call Lcom/baidu/lbsapi/auth/b; d
usage of call Lcom/igexin/push/core/e; e
usage of call Lcom/alipay/sdk/util/a; <init>
usage of call Lcom/tencent/wxop/stat/common/r; b
usage of call Lcom/baidu/lbsapi/auth/b; d
usage of call Lcom/loc/p; m

待完善
感谢【https://blog.csdn.net/m0_46622598/article/details/118854019

相关文章

  • androguard 隐私调用方法分析,分析使用了哪些隐私政策权

    通过androguard分析获取如MAC地址,设备ID,IMEI信息等 代码在哪些地方被调用了 环境 python...

  • 【a1数据分析】隐私政策

    [a1数据分析]APP隐私政策 「a1数据分析」尊重并保护所有使用服务用户的个人隐私权。为了给您提供更准确、更有个...

  • 《乐嗨啤酒屋-用户隐私政策》

    为保障您的隐私权,您在同意《用户隐私政策》之时,即视为您已经同意本隐私权政策全部内容。本隐私权政策属于《用户注册协...

  • 隐私政策

    隐私权政策 ...

  • 萌果消除大作战 Android

    隐私权政策

  • 隐私政策

    隐私政策 隐私权政策 更新日期:2018年5月11日 如果...

  • Echosite配置工具隐私政策

    隐私政策 本应用尊重并保护所有使用服务用户的个人隐私权,不会收集任何隐私信息。本应用会不时更新本隐私权政策。 您在...

  • 隐私政策前言

    我们隐私政策尊重并保护所有使用服务用户的个人隐私权。为了给您提供更准确、更有个性化的服务,隐私政策会按照本隐私权政...

  • 隐私政策

    我们隐私政策尊重并保护所有使用服务用户的个人隐私权。为了给您提供更准确、更有个性化的服务,隐私政策会按照本隐私权政...

  • 《吐司工具》隐私政策

    我们隐私政策尊重并保护所有使用服务用户的个人隐私权。为了给您提供更准确、更有个性化的服务,隐私政策会按照本隐私权政...

网友评论

      本文标题:androguard 隐私调用方法分析,分析使用了哪些隐私政策权

      本文链接:https://www.haomeiwen.com/subject/ayndbltx.html