Lucene search
+L

HCL / IBM / Lotus Domino Detection (SMTP)

🗓️ 16 Sep 2020 00:00:00Reported by Copyright (C) 2020 Greenbone AGType 
openvas
 openvas
🔗 plugins.openvas.org👁 35 Views

HCL / IBM / Lotus Domino Detectio

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.144581");
  script_version("2025-09-24T05:39:03+0000");
  script_tag(name:"last_modification", value:"2025-09-24 05:39:03 +0000 (Wed, 24 Sep 2025)");
  script_tag(name:"creation_date", value:"2020-09-16 06:29:54 +0000 (Wed, 16 Sep 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("HCL / IBM / Lotus Domino 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_mandatory_keys("smtp/hcl/domino/detected");

  script_tag(name:"summary", value:"SMTP based detection of HCL Domino (formerly Lotus/IBM
  Domino).");

  exit(0);
}

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

port = smtp_get_port(default: 25);

banner = smtp_get_banner(port: port);

if (banner && banner =~ "(HCL|IBM|Lotus) Domino") {
  set_kb_item(name: "hcl/domino/detected", value: TRUE);
  set_kb_item(name: "hcl/domino/smtp/port", value: port);
  set_kb_item(name: "hcl/domino/smtp/" + port + "/concluded", value: banner);

  version = "unknown";

  # mail.example.com ESMTP Service (IBM Domino Release 10.0.1FP4) ready at Wed, 16 Sep 2020 08:26:32 +0200
  # example.com  ESMTP Service (IBM Domino Release 9.0.1FP10 HF383) ready at Wed, 16 Sep 2020 11:40:58 +0530
  # example.com ESMTP Service (IBM Domino Release 9.0.1FP7HF92) ready at Wed, 16 Sep 2020 16:21:42 +1000
  # example.com ESMTP Service (Lotus Domino Release 8.5.1) ready at Wed, 16 Sep 2020 16:16:29 +1000
  # mail.example.com ESMTP Service (HCL Domino Release 11.0.1) ready at Wed, 16 Sep 2020 00:36:55 -0400
  vers = eregmatch(pattern: "Release ([^)]+)", string: banner);
  if (!isnull(vers[1])) {
    version = str_replace(string: vers[1], find: "FP", replace: ".");
    version = ereg_replace(string: version, pattern: "( )?HF", replace: ".HF");
  }

  set_kb_item(name: "hcl/domino/smtp/" + port + "/version", value: version);
}

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 Sep 2025 00:00Current
7High risk
Vulners AI Score7
35