├── .gitignore ├── LICENSE ├── README.md ├── agent ├── android.ts ├── cm_include │ ├── glib.h │ ├── gum │ │ ├── gumdefs.h │ │ ├── guminterceptor.h │ │ ├── gummemory.h │ │ ├── gummetalarray.h │ │ ├── gummetalhash.h │ │ ├── gummodulemap.h │ │ ├── gumprocess.h │ │ ├── gumspinlock.h │ │ ├── gumstalker.h │ │ └── gumtls.h │ ├── inttypes.h │ ├── json-glib │ │ └── json-glib.h │ ├── stdint.h │ ├── stdio.h │ ├── stdlib.h │ └── string.h ├── dist │ ├── android.d.ts │ ├── android.js │ ├── android.js.map │ ├── il2cpp │ │ ├── api.d.ts │ │ ├── api.js │ │ ├── api.js.map │ │ ├── index.d.ts │ │ ├── index.js │ │ └── index.js.map │ ├── index.d.ts │ ├── index.js │ ├── index.js.map │ ├── linux.d.ts │ ├── linux.js │ ├── linux.js.map │ ├── native.d.ts │ ├── native.js │ ├── native.js.map │ ├── package.json │ ├── ssl.d.ts │ ├── ssl.js │ ├── ssl.js.map │ ├── syscall.d.ts │ ├── syscall.js │ ├── syscall.js.map │ ├── tsplugin.d.ts │ ├── tsplugin.js │ ├── tsplugin.js.map │ ├── windows.d.ts │ ├── windows.js │ └── windows.js.map ├── il2cpp │ ├── api.ts │ └── index.ts ├── index.ts ├── linux.ts ├── native.ts ├── package.json ├── ssl.ts ├── syscall.ts ├── tsconfig.json ├── tsplugin.ts └── windows.ts ├── definecmd.jpg ├── dist ├── easy_frida.d.ts ├── easy_frida.js ├── easy_frida.js.map ├── frida_repl.d.ts ├── frida_repl.js └── frida_repl.js.map ├── gadget ├── gadget-loader.cpp ├── gadget-loader.h ├── nlohmann │ └── json.hpp └── readme.md ├── injector_template ├── agent │ ├── main.ts │ └── tsconfig.json └── injector.js ├── interact.jpg ├── package.json ├── repl.jpg ├── scripts └── create-injector.cjs ├── src ├── easy_frida.ts └── frida_repl.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacesrever/easy-frida/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacesrever/easy-frida/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacesrever/easy-frida/HEAD/README.md -------------------------------------------------------------------------------- /agent/android.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacesrever/easy-frida/HEAD/agent/android.ts -------------------------------------------------------------------------------- /agent/cm_include/glib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacesrever/easy-frida/HEAD/agent/cm_include/glib.h -------------------------------------------------------------------------------- /agent/cm_include/gum/gumdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacesrever/easy-frida/HEAD/agent/cm_include/gum/gumdefs.h -------------------------------------------------------------------------------- /agent/cm_include/gum/guminterceptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacesrever/easy-frida/HEAD/agent/cm_include/gum/guminterceptor.h -------------------------------------------------------------------------------- /agent/cm_include/gum/gummemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacesrever/easy-frida/HEAD/agent/cm_include/gum/gummemory.h -------------------------------------------------------------------------------- /agent/cm_include/gum/gummetalarray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacesrever/easy-frida/HEAD/agent/cm_include/gum/gummetalarray.h -------------------------------------------------------------------------------- /agent/cm_include/gum/gummetalhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacesrever/easy-frida/HEAD/agent/cm_include/gum/gummetalhash.h -------------------------------------------------------------------------------- /agent/cm_include/gum/gummodulemap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacesrever/easy-frida/HEAD/agent/cm_include/gum/gummodulemap.h -------------------------------------------------------------------------------- /agent/cm_include/gum/gumprocess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacesrever/easy-frida/HEAD/agent/cm_include/gum/gumprocess.h -------------------------------------------------------------------------------- /agent/cm_include/gum/gumspinlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacesrever/easy-frida/HEAD/agent/cm_include/gum/gumspinlock.h -------------------------------------------------------------------------------- /agent/cm_include/gum/gumstalker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacesrever/easy-frida/HEAD/agent/cm_include/gum/gumstalker.h -------------------------------------------------------------------------------- /agent/cm_include/gum/gumtls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacesrever/easy-frida/HEAD/agent/cm_include/gum/gumtls.h -------------------------------------------------------------------------------- /agent/cm_include/inttypes.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /agent/cm_include/json-glib/json-glib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacesrever/easy-frida/HEAD/agent/cm_include/json-glib/json-glib.h -------------------------------------------------------------------------------- /agent/cm_include/stdint.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /agent/cm_include/stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacesrever/easy-frida/HEAD/agent/cm_include/stdio.h -------------------------------------------------------------------------------- /agent/cm_include/stdlib.h: -------------------------------------------------------------------------------- 1 | /* Empty for now. */ 2 | -------------------------------------------------------------------------------- /agent/cm_include/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacesrever/easy-frida/HEAD/agent/cm_include/string.h -------------------------------------------------------------------------------- /agent/dist/android.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacesrever/easy-frida/HEAD/agent/dist/android.d.ts -------------------------------------------------------------------------------- /agent/dist/android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacesrever/easy-frida/HEAD/agent/dist/android.js -------------------------------------------------------------------------------- /agent/dist/android.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacesrever/easy-frida/HEAD/agent/dist/android.js.map -------------------------------------------------------------------------------- /agent/dist/il2cpp/api.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacesrever/easy-frida/HEAD/agent/dist/il2cpp/api.d.ts -------------------------------------------------------------------------------- /agent/dist/il2cpp/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacesrever/easy-frida/HEAD/agent/dist/il2cpp/api.js -------------------------------------------------------------------------------- /agent/dist/il2cpp/api.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacesrever/easy-frida/HEAD/agent/dist/il2cpp/api.js.map -------------------------------------------------------------------------------- /agent/dist/il2cpp/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacesrever/easy-frida/HEAD/agent/dist/il2cpp/index.d.ts -------------------------------------------------------------------------------- /agent/dist/il2cpp/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacesrever/easy-frida/HEAD/agent/dist/il2cpp/index.js -------------------------------------------------------------------------------- /agent/dist/il2cpp/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacesrever/easy-frida/HEAD/agent/dist/il2cpp/index.js.map -------------------------------------------------------------------------------- /agent/dist/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacesrever/easy-frida/HEAD/agent/dist/index.d.ts -------------------------------------------------------------------------------- /agent/dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacesrever/easy-frida/HEAD/agent/dist/index.js -------------------------------------------------------------------------------- /agent/dist/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacesrever/easy-frida/HEAD/agent/dist/index.js.map -------------------------------------------------------------------------------- /agent/dist/linux.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacesrever/easy-frida/HEAD/agent/dist/linux.d.ts -------------------------------------------------------------------------------- /agent/dist/linux.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacesrever/easy-frida/HEAD/agent/dist/linux.js -------------------------------------------------------------------------------- /agent/dist/linux.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacesrever/easy-frida/HEAD/agent/dist/linux.js.map -------------------------------------------------------------------------------- /agent/dist/native.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacesrever/easy-frida/HEAD/agent/dist/native.d.ts -------------------------------------------------------------------------------- /agent/dist/native.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacesrever/easy-frida/HEAD/agent/dist/native.js -------------------------------------------------------------------------------- /agent/dist/native.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacesrever/easy-frida/HEAD/agent/dist/native.js.map -------------------------------------------------------------------------------- /agent/dist/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacesrever/easy-frida/HEAD/agent/dist/package.json -------------------------------------------------------------------------------- /agent/dist/ssl.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacesrever/easy-frida/HEAD/agent/dist/ssl.d.ts -------------------------------------------------------------------------------- /agent/dist/ssl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacesrever/easy-frida/HEAD/agent/dist/ssl.js -------------------------------------------------------------------------------- /agent/dist/ssl.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacesrever/easy-frida/HEAD/agent/dist/ssl.js.map -------------------------------------------------------------------------------- /agent/dist/syscall.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacesrever/easy-frida/HEAD/agent/dist/syscall.d.ts -------------------------------------------------------------------------------- /agent/dist/syscall.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacesrever/easy-frida/HEAD/agent/dist/syscall.js -------------------------------------------------------------------------------- /agent/dist/syscall.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacesrever/easy-frida/HEAD/agent/dist/syscall.js.map -------------------------------------------------------------------------------- /agent/dist/tsplugin.d.ts: -------------------------------------------------------------------------------- 1 | export declare function enable(listenPort?: number): void; 2 | -------------------------------------------------------------------------------- /agent/dist/tsplugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacesrever/easy-frida/HEAD/agent/dist/tsplugin.js -------------------------------------------------------------------------------- /agent/dist/tsplugin.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacesrever/easy-frida/HEAD/agent/dist/tsplugin.js.map -------------------------------------------------------------------------------- /agent/dist/windows.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /agent/dist/windows.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacesrever/easy-frida/HEAD/agent/dist/windows.js -------------------------------------------------------------------------------- /agent/dist/windows.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacesrever/easy-frida/HEAD/agent/dist/windows.js.map -------------------------------------------------------------------------------- /agent/il2cpp/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacesrever/easy-frida/HEAD/agent/il2cpp/api.ts -------------------------------------------------------------------------------- /agent/il2cpp/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacesrever/easy-frida/HEAD/agent/il2cpp/index.ts -------------------------------------------------------------------------------- /agent/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacesrever/easy-frida/HEAD/agent/index.ts -------------------------------------------------------------------------------- /agent/linux.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacesrever/easy-frida/HEAD/agent/linux.ts -------------------------------------------------------------------------------- /agent/native.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacesrever/easy-frida/HEAD/agent/native.ts -------------------------------------------------------------------------------- /agent/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacesrever/easy-frida/HEAD/agent/package.json -------------------------------------------------------------------------------- /agent/ssl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacesrever/easy-frida/HEAD/agent/ssl.ts -------------------------------------------------------------------------------- /agent/syscall.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacesrever/easy-frida/HEAD/agent/syscall.ts -------------------------------------------------------------------------------- /agent/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacesrever/easy-frida/HEAD/agent/tsconfig.json -------------------------------------------------------------------------------- /agent/tsplugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacesrever/easy-frida/HEAD/agent/tsplugin.ts -------------------------------------------------------------------------------- /agent/windows.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacesrever/easy-frida/HEAD/agent/windows.ts -------------------------------------------------------------------------------- /definecmd.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacesrever/easy-frida/HEAD/definecmd.jpg -------------------------------------------------------------------------------- /dist/easy_frida.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacesrever/easy-frida/HEAD/dist/easy_frida.d.ts -------------------------------------------------------------------------------- /dist/easy_frida.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacesrever/easy-frida/HEAD/dist/easy_frida.js -------------------------------------------------------------------------------- /dist/easy_frida.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacesrever/easy-frida/HEAD/dist/easy_frida.js.map -------------------------------------------------------------------------------- /dist/frida_repl.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacesrever/easy-frida/HEAD/dist/frida_repl.d.ts -------------------------------------------------------------------------------- /dist/frida_repl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacesrever/easy-frida/HEAD/dist/frida_repl.js -------------------------------------------------------------------------------- /dist/frida_repl.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacesrever/easy-frida/HEAD/dist/frida_repl.js.map -------------------------------------------------------------------------------- /gadget/gadget-loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacesrever/easy-frida/HEAD/gadget/gadget-loader.cpp -------------------------------------------------------------------------------- /gadget/gadget-loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacesrever/easy-frida/HEAD/gadget/gadget-loader.h -------------------------------------------------------------------------------- /gadget/nlohmann/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacesrever/easy-frida/HEAD/gadget/nlohmann/json.hpp -------------------------------------------------------------------------------- /gadget/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacesrever/easy-frida/HEAD/gadget/readme.md -------------------------------------------------------------------------------- /injector_template/agent/main.ts: -------------------------------------------------------------------------------- 1 | import 'fridalib'; 2 | 3 | -------------------------------------------------------------------------------- /injector_template/agent/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacesrever/easy-frida/HEAD/injector_template/agent/tsconfig.json -------------------------------------------------------------------------------- /injector_template/injector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacesrever/easy-frida/HEAD/injector_template/injector.js -------------------------------------------------------------------------------- /interact.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacesrever/easy-frida/HEAD/interact.jpg -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacesrever/easy-frida/HEAD/package.json -------------------------------------------------------------------------------- /repl.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacesrever/easy-frida/HEAD/repl.jpg -------------------------------------------------------------------------------- /scripts/create-injector.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacesrever/easy-frida/HEAD/scripts/create-injector.cjs -------------------------------------------------------------------------------- /src/easy_frida.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacesrever/easy-frida/HEAD/src/easy_frida.ts -------------------------------------------------------------------------------- /src/frida_repl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacesrever/easy-frida/HEAD/src/frida_repl.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tacesrever/easy-frida/HEAD/tsconfig.json --------------------------------------------------------------------------------