├── .github └── workflows │ └── python-publish.yml ├── LICENSE ├── README.md ├── __init__.py ├── agent ├── .gitignore ├── README.md ├── _agent.js ├── package-lock.json ├── package.json ├── src │ ├── classkit.ts │ ├── index.ts │ ├── objectkit.ts │ ├── struct.ts │ └── utils.ts └── tsconfig.json ├── makefile ├── requirements.txt ├── setup.py ├── tests ├── command_tests.py ├── frida_tests.py └── param_tests.py └── wallbreaker ├── __init__.py ├── agent ├── __init__.py └── command │ ├── __init__.py │ └── agent.js ├── connection.py ├── main.py └── utils.py /.github/workflows/python-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hluwa/Wallbreaker/HEAD/.github/workflows/python-publish.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hluwa/Wallbreaker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hluwa/Wallbreaker/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hluwa/Wallbreaker/HEAD/__init__.py -------------------------------------------------------------------------------- /agent/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | -------------------------------------------------------------------------------- /agent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hluwa/Wallbreaker/HEAD/agent/README.md -------------------------------------------------------------------------------- /agent/_agent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hluwa/Wallbreaker/HEAD/agent/_agent.js -------------------------------------------------------------------------------- /agent/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hluwa/Wallbreaker/HEAD/agent/package-lock.json -------------------------------------------------------------------------------- /agent/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hluwa/Wallbreaker/HEAD/agent/package.json -------------------------------------------------------------------------------- /agent/src/classkit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hluwa/Wallbreaker/HEAD/agent/src/classkit.ts -------------------------------------------------------------------------------- /agent/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hluwa/Wallbreaker/HEAD/agent/src/index.ts -------------------------------------------------------------------------------- /agent/src/objectkit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hluwa/Wallbreaker/HEAD/agent/src/objectkit.ts -------------------------------------------------------------------------------- /agent/src/struct.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hluwa/Wallbreaker/HEAD/agent/src/struct.ts -------------------------------------------------------------------------------- /agent/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hluwa/Wallbreaker/HEAD/agent/src/utils.ts -------------------------------------------------------------------------------- /agent/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hluwa/Wallbreaker/HEAD/agent/tsconfig.json -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hluwa/Wallbreaker/HEAD/makefile -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | frida 2 | click -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hluwa/Wallbreaker/HEAD/setup.py -------------------------------------------------------------------------------- /tests/command_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hluwa/Wallbreaker/HEAD/tests/command_tests.py -------------------------------------------------------------------------------- /tests/frida_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hluwa/Wallbreaker/HEAD/tests/frida_tests.py -------------------------------------------------------------------------------- /tests/param_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hluwa/Wallbreaker/HEAD/tests/param_tests.py -------------------------------------------------------------------------------- /wallbreaker/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wallbreaker/agent/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hluwa/Wallbreaker/HEAD/wallbreaker/agent/__init__.py -------------------------------------------------------------------------------- /wallbreaker/agent/command/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hluwa/Wallbreaker/HEAD/wallbreaker/agent/command/__init__.py -------------------------------------------------------------------------------- /wallbreaker/agent/command/agent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hluwa/Wallbreaker/HEAD/wallbreaker/agent/command/agent.js -------------------------------------------------------------------------------- /wallbreaker/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hluwa/Wallbreaker/HEAD/wallbreaker/connection.py -------------------------------------------------------------------------------- /wallbreaker/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hluwa/Wallbreaker/HEAD/wallbreaker/main.py -------------------------------------------------------------------------------- /wallbreaker/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hluwa/Wallbreaker/HEAD/wallbreaker/utils.py --------------------------------------------------------------------------------