├── .gitignore ├── LICENSE.md ├── README.md ├── example ├── .babelrc ├── LICENSE.md ├── README.md ├── agent │ └── index.ts ├── att.py ├── package.json └── tsconfig.json ├── lib └── index.ts ├── package.json └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iGio90/frida-onload/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iGio90/frida-onload/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iGio90/frida-onload/HEAD/README.md -------------------------------------------------------------------------------- /example/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iGio90/frida-onload/HEAD/example/.babelrc -------------------------------------------------------------------------------- /example/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iGio90/frida-onload/HEAD/example/LICENSE.md -------------------------------------------------------------------------------- /example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iGio90/frida-onload/HEAD/example/README.md -------------------------------------------------------------------------------- /example/agent/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iGio90/frida-onload/HEAD/example/agent/index.ts -------------------------------------------------------------------------------- /example/att.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iGio90/frida-onload/HEAD/example/att.py -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iGio90/frida-onload/HEAD/example/package.json -------------------------------------------------------------------------------- /example/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iGio90/frida-onload/HEAD/example/tsconfig.json -------------------------------------------------------------------------------- /lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iGio90/frida-onload/HEAD/lib/index.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iGio90/frida-onload/HEAD/package.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iGio90/frida-onload/HEAD/tsconfig.json --------------------------------------------------------------------------------