├── .gitignore ├── .npmignore ├── README.md ├── index.ts ├── lib └── thread-stalker.ts ├── package.json └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | dist/ 3 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | lib/ 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvarofe/frida-stalker-thread/HEAD/README.md -------------------------------------------------------------------------------- /index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvarofe/frida-stalker-thread/HEAD/index.ts -------------------------------------------------------------------------------- /lib/thread-stalker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvarofe/frida-stalker-thread/HEAD/lib/thread-stalker.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvarofe/frida-stalker-thread/HEAD/package.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvarofe/frida-stalker-thread/HEAD/tsconfig.json --------------------------------------------------------------------------------