├── .editorconfig ├── .gitignore ├── LICENSE.md ├── README.md ├── examples └── basic │ ├── index.js │ └── inject │ ├── index.js │ └── lib │ └── math.js ├── package.json ├── src ├── compiler.js ├── debloat.js └── index.js └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freehuntx/frida-inject/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freehuntx/frida-inject/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freehuntx/frida-inject/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freehuntx/frida-inject/HEAD/README.md -------------------------------------------------------------------------------- /examples/basic/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freehuntx/frida-inject/HEAD/examples/basic/index.js -------------------------------------------------------------------------------- /examples/basic/inject/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freehuntx/frida-inject/HEAD/examples/basic/inject/index.js -------------------------------------------------------------------------------- /examples/basic/inject/lib/math.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freehuntx/frida-inject/HEAD/examples/basic/inject/lib/math.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freehuntx/frida-inject/HEAD/package.json -------------------------------------------------------------------------------- /src/compiler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freehuntx/frida-inject/HEAD/src/compiler.js -------------------------------------------------------------------------------- /src/debloat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freehuntx/frida-inject/HEAD/src/debloat.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freehuntx/frida-inject/HEAD/src/index.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freehuntx/frida-inject/HEAD/yarn.lock --------------------------------------------------------------------------------