├── .github ├── dependabot.yml └── workflows │ └── ci.yml ├── .gitignore ├── .vscode └── settings.json ├── Attic ├── LICENSE ├── Makefile ├── README.md ├── bin │ └── r2frida.js ├── deps │ ├── Makefile │ └── frida-git.sh ├── package.json └── src │ ├── hexdump.js │ ├── host.js │ ├── main.js │ ├── r2io-frida.js │ ├── target.js │ └── test.js ├── LICENSE ├── Makefile ├── README.md ├── autogen.sh ├── config.h.acr ├── config.h.w64 ├── config.mk.acr ├── configure ├── configure.acr ├── configure.bat ├── dist ├── build.sh ├── cydia │ ├── CONFIG │ ├── DESCR │ ├── Makefile │ └── deb.mk ├── debian │ ├── CONFIG │ ├── DESCR │ ├── Makefile │ └── deb.mk ├── dockcross ├── docker │ ├── Dockerfile │ ├── Makefile │ ├── dirent.c │ └── stat.c └── macos │ ├── Makefile │ └── make-macos-pkg.sh ├── eslint.config.mjs ├── install.bat ├── ld.script ├── make.bat ├── nowsecure.r2 ├── package.json ├── plugins ├── Makefile ├── cmodule-hello.c ├── codeshare.r2.js ├── echo-log.js ├── example.js ├── filemap.js ├── gnuboy.js ├── hook-urls.js ├── immortal.js ├── inject-exit.js ├── inject-getpid.js ├── libc.js ├── objection │ ├── Makefile │ ├── README.md │ └── index.js ├── qemu.js └── tsexample.ts ├── preconfigure.bat ├── r2frida-compile.1 ├── r2frida-white.png ├── r2frida.1 ├── r2frida.png ├── r2frida.svg ├── renovate.json ├── src ├── agent │ ├── config.ts │ ├── index.ts │ ├── io.ts │ ├── lib │ │ ├── anal.ts │ │ ├── base64.ts │ │ ├── darwin │ │ │ ├── index.ts │ │ │ └── swift.ts │ │ ├── debug │ │ │ ├── breakpoints.ts │ │ │ ├── index.ts │ │ │ ├── interceptor.ts │ │ │ ├── memory.ts │ │ │ ├── stalker.ts │ │ │ ├── system.ts │ │ │ └── trace.ts │ │ ├── disasm.ts │ │ ├── elf │ │ │ ├── elf_h.ts │ │ │ └── index.ts │ │ ├── expr.ts │ │ ├── fs.ts │ │ ├── info │ │ │ ├── classes.ts │ │ │ ├── index.ts │ │ │ └── lookup.ts │ │ ├── java │ │ │ ├── android.ts │ │ │ └── index.ts │ │ ├── r2.ts │ │ ├── search.ts │ │ ├── strings.ts │ │ ├── sys.ts │ │ └── utils.ts │ ├── log.ts │ ├── plugin.ts │ └── r2pipe-frida.ts ├── diagnostics.c ├── diagnostics.h ├── esmtool.inc.c ├── io_frida.c ├── pkgmgr.c ├── r2frida-compile.c └── urimaker.inc.c ├── sys └── release-notes.sh ├── test ├── Makefile ├── bins │ ├── empty.txt │ └── example.js ├── db │ └── extras │ │ ├── compiler │ │ ├── info │ │ ├── settings │ │ └── version └── suite │ ├── index.ts │ └── package.json └── tsconfig.json /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /Attic/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida/HEAD/Attic/LICENSE -------------------------------------------------------------------------------- /Attic/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida/HEAD/Attic/Makefile -------------------------------------------------------------------------------- /Attic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida/HEAD/Attic/README.md -------------------------------------------------------------------------------- /Attic/bin/r2frida.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida/HEAD/Attic/bin/r2frida.js -------------------------------------------------------------------------------- /Attic/deps/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida/HEAD/Attic/deps/Makefile -------------------------------------------------------------------------------- /Attic/deps/frida-git.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida/HEAD/Attic/deps/frida-git.sh -------------------------------------------------------------------------------- /Attic/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida/HEAD/Attic/package.json -------------------------------------------------------------------------------- /Attic/src/hexdump.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida/HEAD/Attic/src/hexdump.js -------------------------------------------------------------------------------- /Attic/src/host.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida/HEAD/Attic/src/host.js -------------------------------------------------------------------------------- /Attic/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida/HEAD/Attic/src/main.js -------------------------------------------------------------------------------- /Attic/src/r2io-frida.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida/HEAD/Attic/src/r2io-frida.js -------------------------------------------------------------------------------- /Attic/src/target.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida/HEAD/Attic/src/target.js -------------------------------------------------------------------------------- /Attic/src/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida/HEAD/Attic/src/test.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida/HEAD/README.md -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida/HEAD/autogen.sh -------------------------------------------------------------------------------- /config.h.acr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida/HEAD/config.h.acr -------------------------------------------------------------------------------- /config.h.w64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida/HEAD/config.h.w64 -------------------------------------------------------------------------------- /config.mk.acr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida/HEAD/config.mk.acr -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida/HEAD/configure -------------------------------------------------------------------------------- /configure.acr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida/HEAD/configure.acr -------------------------------------------------------------------------------- /configure.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida/HEAD/configure.bat -------------------------------------------------------------------------------- /dist/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida/HEAD/dist/build.sh -------------------------------------------------------------------------------- /dist/cydia/CONFIG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida/HEAD/dist/cydia/CONFIG -------------------------------------------------------------------------------- /dist/cydia/DESCR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida/HEAD/dist/cydia/DESCR -------------------------------------------------------------------------------- /dist/cydia/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida/HEAD/dist/cydia/Makefile -------------------------------------------------------------------------------- /dist/cydia/deb.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida/HEAD/dist/cydia/deb.mk -------------------------------------------------------------------------------- /dist/debian/CONFIG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida/HEAD/dist/debian/CONFIG -------------------------------------------------------------------------------- /dist/debian/DESCR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida/HEAD/dist/debian/DESCR -------------------------------------------------------------------------------- /dist/debian/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida/HEAD/dist/debian/Makefile -------------------------------------------------------------------------------- /dist/debian/deb.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida/HEAD/dist/debian/deb.mk -------------------------------------------------------------------------------- /dist/dockcross: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida/HEAD/dist/dockcross -------------------------------------------------------------------------------- /dist/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida/HEAD/dist/docker/Dockerfile -------------------------------------------------------------------------------- /dist/docker/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida/HEAD/dist/docker/Makefile -------------------------------------------------------------------------------- /dist/docker/dirent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida/HEAD/dist/docker/dirent.c -------------------------------------------------------------------------------- /dist/docker/stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida/HEAD/dist/docker/stat.c -------------------------------------------------------------------------------- /dist/macos/Makefile: -------------------------------------------------------------------------------- 1 | all: 2 | $(SHELL) make-macos-pkg.sh* 3 | -------------------------------------------------------------------------------- /dist/macos/make-macos-pkg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida/HEAD/dist/macos/make-macos-pkg.sh -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /install.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida/HEAD/install.bat -------------------------------------------------------------------------------- /ld.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida/HEAD/ld.script -------------------------------------------------------------------------------- /make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida/HEAD/make.bat -------------------------------------------------------------------------------- /nowsecure.r2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida/HEAD/nowsecure.r2 -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida/HEAD/package.json -------------------------------------------------------------------------------- /plugins/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida/HEAD/plugins/Makefile -------------------------------------------------------------------------------- /plugins/cmodule-hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida/HEAD/plugins/cmodule-hello.c -------------------------------------------------------------------------------- /plugins/codeshare.r2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida/HEAD/plugins/codeshare.r2.js -------------------------------------------------------------------------------- /plugins/echo-log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida/HEAD/plugins/echo-log.js -------------------------------------------------------------------------------- /plugins/example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida/HEAD/plugins/example.js -------------------------------------------------------------------------------- /plugins/filemap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida/HEAD/plugins/filemap.js -------------------------------------------------------------------------------- /plugins/gnuboy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida/HEAD/plugins/gnuboy.js -------------------------------------------------------------------------------- /plugins/hook-urls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida/HEAD/plugins/hook-urls.js -------------------------------------------------------------------------------- /plugins/immortal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida/HEAD/plugins/immortal.js -------------------------------------------------------------------------------- /plugins/inject-exit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida/HEAD/plugins/inject-exit.js -------------------------------------------------------------------------------- /plugins/inject-getpid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida/HEAD/plugins/inject-getpid.js -------------------------------------------------------------------------------- /plugins/libc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida/HEAD/plugins/libc.js -------------------------------------------------------------------------------- /plugins/objection/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida/HEAD/plugins/objection/Makefile -------------------------------------------------------------------------------- /plugins/objection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida/HEAD/plugins/objection/README.md -------------------------------------------------------------------------------- /plugins/objection/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida/HEAD/plugins/objection/index.js -------------------------------------------------------------------------------- /plugins/qemu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida/HEAD/plugins/qemu.js -------------------------------------------------------------------------------- /plugins/tsexample.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida/HEAD/plugins/tsexample.ts -------------------------------------------------------------------------------- /preconfigure.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida/HEAD/preconfigure.bat -------------------------------------------------------------------------------- /r2frida-compile.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida/HEAD/r2frida-compile.1 -------------------------------------------------------------------------------- /r2frida-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida/HEAD/r2frida-white.png -------------------------------------------------------------------------------- /r2frida.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida/HEAD/r2frida.1 -------------------------------------------------------------------------------- /r2frida.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida/HEAD/r2frida.png -------------------------------------------------------------------------------- /r2frida.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida/HEAD/r2frida.svg -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida/HEAD/renovate.json -------------------------------------------------------------------------------- /src/agent/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida/HEAD/src/agent/config.ts -------------------------------------------------------------------------------- /src/agent/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida/HEAD/src/agent/index.ts -------------------------------------------------------------------------------- /src/agent/io.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida/HEAD/src/agent/io.ts -------------------------------------------------------------------------------- /src/agent/lib/anal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida/HEAD/src/agent/lib/anal.ts -------------------------------------------------------------------------------- /src/agent/lib/base64.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida/HEAD/src/agent/lib/base64.ts -------------------------------------------------------------------------------- /src/agent/lib/darwin/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida/HEAD/src/agent/lib/darwin/index.ts -------------------------------------------------------------------------------- /src/agent/lib/darwin/swift.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida/HEAD/src/agent/lib/darwin/swift.ts -------------------------------------------------------------------------------- /src/agent/lib/debug/breakpoints.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida/HEAD/src/agent/lib/debug/breakpoints.ts -------------------------------------------------------------------------------- /src/agent/lib/debug/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida/HEAD/src/agent/lib/debug/index.ts -------------------------------------------------------------------------------- /src/agent/lib/debug/interceptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida/HEAD/src/agent/lib/debug/interceptor.ts -------------------------------------------------------------------------------- /src/agent/lib/debug/memory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida/HEAD/src/agent/lib/debug/memory.ts -------------------------------------------------------------------------------- /src/agent/lib/debug/stalker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida/HEAD/src/agent/lib/debug/stalker.ts -------------------------------------------------------------------------------- /src/agent/lib/debug/system.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida/HEAD/src/agent/lib/debug/system.ts -------------------------------------------------------------------------------- /src/agent/lib/debug/trace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida/HEAD/src/agent/lib/debug/trace.ts -------------------------------------------------------------------------------- /src/agent/lib/disasm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida/HEAD/src/agent/lib/disasm.ts -------------------------------------------------------------------------------- /src/agent/lib/elf/elf_h.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida/HEAD/src/agent/lib/elf/elf_h.ts -------------------------------------------------------------------------------- /src/agent/lib/elf/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida/HEAD/src/agent/lib/elf/index.ts -------------------------------------------------------------------------------- /src/agent/lib/expr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida/HEAD/src/agent/lib/expr.ts -------------------------------------------------------------------------------- /src/agent/lib/fs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida/HEAD/src/agent/lib/fs.ts -------------------------------------------------------------------------------- /src/agent/lib/info/classes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida/HEAD/src/agent/lib/info/classes.ts -------------------------------------------------------------------------------- /src/agent/lib/info/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida/HEAD/src/agent/lib/info/index.ts -------------------------------------------------------------------------------- /src/agent/lib/info/lookup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida/HEAD/src/agent/lib/info/lookup.ts -------------------------------------------------------------------------------- /src/agent/lib/java/android.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida/HEAD/src/agent/lib/java/android.ts -------------------------------------------------------------------------------- /src/agent/lib/java/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida/HEAD/src/agent/lib/java/index.ts -------------------------------------------------------------------------------- /src/agent/lib/r2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida/HEAD/src/agent/lib/r2.ts -------------------------------------------------------------------------------- /src/agent/lib/search.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida/HEAD/src/agent/lib/search.ts -------------------------------------------------------------------------------- /src/agent/lib/strings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida/HEAD/src/agent/lib/strings.ts -------------------------------------------------------------------------------- /src/agent/lib/sys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida/HEAD/src/agent/lib/sys.ts -------------------------------------------------------------------------------- /src/agent/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida/HEAD/src/agent/lib/utils.ts -------------------------------------------------------------------------------- /src/agent/log.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida/HEAD/src/agent/log.ts -------------------------------------------------------------------------------- /src/agent/plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida/HEAD/src/agent/plugin.ts -------------------------------------------------------------------------------- /src/agent/r2pipe-frida.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida/HEAD/src/agent/r2pipe-frida.ts -------------------------------------------------------------------------------- /src/diagnostics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida/HEAD/src/diagnostics.c -------------------------------------------------------------------------------- /src/diagnostics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida/HEAD/src/diagnostics.h -------------------------------------------------------------------------------- /src/esmtool.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida/HEAD/src/esmtool.inc.c -------------------------------------------------------------------------------- /src/io_frida.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida/HEAD/src/io_frida.c -------------------------------------------------------------------------------- /src/pkgmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida/HEAD/src/pkgmgr.c -------------------------------------------------------------------------------- /src/r2frida-compile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida/HEAD/src/r2frida-compile.c -------------------------------------------------------------------------------- /src/urimaker.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida/HEAD/src/urimaker.inc.c -------------------------------------------------------------------------------- /sys/release-notes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida/HEAD/sys/release-notes.sh -------------------------------------------------------------------------------- /test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida/HEAD/test/Makefile -------------------------------------------------------------------------------- /test/bins/empty.txt: -------------------------------------------------------------------------------- 1 | nothing 2 | -------------------------------------------------------------------------------- /test/bins/example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida/HEAD/test/bins/example.js -------------------------------------------------------------------------------- /test/db/extras/compiler: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida/HEAD/test/db/extras/compiler -------------------------------------------------------------------------------- /test/db/extras/info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida/HEAD/test/db/extras/info -------------------------------------------------------------------------------- /test/db/extras/settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida/HEAD/test/db/extras/settings -------------------------------------------------------------------------------- /test/db/extras/version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida/HEAD/test/db/extras/version -------------------------------------------------------------------------------- /test/suite/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida/HEAD/test/suite/index.ts -------------------------------------------------------------------------------- /test/suite/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida/HEAD/test/suite/package.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nowsecure/r2frida/HEAD/tsconfig.json --------------------------------------------------------------------------------