This commit is contained in:
2026-07-18 09:30:00 +01:00
parent ef721388df
commit 761c98a233
5 changed files with 5226 additions and 75 deletions
+6 -7
View File
@@ -15,18 +15,17 @@ cross-compiles from any OS. output is a PE32+ DLL for x64 Windows, about 80KB.
if you need a minimal shellcode loader to get your implant running:
```bash
# place your Sliver shellcode as valak.bin in the kage directory
cd ../kage
python3 embed.py
zig build -Dtarget=x86_64-windows-gnu -Doptimize=ReleaseFast
# → zig-out/bin/kage.exe
```
## embed into sliver implant
see [sliver-integration.md](sliver-integration.md) for wiring it into the implant source.
build the implant with garble:
## integrate with sliver
```bash
go install mvdan.cc/garble@latest
garble -tiny -literals -seed=random build -tags evasion -ldflags="-s -w -H windowsgui"
./scripts/integrate.sh ~/projects/sliver
```
see [sliver-integration.md](sliver-integration.md) for details.