Lucene search
+L

IceWarp Mail Server Detection (SMTP)

🗓️ 04 Nov 2020 00:00:00Reported by Copyright (C) 2020 Greenbone AGType 
openvas
 openvas
🔗 plugins.openvas.org👁 23 Views

IceWarp Mail Server Detection for SMT

Code
# SPDX-FileCopyrightText: 2020 Greenbone AG
# 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

if(description)
{
  script_oid("1.3.6.1.4.1.25623.1.0.113776");
  script_version("2026-04-24T06:23:04+0000");
  script_tag(name:"last_modification", value:"2026-04-24 06:23:04 +0000 (Fri, 24 Apr 2026)");
  script_tag(name:"creation_date", value:"2020-11-04 10:10:10 +0100 (Wed, 04 Nov 2020)");
  script_tag(name:"cvss_base", value:"0.0");
  script_tag(name:"cvss_base_vector", value:"AV:N/AC:L/Au:N/C:N/I:N/A:N");

  script_tag(name:"qod_type", value:"remote_banner");

  script_name("IceWarp Mail Server Detection (SMTP)");

  script_category(ACT_GATHER_INFO);

  script_copyright("Copyright (C) 2020 Greenbone AG");
  script_family("Product detection");
  script_dependencies("smtpserver_detect.nasl", "check_smtp_helo.nasl");
  script_require_ports("Services/smtp", 25);
  script_mandatory_keys("smtp/icewarp/mailserver/detected");

  script_tag(name:"summary", value:"SMTP based detection of IceWarp Mail Server.");

  exit(0);
}

include( "host_details.inc" );
include( "smtp_func.inc" );
include( "port_service_func.inc" );

port = smtp_get_port( default: 25 );

if( ! banner = smtp_get_banner( port: port ) )
  exit( 0 );

# 220 <redacted> ESMTP IceWarp 12.0.4.0 x64; Fri, 04 Aug 2023 14:27:27 +0800
# 220 <redacted> ESMTP IceWarp Deep Castle 2 Update 3 build 3; Fri, 04 Aug 2023 11:00:00 +0430
# 220 <redacted> ESMTP IceWarp Epos Update 2 build 10; Thu, 23 Apr 2026 09:17:02 +0000
if( banner =~ "IceWarp" ) {
  version = "unknown";
  concluded = banner;

  set_kb_item( name: "icewarp/mailserver/detected", value: TRUE );
  set_kb_item( name: "icewarp/mailserver/smtp/detected", value: TRUE );
  set_kb_item( name: "icewarp/mailserver/smtp/port", value: port );

  vers = eregmatch( string: banner, pattern: "IceWarp ([0-9.]+)", icase: TRUE );
  if( isnull(vers[1] ) ) {
    help_banner = get_kb_item( "smtp/fingerprints/" + port + "/help_banner" );
    if( help_banner && help_banner =~ "This is IceWarp [0-9]" ) {
      vers = eregmatch( pattern: "This is IceWarp ([0-9.]+)", string: help_banner );
      concluded += '\nHelp Banner: ' + vers[0];
    }
  }

  if( ! isnull( vers[1] ) )
    version = vers[1];

  set_kb_item( name: "icewarp/mailserver/smtp/" + port + "/version", value: version );
  set_kb_item( name: "icewarp/mailserver/smtp/" + port + "/concluded", value: concluded );
}

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

24 Apr 2026 00:00Current
5.2Medium risk
Vulners AI Score5.2
23