├── LICENSE ├── README.md ├── confg ├── MAKEFILE ├── config.json ├── keyrotator.cpp └── server.js ├── src ├── .ggringtone ├── Boot │ ├── BootkitDefs.h │ ├── BotStartup.h │ ├── DXEHook.c │ ├── DXEHook.h │ ├── Entry.c │ ├── InterruptHijack.c │ ├── InterruptHijack.h │ ├── Loader.c │ ├── Loader.h │ ├── MemTools.c │ ├── MemTools.h │ ├── PatchSMI.c │ └── PatchSMI.h ├── Encryptor │ ├── AESCore.c │ ├── AESCore.h │ ├── CryptoDefs.h │ ├── EncryptFS.c │ ├── EncryptFS.h │ ├── FileMapper.c │ ├── FileMapper.h │ ├── KeyGen.c │ ├── KeyGen.h │ ├── XORPayload.c │ └── XORPayload.h ├── KernelMode │ ├── BotStartup.c │ ├── BotStartup.h │ ├── CommandExec.c │ ├── CommandExec.h │ ├── Keylogger.c │ ├── Keylogger.h │ ├── Makefile │ ├── RemoteControl.c │ ├── RemoteControl.h │ ├── Scheduler.c │ └── Scheduler.h └── Shared │ ├── EFIWrappers.c │ ├── EFIWrappers.h │ ├── Logger.c │ ├── Logger.h │ ├── MemTools.c │ ├── MemTools.h │ ├── SharedDefs.h │ ├── SyscallBridge.c │ ├── SyscallBridge.h │ ├── Utils.c │ └── Utils.h └── syrial.inf /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aitorfirm/BlackIris/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aitorfirm/BlackIris/HEAD/README.md -------------------------------------------------------------------------------- /confg/MAKEFILE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aitorfirm/BlackIris/HEAD/confg/MAKEFILE -------------------------------------------------------------------------------- /confg/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aitorfirm/BlackIris/HEAD/confg/config.json -------------------------------------------------------------------------------- /confg/keyrotator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aitorfirm/BlackIris/HEAD/confg/keyrotator.cpp -------------------------------------------------------------------------------- /confg/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aitorfirm/BlackIris/HEAD/confg/server.js -------------------------------------------------------------------------------- /src/.ggringtone: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/Boot/BootkitDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aitorfirm/BlackIris/HEAD/src/Boot/BootkitDefs.h -------------------------------------------------------------------------------- /src/Boot/BotStartup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aitorfirm/BlackIris/HEAD/src/Boot/BotStartup.h -------------------------------------------------------------------------------- /src/Boot/DXEHook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aitorfirm/BlackIris/HEAD/src/Boot/DXEHook.c -------------------------------------------------------------------------------- /src/Boot/DXEHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aitorfirm/BlackIris/HEAD/src/Boot/DXEHook.h -------------------------------------------------------------------------------- /src/Boot/Entry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aitorfirm/BlackIris/HEAD/src/Boot/Entry.c -------------------------------------------------------------------------------- /src/Boot/InterruptHijack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aitorfirm/BlackIris/HEAD/src/Boot/InterruptHijack.c -------------------------------------------------------------------------------- /src/Boot/InterruptHijack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aitorfirm/BlackIris/HEAD/src/Boot/InterruptHijack.h -------------------------------------------------------------------------------- /src/Boot/Loader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aitorfirm/BlackIris/HEAD/src/Boot/Loader.c -------------------------------------------------------------------------------- /src/Boot/Loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aitorfirm/BlackIris/HEAD/src/Boot/Loader.h -------------------------------------------------------------------------------- /src/Boot/MemTools.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aitorfirm/BlackIris/HEAD/src/Boot/MemTools.c -------------------------------------------------------------------------------- /src/Boot/MemTools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aitorfirm/BlackIris/HEAD/src/Boot/MemTools.h -------------------------------------------------------------------------------- /src/Boot/PatchSMI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aitorfirm/BlackIris/HEAD/src/Boot/PatchSMI.c -------------------------------------------------------------------------------- /src/Boot/PatchSMI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aitorfirm/BlackIris/HEAD/src/Boot/PatchSMI.h -------------------------------------------------------------------------------- /src/Encryptor/AESCore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aitorfirm/BlackIris/HEAD/src/Encryptor/AESCore.c -------------------------------------------------------------------------------- /src/Encryptor/AESCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aitorfirm/BlackIris/HEAD/src/Encryptor/AESCore.h -------------------------------------------------------------------------------- /src/Encryptor/CryptoDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aitorfirm/BlackIris/HEAD/src/Encryptor/CryptoDefs.h -------------------------------------------------------------------------------- /src/Encryptor/EncryptFS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aitorfirm/BlackIris/HEAD/src/Encryptor/EncryptFS.c -------------------------------------------------------------------------------- /src/Encryptor/EncryptFS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aitorfirm/BlackIris/HEAD/src/Encryptor/EncryptFS.h -------------------------------------------------------------------------------- /src/Encryptor/FileMapper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aitorfirm/BlackIris/HEAD/src/Encryptor/FileMapper.c -------------------------------------------------------------------------------- /src/Encryptor/FileMapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aitorfirm/BlackIris/HEAD/src/Encryptor/FileMapper.h -------------------------------------------------------------------------------- /src/Encryptor/KeyGen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aitorfirm/BlackIris/HEAD/src/Encryptor/KeyGen.c -------------------------------------------------------------------------------- /src/Encryptor/KeyGen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aitorfirm/BlackIris/HEAD/src/Encryptor/KeyGen.h -------------------------------------------------------------------------------- /src/Encryptor/XORPayload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aitorfirm/BlackIris/HEAD/src/Encryptor/XORPayload.c -------------------------------------------------------------------------------- /src/Encryptor/XORPayload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aitorfirm/BlackIris/HEAD/src/Encryptor/XORPayload.h -------------------------------------------------------------------------------- /src/KernelMode/BotStartup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aitorfirm/BlackIris/HEAD/src/KernelMode/BotStartup.c -------------------------------------------------------------------------------- /src/KernelMode/BotStartup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aitorfirm/BlackIris/HEAD/src/KernelMode/BotStartup.h -------------------------------------------------------------------------------- /src/KernelMode/CommandExec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aitorfirm/BlackIris/HEAD/src/KernelMode/CommandExec.c -------------------------------------------------------------------------------- /src/KernelMode/CommandExec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aitorfirm/BlackIris/HEAD/src/KernelMode/CommandExec.h -------------------------------------------------------------------------------- /src/KernelMode/Keylogger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aitorfirm/BlackIris/HEAD/src/KernelMode/Keylogger.c -------------------------------------------------------------------------------- /src/KernelMode/Keylogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aitorfirm/BlackIris/HEAD/src/KernelMode/Keylogger.h -------------------------------------------------------------------------------- /src/KernelMode/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aitorfirm/BlackIris/HEAD/src/KernelMode/Makefile -------------------------------------------------------------------------------- /src/KernelMode/RemoteControl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aitorfirm/BlackIris/HEAD/src/KernelMode/RemoteControl.c -------------------------------------------------------------------------------- /src/KernelMode/RemoteControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aitorfirm/BlackIris/HEAD/src/KernelMode/RemoteControl.h -------------------------------------------------------------------------------- /src/KernelMode/Scheduler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aitorfirm/BlackIris/HEAD/src/KernelMode/Scheduler.c -------------------------------------------------------------------------------- /src/KernelMode/Scheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aitorfirm/BlackIris/HEAD/src/KernelMode/Scheduler.h -------------------------------------------------------------------------------- /src/Shared/EFIWrappers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aitorfirm/BlackIris/HEAD/src/Shared/EFIWrappers.c -------------------------------------------------------------------------------- /src/Shared/EFIWrappers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aitorfirm/BlackIris/HEAD/src/Shared/EFIWrappers.h -------------------------------------------------------------------------------- /src/Shared/Logger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aitorfirm/BlackIris/HEAD/src/Shared/Logger.c -------------------------------------------------------------------------------- /src/Shared/Logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aitorfirm/BlackIris/HEAD/src/Shared/Logger.h -------------------------------------------------------------------------------- /src/Shared/MemTools.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aitorfirm/BlackIris/HEAD/src/Shared/MemTools.c -------------------------------------------------------------------------------- /src/Shared/MemTools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aitorfirm/BlackIris/HEAD/src/Shared/MemTools.h -------------------------------------------------------------------------------- /src/Shared/SharedDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aitorfirm/BlackIris/HEAD/src/Shared/SharedDefs.h -------------------------------------------------------------------------------- /src/Shared/SyscallBridge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aitorfirm/BlackIris/HEAD/src/Shared/SyscallBridge.c -------------------------------------------------------------------------------- /src/Shared/SyscallBridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aitorfirm/BlackIris/HEAD/src/Shared/SyscallBridge.h -------------------------------------------------------------------------------- /src/Shared/Utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aitorfirm/BlackIris/HEAD/src/Shared/Utils.c -------------------------------------------------------------------------------- /src/Shared/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aitorfirm/BlackIris/HEAD/src/Shared/Utils.h -------------------------------------------------------------------------------- /syrial.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aitorfirm/BlackIris/HEAD/syrial.inf --------------------------------------------------------------------------------