├── .gitignore ├── README.md ├── agent ├── dyn_use.ts ├── index.ts └── logger.ts ├── package.json └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- 1 | /_agent.js 2 | /node_modules 3 | __handlers__ 4 | .vscode 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mame82/frida-dynamic-hooking/HEAD/README.md -------------------------------------------------------------------------------- /agent/dyn_use.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mame82/frida-dynamic-hooking/HEAD/agent/dyn_use.ts -------------------------------------------------------------------------------- /agent/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mame82/frida-dynamic-hooking/HEAD/agent/index.ts -------------------------------------------------------------------------------- /agent/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mame82/frida-dynamic-hooking/HEAD/agent/logger.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mame82/frida-dynamic-hooking/HEAD/package.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mame82/frida-dynamic-hooking/HEAD/tsconfig.json --------------------------------------------------------------------------------