├── .github └── workflows │ └── python-publish.yml ├── LICENSE ├── README.md ├── agent ├── .gitignore ├── package-lock.json ├── package.json ├── src │ ├── index.ts │ └── search.ts └── tsconfig.json ├── frida_dexdump ├── __init__.py ├── __main__.py ├── agent │ ├── __init__.py │ └── agent.js └── banner.py ├── makefile ├── requirements.txt ├── screenshot.png └── setup.py /.github/workflows/python-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hluwa/frida-dexdump/HEAD/.github/workflows/python-publish.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hluwa/frida-dexdump/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hluwa/frida-dexdump/HEAD/README.md -------------------------------------------------------------------------------- /agent/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | -------------------------------------------------------------------------------- /agent/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hluwa/frida-dexdump/HEAD/agent/package-lock.json -------------------------------------------------------------------------------- /agent/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hluwa/frida-dexdump/HEAD/agent/package.json -------------------------------------------------------------------------------- /agent/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hluwa/frida-dexdump/HEAD/agent/src/index.ts -------------------------------------------------------------------------------- /agent/src/search.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hluwa/frida-dexdump/HEAD/agent/src/search.ts -------------------------------------------------------------------------------- /agent/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hluwa/frida-dexdump/HEAD/agent/tsconfig.json -------------------------------------------------------------------------------- /frida_dexdump/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frida_dexdump/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hluwa/frida-dexdump/HEAD/frida_dexdump/__main__.py -------------------------------------------------------------------------------- /frida_dexdump/agent/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hluwa/frida-dexdump/HEAD/frida_dexdump/agent/__init__.py -------------------------------------------------------------------------------- /frida_dexdump/agent/agent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hluwa/frida-dexdump/HEAD/frida_dexdump/agent/agent.js -------------------------------------------------------------------------------- /frida_dexdump/banner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hluwa/frida-dexdump/HEAD/frida_dexdump/banner.py -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hluwa/frida-dexdump/HEAD/makefile -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | click 2 | frida-tools 3 | wallbreaker -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hluwa/frida-dexdump/HEAD/screenshot.png -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hluwa/frida-dexdump/HEAD/setup.py --------------------------------------------------------------------------------