Sliver C2
Setup
Sliver Server
#!/bin/bash
if [[ $(/usr/bin/id -u) -ne 0 ]]; then
echo "Not running as root"
exit
fi
# Stop apache if its started automatically
service apache2 stop
cd /tmp
apt update -y
apt update --fix-missing -y
apt install git mingw-w64 net-tools -y
# Sliver install in Daemon mode
curl https://sliver.sh/install|sudo bash
systemctl status sliver --no-pager
echo Sliver running in Daemon mode!
# Create new user config
cd /root
IP=`curl https://ifconfig.me/ip`
./sliver-server operator --name sliver-user --lhost "$IP" --save /root/sliver-user.cfg
exitSliver Client
Usage - Useful CLI Commands Cheat Sheet
Listeners
HTTP(S)
Redirectors - HTTP(S)
Payloads
Staged Payloads
Beacon Payloads
Session Payloads
Debugging Payloads for testing
BOFs
Sliver Armory
Custom BOFs
OPSEC Tips
Last updated