用于Android Intent接收器的自动灰盒模糊测试工具
该工具为Android意图接收器提供自动化灰盒模糊测试功能。通过ADB与设备通信,收集覆盖率数据,并基于生成的intent_template.json文件进行分析。项目包含用于覆盖率反馈的AndroidCoverageAgent、分析APK的apk_analyzer模块以及用Rust编写的fuzzer核心。 2025-5-13 10:41:57 Author: github.com(查看原文) 阅读量:21 收藏

This is an automated greybox fuzzer for Intent receivers on Android.

How To Use

cargo run -- --help

Architecture

  Fuzzer                Android Device/Emulator
  ┌───────────┐             ┌──────────────────┐
  │           │ TCP Port    │ App              │
  │ Collects  │ over ADB    │ ┌──────────────┐ │
  │ coverage ◄├─────────────┼►┤Coverage Agent│ │
  │           │             │ ├──────────────┤ │
  │           │             │ │              │ │
  │           │             │ │              │ │
  │           │             │ │              │ │
  │           │             │ │              │ │
  │           │             │ └──────▲───────┘ │
  │           │             │        │         │
  │ Mutates   │             │        │(Intents)│
  │ intents   │Sends Intents├────────┴─────────┤
  └───────────┴────────────►│ Android Activity │
                            │ Manager          │
                            └──────────────────┘

Project Structure

AndroidCoverageAgent is used to instrument apps on-device or on-emulator for coverage feedback.

The apk_analyzer subfolder contains a Kotlin project that uses the jadx API to analyze an apk file and create an intent_template.json file from it.

The root folder . contains the fuzzer written in Rust using libafl to implement the fuzzing loop and uses the generated intent_template.json and adb to communicate with the coverage agent in the Android environment.


文章来源: https://github.com/sslab-gatech/MALintent
如有侵权请联系:admin#unsafe.sh