├── .gitignore ├── LICENSE ├── README.md ├── lib ├── callback.ts └── index.ts ├── package.json └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- 1 | /dist/ 2 | /node_modules/ 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/frida-syscall-interceptor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/frida-syscall-interceptor/HEAD/README.md -------------------------------------------------------------------------------- /lib/callback.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/frida-syscall-interceptor/HEAD/lib/callback.ts -------------------------------------------------------------------------------- /lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/frida-syscall-interceptor/HEAD/lib/index.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/frida-syscall-interceptor/HEAD/package.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/frida-syscall-interceptor/HEAD/tsconfig.json --------------------------------------------------------------------------------