fridump: A universal memory dumper using Frida
Fridump
Fridump (v0.1) is an open source memory dumping tool, primarily aimed to penetration testers and developers. Fridump is using the Frida framework to dump accessible memory addresses from any platform supported. It can be used from a Windows, Linux or Mac OS X system to dump the memory of an iOS, Android or Windows application.
Installation
To use fridump you need to have frida installed on your python environment and frida-server on the device you are trying to dump the memory from. The easiest way to install frida on your python is using pip:
pip install frida
More information on how to install Frida can be found here
For iOS, installation instructions can be found here.
For Android, installation instructions can be found here.
Note: On Android devices, make sure that the frida-server binary is running as root!
git clone https://github.com/Nightbringer21/fridump.git
Usage
To find the name of a local process, you can use:
frida-ps
For a process that is running on a USB connected device, you can use:
frida-ps -U
Examples:
More examples can be found here