mirror of
https://github.com/php/php-src.git
synced 2024-12-04 23:34:25 +08:00
14 lines
394 B
PHP
Executable File
14 lines
394 B
PHP
Executable File
--TEST--
|
|
iconv_strrpos() charset parameter length checks (CVE-2007-4840)
|
|
--SKIPIF--
|
|
<?php extension_loaded('iconv') or die('skip iconv extension is not available'); ?>
|
|
--FILE--
|
|
<?php
|
|
$a = str_repeat("/", 9000000);
|
|
var_dump(iconv_strrpos("a", "b", $a));
|
|
?>
|
|
--EXPECTF--
|
|
|
|
Warning: iconv_strrpos(): Charset parameter exceeds the maximum allowed length of %d characters in %s on line %d
|
|
bool(false)
|