├── .gitattributes ├── .gitignore ├── .ignore ├── LICENSE.md ├── README.md ├── bin ├── llvm-objcopy └── llvm-objcopy.exe ├── bof-launcher ├── build.zig ├── build.zig.zon └── src │ ├── RingBuffer.zig │ ├── beacon │ ├── beacon.h │ ├── beacon_impl.c │ ├── beacon_impl.zig │ ├── stb_sprintf.c │ └── stb_sprintf.h │ ├── bof_launcher.zig │ ├── bof_launcher_api.h │ └── bof_launcher_api.zig ├── bofs ├── README.md ├── build.zig ├── build.zig.zon └── src │ ├── _debug_entry.zig │ ├── cat.zig │ ├── cd.zig │ ├── coreutils │ ├── hostid.zig │ ├── hostname.zig │ ├── id.zig │ ├── uname.zig │ ├── uptime.zig │ └── who.zig │ ├── force_intel_asm.h │ ├── helloBof.zig │ ├── include │ ├── asn1.zig │ ├── beacon.zig │ ├── bof_api.zig │ ├── kerberos.zig │ └── posix.zig │ ├── kmodLoader.zig │ ├── lAsmTest.s │ ├── ls.zig │ ├── lskmod.zig │ ├── misc.c │ ├── net-tools │ └── ifconfig.zig │ ├── process-injection-chain │ ├── wInjectionChainShared.zig │ ├── wInjectionChainSharedC.h │ ├── wInjectionChainStage0.zig │ ├── wInjectionChainStage1.zig │ ├── wInjectionChainStage1A.asm │ ├── wInjectionChainStage2.zig │ ├── wInjectionChainStage2C.c │ └── wInjectionChainStage3.zig │ ├── pwd.zig │ ├── runBofFromBof.zig │ ├── simple.c │ ├── sniffer.c │ ├── snifferBOF.zig │ ├── tcpScanner.zig │ ├── tests │ ├── dummy.zig │ ├── test_args.zig │ ├── test_async.zig │ ├── test_beacon_format.c │ ├── test_long_running.zig │ ├── test_obj0.zig │ ├── test_obj1.zig │ ├── test_obj2.c │ ├── test_obj3.zig │ ├── test_obj4.zig │ ├── tests.c │ └── tests.zig │ ├── udpScanner.zig │ ├── wAsmTest.s │ ├── wCloneProcess.zig │ ├── wDirectSyscall.asm │ ├── wProcessInfoMessageBox.zig │ ├── wProcessInjectionSrdi.zig │ ├── wWinver.zig │ ├── wWinverC.c │ ├── whoami.zig │ └── z-beac0n-core.zig ├── examples ├── BOF-stager │ ├── README.md │ ├── build.zig │ ├── build.zig.zon │ └── src │ │ └── main.zig ├── implant │ ├── README.md │ ├── build.zig │ ├── build.zig.zon │ └── src │ │ ├── main.zig │ │ ├── shellcode.zig │ │ ├── stage-listener.py │ │ └── stager.py ├── integration-with-c │ ├── Makefile │ ├── build.zig │ ├── build.zig.zon │ ├── main.c │ └── make.bat ├── integration-with-go │ ├── README.md │ └── cgo.go ├── integration-with-rust │ ├── Cargo.toml │ ├── build.rs │ ├── readme.md │ └── src │ │ └── main.rs ├── process-injection-chain │ ├── README.md │ ├── build.zig │ ├── build.zig.zon │ └── src │ │ └── main.zig └── shellcode-in-zig │ ├── README.md │ ├── build.zig │ ├── build.zig.zon │ └── src │ ├── linker.ld │ ├── shellcode_launcher.zig │ ├── shellcode_lin.zig │ ├── shellcode_win.zig │ └── win32_api_loader.zig ├── utils ├── boflint.py ├── fetch-3rdparty-BOFs.py ├── serve_bofs.py └── zigupdate.sh └── win32-api ├── build.zig ├── build.zig.zon └── src └── root.zig /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Z-Labs/bof-launcher/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Z-Labs/bof-launcher/HEAD/.gitignore -------------------------------------------------------------------------------- /.ignore: -------------------------------------------------------------------------------- 1 | .gitkeep 2 | *.obj 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Z-Labs/bof-launcher/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Z-Labs/bof-launcher/HEAD/README.md -------------------------------------------------------------------------------- /bin/llvm-objcopy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Z-Labs/bof-launcher/HEAD/bin/llvm-objcopy -------------------------------------------------------------------------------- /bin/llvm-objcopy.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Z-Labs/bof-launcher/HEAD/bin/llvm-objcopy.exe -------------------------------------------------------------------------------- /bof-launcher/build.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Z-Labs/bof-launcher/HEAD/bof-launcher/build.zig -------------------------------------------------------------------------------- /bof-launcher/build.zig.zon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Z-Labs/bof-launcher/HEAD/bof-launcher/build.zig.zon -------------------------------------------------------------------------------- /bof-launcher/src/RingBuffer.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Z-Labs/bof-launcher/HEAD/bof-launcher/src/RingBuffer.zig -------------------------------------------------------------------------------- /bof-launcher/src/beacon/beacon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Z-Labs/bof-launcher/HEAD/bof-launcher/src/beacon/beacon.h -------------------------------------------------------------------------------- /bof-launcher/src/beacon/beacon_impl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Z-Labs/bof-launcher/HEAD/bof-launcher/src/beacon/beacon_impl.c -------------------------------------------------------------------------------- /bof-launcher/src/beacon/beacon_impl.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Z-Labs/bof-launcher/HEAD/bof-launcher/src/beacon/beacon_impl.zig -------------------------------------------------------------------------------- /bof-launcher/src/beacon/stb_sprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Z-Labs/bof-launcher/HEAD/bof-launcher/src/beacon/stb_sprintf.c -------------------------------------------------------------------------------- /bof-launcher/src/beacon/stb_sprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Z-Labs/bof-launcher/HEAD/bof-launcher/src/beacon/stb_sprintf.h -------------------------------------------------------------------------------- /bof-launcher/src/bof_launcher.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Z-Labs/bof-launcher/HEAD/bof-launcher/src/bof_launcher.zig -------------------------------------------------------------------------------- /bof-launcher/src/bof_launcher_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Z-Labs/bof-launcher/HEAD/bof-launcher/src/bof_launcher_api.h -------------------------------------------------------------------------------- /bof-launcher/src/bof_launcher_api.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Z-Labs/bof-launcher/HEAD/bof-launcher/src/bof_launcher_api.zig -------------------------------------------------------------------------------- /bofs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Z-Labs/bof-launcher/HEAD/bofs/README.md -------------------------------------------------------------------------------- /bofs/build.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Z-Labs/bof-launcher/HEAD/bofs/build.zig -------------------------------------------------------------------------------- /bofs/build.zig.zon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Z-Labs/bof-launcher/HEAD/bofs/build.zig.zon -------------------------------------------------------------------------------- /bofs/src/_debug_entry.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Z-Labs/bof-launcher/HEAD/bofs/src/_debug_entry.zig -------------------------------------------------------------------------------- /bofs/src/cat.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Z-Labs/bof-launcher/HEAD/bofs/src/cat.zig -------------------------------------------------------------------------------- /bofs/src/cd.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Z-Labs/bof-launcher/HEAD/bofs/src/cd.zig -------------------------------------------------------------------------------- /bofs/src/coreutils/hostid.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Z-Labs/bof-launcher/HEAD/bofs/src/coreutils/hostid.zig -------------------------------------------------------------------------------- /bofs/src/coreutils/hostname.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Z-Labs/bof-launcher/HEAD/bofs/src/coreutils/hostname.zig -------------------------------------------------------------------------------- /bofs/src/coreutils/id.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Z-Labs/bof-launcher/HEAD/bofs/src/coreutils/id.zig -------------------------------------------------------------------------------- /bofs/src/coreutils/uname.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Z-Labs/bof-launcher/HEAD/bofs/src/coreutils/uname.zig -------------------------------------------------------------------------------- /bofs/src/coreutils/uptime.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Z-Labs/bof-launcher/HEAD/bofs/src/coreutils/uptime.zig -------------------------------------------------------------------------------- /bofs/src/coreutils/who.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Z-Labs/bof-launcher/HEAD/bofs/src/coreutils/who.zig -------------------------------------------------------------------------------- /bofs/src/force_intel_asm.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | __asm__(".intel_syntax"); 3 | -------------------------------------------------------------------------------- /bofs/src/helloBof.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Z-Labs/bof-launcher/HEAD/bofs/src/helloBof.zig -------------------------------------------------------------------------------- /bofs/src/include/asn1.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Z-Labs/bof-launcher/HEAD/bofs/src/include/asn1.zig -------------------------------------------------------------------------------- /bofs/src/include/beacon.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Z-Labs/bof-launcher/HEAD/bofs/src/include/beacon.zig -------------------------------------------------------------------------------- /bofs/src/include/bof_api.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Z-Labs/bof-launcher/HEAD/bofs/src/include/bof_api.zig -------------------------------------------------------------------------------- /bofs/src/include/kerberos.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Z-Labs/bof-launcher/HEAD/bofs/src/include/kerberos.zig -------------------------------------------------------------------------------- /bofs/src/include/posix.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Z-Labs/bof-launcher/HEAD/bofs/src/include/posix.zig -------------------------------------------------------------------------------- /bofs/src/kmodLoader.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Z-Labs/bof-launcher/HEAD/bofs/src/kmodLoader.zig -------------------------------------------------------------------------------- /bofs/src/lAsmTest.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Z-Labs/bof-launcher/HEAD/bofs/src/lAsmTest.s -------------------------------------------------------------------------------- /bofs/src/ls.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Z-Labs/bof-launcher/HEAD/bofs/src/ls.zig -------------------------------------------------------------------------------- /bofs/src/lskmod.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Z-Labs/bof-launcher/HEAD/bofs/src/lskmod.zig -------------------------------------------------------------------------------- /bofs/src/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Z-Labs/bof-launcher/HEAD/bofs/src/misc.c -------------------------------------------------------------------------------- /bofs/src/net-tools/ifconfig.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Z-Labs/bof-launcher/HEAD/bofs/src/net-tools/ifconfig.zig -------------------------------------------------------------------------------- /bofs/src/process-injection-chain/wInjectionChainShared.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Z-Labs/bof-launcher/HEAD/bofs/src/process-injection-chain/wInjectionChainShared.zig -------------------------------------------------------------------------------- /bofs/src/process-injection-chain/wInjectionChainSharedC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Z-Labs/bof-launcher/HEAD/bofs/src/process-injection-chain/wInjectionChainSharedC.h -------------------------------------------------------------------------------- /bofs/src/process-injection-chain/wInjectionChainStage0.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Z-Labs/bof-launcher/HEAD/bofs/src/process-injection-chain/wInjectionChainStage0.zig -------------------------------------------------------------------------------- /bofs/src/process-injection-chain/wInjectionChainStage1.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Z-Labs/bof-launcher/HEAD/bofs/src/process-injection-chain/wInjectionChainStage1.zig -------------------------------------------------------------------------------- /bofs/src/process-injection-chain/wInjectionChainStage1A.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Z-Labs/bof-launcher/HEAD/bofs/src/process-injection-chain/wInjectionChainStage1A.asm -------------------------------------------------------------------------------- /bofs/src/process-injection-chain/wInjectionChainStage2.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Z-Labs/bof-launcher/HEAD/bofs/src/process-injection-chain/wInjectionChainStage2.zig -------------------------------------------------------------------------------- /bofs/src/process-injection-chain/wInjectionChainStage2C.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Z-Labs/bof-launcher/HEAD/bofs/src/process-injection-chain/wInjectionChainStage2C.c -------------------------------------------------------------------------------- /bofs/src/process-injection-chain/wInjectionChainStage3.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Z-Labs/bof-launcher/HEAD/bofs/src/process-injection-chain/wInjectionChainStage3.zig -------------------------------------------------------------------------------- /bofs/src/pwd.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Z-Labs/bof-launcher/HEAD/bofs/src/pwd.zig -------------------------------------------------------------------------------- /bofs/src/runBofFromBof.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Z-Labs/bof-launcher/HEAD/bofs/src/runBofFromBof.zig -------------------------------------------------------------------------------- /bofs/src/simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Z-Labs/bof-launcher/HEAD/bofs/src/simple.c -------------------------------------------------------------------------------- /bofs/src/sniffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Z-Labs/bof-launcher/HEAD/bofs/src/sniffer.c -------------------------------------------------------------------------------- /bofs/src/snifferBOF.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Z-Labs/bof-launcher/HEAD/bofs/src/snifferBOF.zig -------------------------------------------------------------------------------- /bofs/src/tcpScanner.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Z-Labs/bof-launcher/HEAD/bofs/src/tcpScanner.zig -------------------------------------------------------------------------------- /bofs/src/tests/dummy.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Z-Labs/bof-launcher/HEAD/bofs/src/tests/dummy.zig -------------------------------------------------------------------------------- /bofs/src/tests/test_args.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Z-Labs/bof-launcher/HEAD/bofs/src/tests/test_args.zig -------------------------------------------------------------------------------- /bofs/src/tests/test_async.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Z-Labs/bof-launcher/HEAD/bofs/src/tests/test_async.zig -------------------------------------------------------------------------------- /bofs/src/tests/test_beacon_format.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Z-Labs/bof-launcher/HEAD/bofs/src/tests/test_beacon_format.c -------------------------------------------------------------------------------- /bofs/src/tests/test_long_running.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Z-Labs/bof-launcher/HEAD/bofs/src/tests/test_long_running.zig -------------------------------------------------------------------------------- /bofs/src/tests/test_obj0.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Z-Labs/bof-launcher/HEAD/bofs/src/tests/test_obj0.zig -------------------------------------------------------------------------------- /bofs/src/tests/test_obj1.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Z-Labs/bof-launcher/HEAD/bofs/src/tests/test_obj1.zig -------------------------------------------------------------------------------- /bofs/src/tests/test_obj2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Z-Labs/bof-launcher/HEAD/bofs/src/tests/test_obj2.c -------------------------------------------------------------------------------- /bofs/src/tests/test_obj3.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Z-Labs/bof-launcher/HEAD/bofs/src/tests/test_obj3.zig -------------------------------------------------------------------------------- /bofs/src/tests/test_obj4.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Z-Labs/bof-launcher/HEAD/bofs/src/tests/test_obj4.zig -------------------------------------------------------------------------------- /bofs/src/tests/tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Z-Labs/bof-launcher/HEAD/bofs/src/tests/tests.c -------------------------------------------------------------------------------- /bofs/src/tests/tests.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Z-Labs/bof-launcher/HEAD/bofs/src/tests/tests.zig -------------------------------------------------------------------------------- /bofs/src/udpScanner.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Z-Labs/bof-launcher/HEAD/bofs/src/udpScanner.zig -------------------------------------------------------------------------------- /bofs/src/wAsmTest.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Z-Labs/bof-launcher/HEAD/bofs/src/wAsmTest.s -------------------------------------------------------------------------------- /bofs/src/wCloneProcess.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Z-Labs/bof-launcher/HEAD/bofs/src/wCloneProcess.zig -------------------------------------------------------------------------------- /bofs/src/wDirectSyscall.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Z-Labs/bof-launcher/HEAD/bofs/src/wDirectSyscall.asm -------------------------------------------------------------------------------- /bofs/src/wProcessInfoMessageBox.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Z-Labs/bof-launcher/HEAD/bofs/src/wProcessInfoMessageBox.zig -------------------------------------------------------------------------------- /bofs/src/wProcessInjectionSrdi.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Z-Labs/bof-launcher/HEAD/bofs/src/wProcessInjectionSrdi.zig -------------------------------------------------------------------------------- /bofs/src/wWinver.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Z-Labs/bof-launcher/HEAD/bofs/src/wWinver.zig -------------------------------------------------------------------------------- /bofs/src/wWinverC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Z-Labs/bof-launcher/HEAD/bofs/src/wWinverC.c -------------------------------------------------------------------------------- /bofs/src/whoami.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Z-Labs/bof-launcher/HEAD/bofs/src/whoami.zig -------------------------------------------------------------------------------- /bofs/src/z-beac0n-core.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Z-Labs/bof-launcher/HEAD/bofs/src/z-beac0n-core.zig -------------------------------------------------------------------------------- /examples/BOF-stager/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Z-Labs/bof-launcher/HEAD/examples/BOF-stager/README.md -------------------------------------------------------------------------------- /examples/BOF-stager/build.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Z-Labs/bof-launcher/HEAD/examples/BOF-stager/build.zig -------------------------------------------------------------------------------- /examples/BOF-stager/build.zig.zon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Z-Labs/bof-launcher/HEAD/examples/BOF-stager/build.zig.zon -------------------------------------------------------------------------------- /examples/BOF-stager/src/main.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Z-Labs/bof-launcher/HEAD/examples/BOF-stager/src/main.zig -------------------------------------------------------------------------------- /examples/implant/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Z-Labs/bof-launcher/HEAD/examples/implant/README.md -------------------------------------------------------------------------------- /examples/implant/build.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Z-Labs/bof-launcher/HEAD/examples/implant/build.zig -------------------------------------------------------------------------------- /examples/implant/build.zig.zon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Z-Labs/bof-launcher/HEAD/examples/implant/build.zig.zon -------------------------------------------------------------------------------- /examples/implant/src/main.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Z-Labs/bof-launcher/HEAD/examples/implant/src/main.zig -------------------------------------------------------------------------------- /examples/implant/src/shellcode.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Z-Labs/bof-launcher/HEAD/examples/implant/src/shellcode.zig -------------------------------------------------------------------------------- /examples/implant/src/stage-listener.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Z-Labs/bof-launcher/HEAD/examples/implant/src/stage-listener.py -------------------------------------------------------------------------------- /examples/implant/src/stager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Z-Labs/bof-launcher/HEAD/examples/implant/src/stager.py -------------------------------------------------------------------------------- /examples/integration-with-c/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Z-Labs/bof-launcher/HEAD/examples/integration-with-c/Makefile -------------------------------------------------------------------------------- /examples/integration-with-c/build.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Z-Labs/bof-launcher/HEAD/examples/integration-with-c/build.zig -------------------------------------------------------------------------------- /examples/integration-with-c/build.zig.zon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Z-Labs/bof-launcher/HEAD/examples/integration-with-c/build.zig.zon -------------------------------------------------------------------------------- /examples/integration-with-c/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Z-Labs/bof-launcher/HEAD/examples/integration-with-c/main.c -------------------------------------------------------------------------------- /examples/integration-with-c/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Z-Labs/bof-launcher/HEAD/examples/integration-with-c/make.bat -------------------------------------------------------------------------------- /examples/integration-with-go/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Z-Labs/bof-launcher/HEAD/examples/integration-with-go/README.md -------------------------------------------------------------------------------- /examples/integration-with-go/cgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Z-Labs/bof-launcher/HEAD/examples/integration-with-go/cgo.go -------------------------------------------------------------------------------- /examples/integration-with-rust/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Z-Labs/bof-launcher/HEAD/examples/integration-with-rust/Cargo.toml -------------------------------------------------------------------------------- /examples/integration-with-rust/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Z-Labs/bof-launcher/HEAD/examples/integration-with-rust/build.rs -------------------------------------------------------------------------------- /examples/integration-with-rust/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Z-Labs/bof-launcher/HEAD/examples/integration-with-rust/readme.md -------------------------------------------------------------------------------- /examples/integration-with-rust/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Z-Labs/bof-launcher/HEAD/examples/integration-with-rust/src/main.rs -------------------------------------------------------------------------------- /examples/process-injection-chain/README.md: -------------------------------------------------------------------------------- 1 | # process-injection-chain 2 | -------------------------------------------------------------------------------- /examples/process-injection-chain/build.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Z-Labs/bof-launcher/HEAD/examples/process-injection-chain/build.zig -------------------------------------------------------------------------------- /examples/process-injection-chain/build.zig.zon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Z-Labs/bof-launcher/HEAD/examples/process-injection-chain/build.zig.zon -------------------------------------------------------------------------------- /examples/process-injection-chain/src/main.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Z-Labs/bof-launcher/HEAD/examples/process-injection-chain/src/main.zig -------------------------------------------------------------------------------- /examples/shellcode-in-zig/README.md: -------------------------------------------------------------------------------- 1 | # shellcode-in-zig 2 | -------------------------------------------------------------------------------- /examples/shellcode-in-zig/build.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Z-Labs/bof-launcher/HEAD/examples/shellcode-in-zig/build.zig -------------------------------------------------------------------------------- /examples/shellcode-in-zig/build.zig.zon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Z-Labs/bof-launcher/HEAD/examples/shellcode-in-zig/build.zig.zon -------------------------------------------------------------------------------- /examples/shellcode-in-zig/src/linker.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Z-Labs/bof-launcher/HEAD/examples/shellcode-in-zig/src/linker.ld -------------------------------------------------------------------------------- /examples/shellcode-in-zig/src/shellcode_launcher.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Z-Labs/bof-launcher/HEAD/examples/shellcode-in-zig/src/shellcode_launcher.zig -------------------------------------------------------------------------------- /examples/shellcode-in-zig/src/shellcode_lin.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Z-Labs/bof-launcher/HEAD/examples/shellcode-in-zig/src/shellcode_lin.zig -------------------------------------------------------------------------------- /examples/shellcode-in-zig/src/shellcode_win.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Z-Labs/bof-launcher/HEAD/examples/shellcode-in-zig/src/shellcode_win.zig -------------------------------------------------------------------------------- /examples/shellcode-in-zig/src/win32_api_loader.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Z-Labs/bof-launcher/HEAD/examples/shellcode-in-zig/src/win32_api_loader.zig -------------------------------------------------------------------------------- /utils/boflint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Z-Labs/bof-launcher/HEAD/utils/boflint.py -------------------------------------------------------------------------------- /utils/fetch-3rdparty-BOFs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Z-Labs/bof-launcher/HEAD/utils/fetch-3rdparty-BOFs.py -------------------------------------------------------------------------------- /utils/serve_bofs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Z-Labs/bof-launcher/HEAD/utils/serve_bofs.py -------------------------------------------------------------------------------- /utils/zigupdate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Z-Labs/bof-launcher/HEAD/utils/zigupdate.sh -------------------------------------------------------------------------------- /win32-api/build.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Z-Labs/bof-launcher/HEAD/win32-api/build.zig -------------------------------------------------------------------------------- /win32-api/build.zig.zon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Z-Labs/bof-launcher/HEAD/win32-api/build.zig.zon -------------------------------------------------------------------------------- /win32-api/src/root.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Z-Labs/bof-launcher/HEAD/win32-api/src/root.zig --------------------------------------------------------------------------------