├── README.md ├── keylogger ├── .gitignore ├── README.md ├── assets │ └── demo.png ├── bin │ └── obj │ │ └── .gitkeep ├── bof │ ├── .gitignore │ ├── CMakeLists.txt │ ├── include │ │ ├── Bof.h │ │ ├── Native.h │ │ └── beacon.h │ └── src │ │ └── Bof.c ├── keylogger.py ├── makefile ├── scripts │ ├── Linker.ld │ ├── build.py │ ├── def.py │ ├── loader.c │ ├── phnt.py │ └── shellcode_to_byte_array.py └── shellcode │ ├── .gitignore │ ├── CMakeLists.txt │ ├── include │ ├── Imperium.h │ ├── Keylogger.h │ └── common │ │ ├── Common.h │ │ └── Native.h │ └── src │ ├── Imperium.cc │ ├── Keylogger.cc │ ├── Main.cc │ └── asm │ └── x64 │ ├── Stardust.asm │ └── Syscall.asm ├── sammy ├── .gitignore ├── CMakeLists.txt ├── Makefile ├── README.md ├── bin │ └── .gitkeep ├── images │ └── showcase.png ├── include │ ├── Defs.h │ ├── Native.h │ ├── beacon.h │ └── sammy.h ├── sammy.py ├── scripts │ └── sdk.py └── src │ ├── sammy.c │ └── utils.c ├── token-vault ├── .gitignore ├── CMakeLists.txt ├── Makefile ├── README.md ├── bin │ └── .gitkeep ├── images │ └── showcase.png ├── include │ ├── Defs.h │ ├── Ntlm.h │ ├── Token.h │ └── beacon.h ├── src │ ├── hmac_md5.c │ ├── ntlm.c │ ├── token.c │ └── utils.c ├── start.sh └── token-vault.py └── windows ├── .gitignore ├── CMakeLists.txt ├── README.md ├── assets └── demo.png ├── bin └── windows.x64.o ├── include ├── Common.h ├── Native.h └── beacon.h ├── makefile ├── scripts ├── Linker.ld ├── build.py ├── def.py └── phnt.py ├── src ├── Common.c └── Windows.c └── windows.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NioZow/bof-collection/HEAD/README.md -------------------------------------------------------------------------------- /keylogger/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NioZow/bof-collection/HEAD/keylogger/.gitignore -------------------------------------------------------------------------------- /keylogger/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NioZow/bof-collection/HEAD/keylogger/README.md -------------------------------------------------------------------------------- /keylogger/assets/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NioZow/bof-collection/HEAD/keylogger/assets/demo.png -------------------------------------------------------------------------------- /keylogger/bin/obj/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keylogger/bof/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | cmake-build-debug/ 3 | -------------------------------------------------------------------------------- /keylogger/bof/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NioZow/bof-collection/HEAD/keylogger/bof/CMakeLists.txt -------------------------------------------------------------------------------- /keylogger/bof/include/Bof.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NioZow/bof-collection/HEAD/keylogger/bof/include/Bof.h -------------------------------------------------------------------------------- /keylogger/bof/include/Native.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NioZow/bof-collection/HEAD/keylogger/bof/include/Native.h -------------------------------------------------------------------------------- /keylogger/bof/include/beacon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NioZow/bof-collection/HEAD/keylogger/bof/include/beacon.h -------------------------------------------------------------------------------- /keylogger/bof/src/Bof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NioZow/bof-collection/HEAD/keylogger/bof/src/Bof.c -------------------------------------------------------------------------------- /keylogger/keylogger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NioZow/bof-collection/HEAD/keylogger/keylogger.py -------------------------------------------------------------------------------- /keylogger/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NioZow/bof-collection/HEAD/keylogger/makefile -------------------------------------------------------------------------------- /keylogger/scripts/Linker.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NioZow/bof-collection/HEAD/keylogger/scripts/Linker.ld -------------------------------------------------------------------------------- /keylogger/scripts/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NioZow/bof-collection/HEAD/keylogger/scripts/build.py -------------------------------------------------------------------------------- /keylogger/scripts/def.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NioZow/bof-collection/HEAD/keylogger/scripts/def.py -------------------------------------------------------------------------------- /keylogger/scripts/loader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NioZow/bof-collection/HEAD/keylogger/scripts/loader.c -------------------------------------------------------------------------------- /keylogger/scripts/phnt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NioZow/bof-collection/HEAD/keylogger/scripts/phnt.py -------------------------------------------------------------------------------- /keylogger/scripts/shellcode_to_byte_array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NioZow/bof-collection/HEAD/keylogger/scripts/shellcode_to_byte_array.py -------------------------------------------------------------------------------- /keylogger/shellcode/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | cmake-build-debug/ 3 | -------------------------------------------------------------------------------- /keylogger/shellcode/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NioZow/bof-collection/HEAD/keylogger/shellcode/CMakeLists.txt -------------------------------------------------------------------------------- /keylogger/shellcode/include/Imperium.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NioZow/bof-collection/HEAD/keylogger/shellcode/include/Imperium.h -------------------------------------------------------------------------------- /keylogger/shellcode/include/Keylogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NioZow/bof-collection/HEAD/keylogger/shellcode/include/Keylogger.h -------------------------------------------------------------------------------- /keylogger/shellcode/include/common/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NioZow/bof-collection/HEAD/keylogger/shellcode/include/common/Common.h -------------------------------------------------------------------------------- /keylogger/shellcode/include/common/Native.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NioZow/bof-collection/HEAD/keylogger/shellcode/include/common/Native.h -------------------------------------------------------------------------------- /keylogger/shellcode/src/Imperium.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NioZow/bof-collection/HEAD/keylogger/shellcode/src/Imperium.cc -------------------------------------------------------------------------------- /keylogger/shellcode/src/Keylogger.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NioZow/bof-collection/HEAD/keylogger/shellcode/src/Keylogger.cc -------------------------------------------------------------------------------- /keylogger/shellcode/src/Main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NioZow/bof-collection/HEAD/keylogger/shellcode/src/Main.cc -------------------------------------------------------------------------------- /keylogger/shellcode/src/asm/x64/Stardust.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NioZow/bof-collection/HEAD/keylogger/shellcode/src/asm/x64/Stardust.asm -------------------------------------------------------------------------------- /keylogger/shellcode/src/asm/x64/Syscall.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NioZow/bof-collection/HEAD/keylogger/shellcode/src/asm/x64/Syscall.asm -------------------------------------------------------------------------------- /sammy/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NioZow/bof-collection/HEAD/sammy/.gitignore -------------------------------------------------------------------------------- /sammy/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NioZow/bof-collection/HEAD/sammy/CMakeLists.txt -------------------------------------------------------------------------------- /sammy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NioZow/bof-collection/HEAD/sammy/Makefile -------------------------------------------------------------------------------- /sammy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NioZow/bof-collection/HEAD/sammy/README.md -------------------------------------------------------------------------------- /sammy/bin/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sammy/images/showcase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NioZow/bof-collection/HEAD/sammy/images/showcase.png -------------------------------------------------------------------------------- /sammy/include/Defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NioZow/bof-collection/HEAD/sammy/include/Defs.h -------------------------------------------------------------------------------- /sammy/include/Native.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NioZow/bof-collection/HEAD/sammy/include/Native.h -------------------------------------------------------------------------------- /sammy/include/beacon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NioZow/bof-collection/HEAD/sammy/include/beacon.h -------------------------------------------------------------------------------- /sammy/include/sammy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NioZow/bof-collection/HEAD/sammy/include/sammy.h -------------------------------------------------------------------------------- /sammy/sammy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NioZow/bof-collection/HEAD/sammy/sammy.py -------------------------------------------------------------------------------- /sammy/scripts/sdk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NioZow/bof-collection/HEAD/sammy/scripts/sdk.py -------------------------------------------------------------------------------- /sammy/src/sammy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NioZow/bof-collection/HEAD/sammy/src/sammy.c -------------------------------------------------------------------------------- /sammy/src/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NioZow/bof-collection/HEAD/sammy/src/utils.c -------------------------------------------------------------------------------- /token-vault/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NioZow/bof-collection/HEAD/token-vault/.gitignore -------------------------------------------------------------------------------- /token-vault/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NioZow/bof-collection/HEAD/token-vault/CMakeLists.txt -------------------------------------------------------------------------------- /token-vault/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NioZow/bof-collection/HEAD/token-vault/Makefile -------------------------------------------------------------------------------- /token-vault/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NioZow/bof-collection/HEAD/token-vault/README.md -------------------------------------------------------------------------------- /token-vault/bin/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /token-vault/images/showcase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NioZow/bof-collection/HEAD/token-vault/images/showcase.png -------------------------------------------------------------------------------- /token-vault/include/Defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NioZow/bof-collection/HEAD/token-vault/include/Defs.h -------------------------------------------------------------------------------- /token-vault/include/Ntlm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NioZow/bof-collection/HEAD/token-vault/include/Ntlm.h -------------------------------------------------------------------------------- /token-vault/include/Token.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NioZow/bof-collection/HEAD/token-vault/include/Token.h -------------------------------------------------------------------------------- /token-vault/include/beacon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NioZow/bof-collection/HEAD/token-vault/include/beacon.h -------------------------------------------------------------------------------- /token-vault/src/hmac_md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NioZow/bof-collection/HEAD/token-vault/src/hmac_md5.c -------------------------------------------------------------------------------- /token-vault/src/ntlm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NioZow/bof-collection/HEAD/token-vault/src/ntlm.c -------------------------------------------------------------------------------- /token-vault/src/token.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NioZow/bof-collection/HEAD/token-vault/src/token.c -------------------------------------------------------------------------------- /token-vault/src/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NioZow/bof-collection/HEAD/token-vault/src/utils.c -------------------------------------------------------------------------------- /token-vault/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NioZow/bof-collection/HEAD/token-vault/start.sh -------------------------------------------------------------------------------- /token-vault/token-vault.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NioZow/bof-collection/HEAD/token-vault/token-vault.py -------------------------------------------------------------------------------- /windows/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NioZow/bof-collection/HEAD/windows/.gitignore -------------------------------------------------------------------------------- /windows/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NioZow/bof-collection/HEAD/windows/CMakeLists.txt -------------------------------------------------------------------------------- /windows/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NioZow/bof-collection/HEAD/windows/README.md -------------------------------------------------------------------------------- /windows/assets/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NioZow/bof-collection/HEAD/windows/assets/demo.png -------------------------------------------------------------------------------- /windows/bin/windows.x64.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NioZow/bof-collection/HEAD/windows/bin/windows.x64.o -------------------------------------------------------------------------------- /windows/include/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NioZow/bof-collection/HEAD/windows/include/Common.h -------------------------------------------------------------------------------- /windows/include/Native.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NioZow/bof-collection/HEAD/windows/include/Native.h -------------------------------------------------------------------------------- /windows/include/beacon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NioZow/bof-collection/HEAD/windows/include/beacon.h -------------------------------------------------------------------------------- /windows/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NioZow/bof-collection/HEAD/windows/makefile -------------------------------------------------------------------------------- /windows/scripts/Linker.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NioZow/bof-collection/HEAD/windows/scripts/Linker.ld -------------------------------------------------------------------------------- /windows/scripts/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NioZow/bof-collection/HEAD/windows/scripts/build.py -------------------------------------------------------------------------------- /windows/scripts/def.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NioZow/bof-collection/HEAD/windows/scripts/def.py -------------------------------------------------------------------------------- /windows/scripts/phnt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NioZow/bof-collection/HEAD/windows/scripts/phnt.py -------------------------------------------------------------------------------- /windows/src/Common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NioZow/bof-collection/HEAD/windows/src/Common.c -------------------------------------------------------------------------------- /windows/src/Windows.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NioZow/bof-collection/HEAD/windows/src/Windows.c -------------------------------------------------------------------------------- /windows/windows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NioZow/bof-collection/HEAD/windows/windows.py --------------------------------------------------------------------------------