Wallbreaker icon indicating copy to clipboard operation
Wallbreaker copied to clipboard

help you understand java memory world.(using private APIs in frida)

Wallbreaker

help to understand java memory world.

What?

Wallbreaker is a tool based on Frida to help analyze android memory. Now, you can run it in objection or interactive python(ipython).

Features

  1. ClassSearch: search class by pattern.
  2. ClassDump: quick view class structure.
  3. ObjectSearch: search instance by class.
  4. ObjectDump: quick view the internal data of an instance.
  5. ......

Usage

objection

  1. clone this repo to your plugins folder, eg:

    git clone https://github.com/Simp1er/Wallbreaker ~/.objection/plugins/Wallbreaker

  2. start objection with -P or --plugin-folder your plugins folder, eg:

    objection -g com.app.name explore -P ~/.objection/plugins

  3. run command:
    1. plugin wallbreaker classsearch <pattern>
    2. plugin wallbreaker classdump <classname> [--fullname]
    3. plugin wallbreaker objectsearch <classname>
    4. plugin wallbreaker objectdump <handle> [--fullname]

demo video

asciicast

ipython

...