├── .github └── workflows │ ├── 3.5_0001-Support-building-plugins-without-an-install.patch │ ├── 4.0_0001-Support-building-plugins-without-an-install.patch │ ├── 4.1_0001-Support-building-plugins-without-an-install.patch │ └── build.yml ├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── plugin.jpg ├── preview.gif └── sigscan.cpp /.github/workflows/3.5_0001-Support-building-plugins-without-an-install.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikodot/binja_native_sigscan/HEAD/.github/workflows/3.5_0001-Support-building-plugins-without-an-install.patch -------------------------------------------------------------------------------- /.github/workflows/4.0_0001-Support-building-plugins-without-an-install.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikodot/binja_native_sigscan/HEAD/.github/workflows/4.0_0001-Support-building-plugins-without-an-install.patch -------------------------------------------------------------------------------- /.github/workflows/4.1_0001-Support-building-plugins-without-an-install.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikodot/binja_native_sigscan/HEAD/.github/workflows/4.1_0001-Support-building-plugins-without-an-install.patch -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikodot/binja_native_sigscan/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .git 2 | build 3 | preview.gif -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikodot/binja_native_sigscan/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikodot/binja_native_sigscan/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikodot/binja_native_sigscan/HEAD/README.md -------------------------------------------------------------------------------- /plugin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikodot/binja_native_sigscan/HEAD/plugin.jpg -------------------------------------------------------------------------------- /preview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikodot/binja_native_sigscan/HEAD/preview.gif -------------------------------------------------------------------------------- /sigscan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rikodot/binja_native_sigscan/HEAD/sigscan.cpp --------------------------------------------------------------------------------