Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hluwa/FRIDA-DEXDump
A frida tool to dump dex in memory to support security engineers analyzing malware.
https://github.com/hluwa/FRIDA-DEXDump
Last synced: 18 days ago
JSON representation
A frida tool to dump dex in memory to support security engineers analyzing malware.
- Host: GitHub
- URL: https://github.com/hluwa/FRIDA-DEXDump
- Owner: hluwa
- License: gpl-3.0
- Archived: true
- Created: 2020-01-07T12:36:10.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2023-03-04T02:59:20.000Z (over 1 year ago)
- Last Synced: 2024-09-26T23:22:27.255Z (about 2 months ago)
- Language: Python
- Homepage:
- Size: 3.32 MB
- Stars: 3,950
- Watchers: 68
- Forks: 894
- Open Issues: 33
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# FRIDA-DEXDump
`frida-dexdump` is a frida tool to find and dump dex in memory to support security engineers in analyzing malware.
## Make Jetbrains Great Again
## Features
1. Support fuzzy search broken header dex(deep search mode).
2. Compatible with all android version(frida supported).
3. One click installation, without modifying the system, easy to deploy and use.## Installation
```
pip3 install frida-dexdump
```## Usage
CLI arguments base on [frida-tools](https://github.com/frida/frida-tools), you can quickly dump the foreground application like this:
```
frida-dexdump -FU
```Or specify and spawn app like this:
```
frida-dexdump -U -f com.app.pkgname
```Additionally, you can see in `-h` that the new options provided by frida-dexdump are:
```
-o OUTPUT, --output OUTPUT Output folder path, default is './/'.
-d, --deep-search Enable deep search mode.
--sleep SLEEP Waiting times for start, spawn mode default is 5s.
```When using, I suggest using the `-d, --deep-search` option, which may take more time, but the results will be more complete.
![screenshot](screenshot.png)
## Build and develop
```
make
```### Requires
See [requirements.txt](https://github.com/hluwa/FRIDA-DEXDump/blob/master/requirements.txt)
## Internals
[《深入 FRIDA-DEXDump 中的矛与盾》](https://mp.weixin.qq.com/s/n2XHGhshTmvt2FhxyFfoMA)