├── .cargo └── config.toml ├── .gitattributes ├── .github ├── dependabot.yml └── workflows │ ├── build-linux-to-win.yml │ ├── build-linux.yml │ ├── build-macos.yml │ ├── release-linux.yml │ ├── release-macos.yml │ └── release-windows.yml ├── .gitignore ├── Cargo.toml ├── LICENSE ├── README.md ├── makefile ├── screens └── screen-alpha.png ├── signatures-test └── yara │ ├── faulty.yar │ └── test.yar └── src ├── helpers.rs ├── helpers └── helpers.rs ├── main.rs ├── modules.rs └── modules ├── filesystem_scan.rs └── process_check.rs /.cargo/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo23x0/Loki2/HEAD/.cargo/config.toml -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo23x0/Loki2/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo23x0/Loki2/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build-linux-to-win.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo23x0/Loki2/HEAD/.github/workflows/build-linux-to-win.yml -------------------------------------------------------------------------------- /.github/workflows/build-linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo23x0/Loki2/HEAD/.github/workflows/build-linux.yml -------------------------------------------------------------------------------- /.github/workflows/build-macos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo23x0/Loki2/HEAD/.github/workflows/build-macos.yml -------------------------------------------------------------------------------- /.github/workflows/release-linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo23x0/Loki2/HEAD/.github/workflows/release-linux.yml -------------------------------------------------------------------------------- /.github/workflows/release-macos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo23x0/Loki2/HEAD/.github/workflows/release-macos.yml -------------------------------------------------------------------------------- /.github/workflows/release-windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo23x0/Loki2/HEAD/.github/workflows/release-windows.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo23x0/Loki2/HEAD/.gitignore -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo23x0/Loki2/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo23x0/Loki2/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo23x0/Loki2/HEAD/README.md -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo23x0/Loki2/HEAD/makefile -------------------------------------------------------------------------------- /screens/screen-alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo23x0/Loki2/HEAD/screens/screen-alpha.png -------------------------------------------------------------------------------- /signatures-test/yara/faulty.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo23x0/Loki2/HEAD/signatures-test/yara/faulty.yar -------------------------------------------------------------------------------- /signatures-test/yara/test.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo23x0/Loki2/HEAD/signatures-test/yara/test.yar -------------------------------------------------------------------------------- /src/helpers.rs: -------------------------------------------------------------------------------- 1 | pub mod helpers; -------------------------------------------------------------------------------- /src/helpers/helpers.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo23x0/Loki2/HEAD/src/helpers/helpers.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo23x0/Loki2/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/modules.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo23x0/Loki2/HEAD/src/modules.rs -------------------------------------------------------------------------------- /src/modules/filesystem_scan.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo23x0/Loki2/HEAD/src/modules/filesystem_scan.rs -------------------------------------------------------------------------------- /src/modules/process_check.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neo23x0/Loki2/HEAD/src/modules/process_check.rs --------------------------------------------------------------------------------