├── .gitignore ├── HashCalculator ├── .gitignore ├── HashCalculator.c ├── HashCalculator.h ├── HashCalculator.vcxproj ├── HashCalculator.vcxproj.filters └── HashCalculator.vcxproj.user ├── Ldr.sln ├── Ldr ├── Ldr.vcxproj ├── Ldr.vcxproj.filters ├── Ldr.vcxproj.user ├── include │ ├── Config.h │ ├── Ldr.h │ ├── common │ │ ├── Debug.h │ │ ├── Defines.h │ │ ├── Macros.h │ │ └── phnt.h │ ├── core │ │ ├── Hash.h │ │ ├── IatCamo.h │ │ ├── Memory.h │ │ ├── MiniStd.h │ │ ├── Payload.h │ │ ├── Runtime.h │ │ ├── SysNative.h │ │ ├── Syscalls.h │ │ └── Win32.h │ ├── crypt │ │ ├── AesCrypt.h │ │ ├── XChaCha20Crypt.h │ │ └── XorCrypt.h │ └── exec │ │ └── Execute.h ├── scripts │ ├── Aes256XCrypt.go │ ├── aes256cbc.py │ ├── xchacha20.py │ └── xor.py └── src │ ├── Ldr.c │ ├── asm │ └── Syscall.x64.masm │ ├── common │ └── Debug.c │ ├── core │ ├── Hash.c │ ├── Memory.c │ ├── MiniStd.c │ ├── Payload.c │ ├── Runtime.c │ ├── SysNative.c │ ├── Syscalls.c │ └── Win32.c │ ├── crypt │ ├── AesCrypt.c │ ├── XChaCha20Crypt.c │ └── XorCrypt.c │ ├── exec │ └── Execute.c │ └── main │ ├── MainDLL.c │ ├── MainEXE.c │ └── MainXLL.c ├── README.md └── hellbunny_icon.webp /.gitignore: -------------------------------------------------------------------------------- 1 | .vs/ 2 | build/ -------------------------------------------------------------------------------- /HashCalculator/.gitignore: -------------------------------------------------------------------------------- 1 | x64/ -------------------------------------------------------------------------------- /HashCalculator/HashCalculator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voidvxvi/HellBunny/HEAD/HashCalculator/HashCalculator.c -------------------------------------------------------------------------------- /HashCalculator/HashCalculator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voidvxvi/HellBunny/HEAD/HashCalculator/HashCalculator.h -------------------------------------------------------------------------------- /HashCalculator/HashCalculator.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voidvxvi/HellBunny/HEAD/HashCalculator/HashCalculator.vcxproj -------------------------------------------------------------------------------- /HashCalculator/HashCalculator.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voidvxvi/HellBunny/HEAD/HashCalculator/HashCalculator.vcxproj.filters -------------------------------------------------------------------------------- /HashCalculator/HashCalculator.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voidvxvi/HellBunny/HEAD/HashCalculator/HashCalculator.vcxproj.user -------------------------------------------------------------------------------- /Ldr.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voidvxvi/HellBunny/HEAD/Ldr.sln -------------------------------------------------------------------------------- /Ldr/Ldr.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voidvxvi/HellBunny/HEAD/Ldr/Ldr.vcxproj -------------------------------------------------------------------------------- /Ldr/Ldr.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voidvxvi/HellBunny/HEAD/Ldr/Ldr.vcxproj.filters -------------------------------------------------------------------------------- /Ldr/Ldr.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voidvxvi/HellBunny/HEAD/Ldr/Ldr.vcxproj.user -------------------------------------------------------------------------------- /Ldr/include/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voidvxvi/HellBunny/HEAD/Ldr/include/Config.h -------------------------------------------------------------------------------- /Ldr/include/Ldr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voidvxvi/HellBunny/HEAD/Ldr/include/Ldr.h -------------------------------------------------------------------------------- /Ldr/include/common/Debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voidvxvi/HellBunny/HEAD/Ldr/include/common/Debug.h -------------------------------------------------------------------------------- /Ldr/include/common/Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voidvxvi/HellBunny/HEAD/Ldr/include/common/Defines.h -------------------------------------------------------------------------------- /Ldr/include/common/Macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voidvxvi/HellBunny/HEAD/Ldr/include/common/Macros.h -------------------------------------------------------------------------------- /Ldr/include/common/phnt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voidvxvi/HellBunny/HEAD/Ldr/include/common/phnt.h -------------------------------------------------------------------------------- /Ldr/include/core/Hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voidvxvi/HellBunny/HEAD/Ldr/include/core/Hash.h -------------------------------------------------------------------------------- /Ldr/include/core/IatCamo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voidvxvi/HellBunny/HEAD/Ldr/include/core/IatCamo.h -------------------------------------------------------------------------------- /Ldr/include/core/Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voidvxvi/HellBunny/HEAD/Ldr/include/core/Memory.h -------------------------------------------------------------------------------- /Ldr/include/core/MiniStd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voidvxvi/HellBunny/HEAD/Ldr/include/core/MiniStd.h -------------------------------------------------------------------------------- /Ldr/include/core/Payload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voidvxvi/HellBunny/HEAD/Ldr/include/core/Payload.h -------------------------------------------------------------------------------- /Ldr/include/core/Runtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voidvxvi/HellBunny/HEAD/Ldr/include/core/Runtime.h -------------------------------------------------------------------------------- /Ldr/include/core/SysNative.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voidvxvi/HellBunny/HEAD/Ldr/include/core/SysNative.h -------------------------------------------------------------------------------- /Ldr/include/core/Syscalls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voidvxvi/HellBunny/HEAD/Ldr/include/core/Syscalls.h -------------------------------------------------------------------------------- /Ldr/include/core/Win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voidvxvi/HellBunny/HEAD/Ldr/include/core/Win32.h -------------------------------------------------------------------------------- /Ldr/include/crypt/AesCrypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voidvxvi/HellBunny/HEAD/Ldr/include/crypt/AesCrypt.h -------------------------------------------------------------------------------- /Ldr/include/crypt/XChaCha20Crypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voidvxvi/HellBunny/HEAD/Ldr/include/crypt/XChaCha20Crypt.h -------------------------------------------------------------------------------- /Ldr/include/crypt/XorCrypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voidvxvi/HellBunny/HEAD/Ldr/include/crypt/XorCrypt.h -------------------------------------------------------------------------------- /Ldr/include/exec/Execute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voidvxvi/HellBunny/HEAD/Ldr/include/exec/Execute.h -------------------------------------------------------------------------------- /Ldr/scripts/Aes256XCrypt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voidvxvi/HellBunny/HEAD/Ldr/scripts/Aes256XCrypt.go -------------------------------------------------------------------------------- /Ldr/scripts/aes256cbc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voidvxvi/HellBunny/HEAD/Ldr/scripts/aes256cbc.py -------------------------------------------------------------------------------- /Ldr/scripts/xchacha20.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voidvxvi/HellBunny/HEAD/Ldr/scripts/xchacha20.py -------------------------------------------------------------------------------- /Ldr/scripts/xor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voidvxvi/HellBunny/HEAD/Ldr/scripts/xor.py -------------------------------------------------------------------------------- /Ldr/src/Ldr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voidvxvi/HellBunny/HEAD/Ldr/src/Ldr.c -------------------------------------------------------------------------------- /Ldr/src/asm/Syscall.x64.masm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voidvxvi/HellBunny/HEAD/Ldr/src/asm/Syscall.x64.masm -------------------------------------------------------------------------------- /Ldr/src/common/Debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voidvxvi/HellBunny/HEAD/Ldr/src/common/Debug.c -------------------------------------------------------------------------------- /Ldr/src/core/Hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voidvxvi/HellBunny/HEAD/Ldr/src/core/Hash.c -------------------------------------------------------------------------------- /Ldr/src/core/Memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voidvxvi/HellBunny/HEAD/Ldr/src/core/Memory.c -------------------------------------------------------------------------------- /Ldr/src/core/MiniStd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voidvxvi/HellBunny/HEAD/Ldr/src/core/MiniStd.c -------------------------------------------------------------------------------- /Ldr/src/core/Payload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voidvxvi/HellBunny/HEAD/Ldr/src/core/Payload.c -------------------------------------------------------------------------------- /Ldr/src/core/Runtime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voidvxvi/HellBunny/HEAD/Ldr/src/core/Runtime.c -------------------------------------------------------------------------------- /Ldr/src/core/SysNative.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voidvxvi/HellBunny/HEAD/Ldr/src/core/SysNative.c -------------------------------------------------------------------------------- /Ldr/src/core/Syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voidvxvi/HellBunny/HEAD/Ldr/src/core/Syscalls.c -------------------------------------------------------------------------------- /Ldr/src/core/Win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voidvxvi/HellBunny/HEAD/Ldr/src/core/Win32.c -------------------------------------------------------------------------------- /Ldr/src/crypt/AesCrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voidvxvi/HellBunny/HEAD/Ldr/src/crypt/AesCrypt.c -------------------------------------------------------------------------------- /Ldr/src/crypt/XChaCha20Crypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voidvxvi/HellBunny/HEAD/Ldr/src/crypt/XChaCha20Crypt.c -------------------------------------------------------------------------------- /Ldr/src/crypt/XorCrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voidvxvi/HellBunny/HEAD/Ldr/src/crypt/XorCrypt.c -------------------------------------------------------------------------------- /Ldr/src/exec/Execute.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voidvxvi/HellBunny/HEAD/Ldr/src/exec/Execute.c -------------------------------------------------------------------------------- /Ldr/src/main/MainDLL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voidvxvi/HellBunny/HEAD/Ldr/src/main/MainDLL.c -------------------------------------------------------------------------------- /Ldr/src/main/MainEXE.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voidvxvi/HellBunny/HEAD/Ldr/src/main/MainEXE.c -------------------------------------------------------------------------------- /Ldr/src/main/MainXLL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voidvxvi/HellBunny/HEAD/Ldr/src/main/MainXLL.c -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voidvxvi/HellBunny/HEAD/README.md -------------------------------------------------------------------------------- /hellbunny_icon.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voidvxvi/HellBunny/HEAD/hellbunny_icon.webp --------------------------------------------------------------------------------