├── .gitignore ├── LICENSE ├── README.md ├── agent ├── tsplugin.js └── tsplugin.ts ├── dist ├── index.d.ts ├── index.js ├── infoprovider.d.ts ├── infoprovider.js ├── logger.d.ts └── logger.js ├── example.png ├── package.json ├── src ├── index.ts ├── infoprovider.ts └── logger.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | package-lock.json 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacesrever/frida-tsplugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacesrever/frida-tsplugin/HEAD/README.md -------------------------------------------------------------------------------- /agent/tsplugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacesrever/frida-tsplugin/HEAD/agent/tsplugin.js -------------------------------------------------------------------------------- /agent/tsplugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacesrever/frida-tsplugin/HEAD/agent/tsplugin.ts -------------------------------------------------------------------------------- /dist/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacesrever/frida-tsplugin/HEAD/dist/index.d.ts -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacesrever/frida-tsplugin/HEAD/dist/index.js -------------------------------------------------------------------------------- /dist/infoprovider.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacesrever/frida-tsplugin/HEAD/dist/infoprovider.d.ts -------------------------------------------------------------------------------- /dist/infoprovider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacesrever/frida-tsplugin/HEAD/dist/infoprovider.js -------------------------------------------------------------------------------- /dist/logger.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacesrever/frida-tsplugin/HEAD/dist/logger.d.ts -------------------------------------------------------------------------------- /dist/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacesrever/frida-tsplugin/HEAD/dist/logger.js -------------------------------------------------------------------------------- /example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacesrever/frida-tsplugin/HEAD/example.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacesrever/frida-tsplugin/HEAD/package.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacesrever/frida-tsplugin/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/infoprovider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacesrever/frida-tsplugin/HEAD/src/infoprovider.ts -------------------------------------------------------------------------------- /src/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacesrever/frida-tsplugin/HEAD/src/logger.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacesrever/frida-tsplugin/HEAD/tsconfig.json --------------------------------------------------------------------------------