Lucene search
+L

NetApp Data ONTAP Detection Consolidation

🗓️ 25 Jan 2019 00:00:00Reported by Copyright (C) 2019 Greenbone AGType 
openvas
 openvas
🔗 plugins.openvas.org👁 57 Views

NetApp Data ONTAP Detection Consolidation. Consolidation of NetApp Data ONTAP detections. A script to detect and register NetApp Data ONTAP installations using various protocols

Refs
Code
# SPDX-FileCopyrightText: 2019 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

include("plugin_feed_info.inc");

if (description)
{
  script_oid("1.3.6.1.4.1.25623.1.0.141923");
  script_version("2025-06-16T05:41:07+0000");
  script_tag(name:"last_modification", value:"2025-06-16 05:41:07 +0000 (Mon, 16 Jun 2025)");
  script_tag(name:"creation_date", value:"2019-01-25 12:54:35 +0700 (Fri, 25 Jan 2019)");
  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("NetApp Data ONTAP Detection Consolidation");

  script_tag(name:"summary", value:"Consolidation of NetApp Data ONTAP detections.");

  script_category(ACT_GATHER_INFO);

  script_copyright("Copyright (C) 2019 Greenbone AG");
  script_family("Product detection");
  script_dependencies("gb_netapp_data_ontap_http_detect.nasl",
                      "gb_netapp_data_ontap_ntp_detect.nasl",
                      "gb_netapp_data_ontap_snmp_detect.nasl");
  if(FEED_NAME == "GSF" || FEED_NAME == "GEF" || FEED_NAME == "SCM")
    script_dependencies("gsf/gb_netapp_data_ontap_ftp_detect.nasl",
                        "gsf/gb_netapp_data_ontap_ndmp_detect.nasl",
                        "gsf/gb_netapp_data_ontap_ssh_detect.nasl",
                        "gsf/gb_netapp_data_ontap_telnet_detect.nasl",
                        "gsf/gb_netapp_data_ontap_ssh_login_detect.nasl");
  script_mandatory_keys("netapp_data_ontap/detected");

  script_xref(name:"URL", value:"https://www.netapp.com/ontap-data-management-software/");

  exit(0);
}

include("cpe.inc");
include("host_details.inc");
include("os_func.inc");

if (!get_kb_item("netapp_data_ontap/detected"))
  exit(0);

detected_version = "unknown";
install = "/";

foreach source (make_list("http", "ntp", "snmp", "ssh-login", "ndmp", "telnet", "ssh", "ftp")) {
  version_list = get_kb_list("netapp_data_ontap/" + source + "/*/version");
  foreach vers (version_list) {
    if (vers != "unknown" && detected_version == "unknown") {
      detected_version = vers;
      break;
    }
  }
}

cpe = build_cpe(value: tolower(detected_version), exp: "^([0-9p.]+)", base: "cpe:/o:netapp:data_ontap:");
if (!cpe)
  cpe = "cpe:/o:netapp:data_ontap";

if (http_ports = get_kb_list("netapp_data_ontap/http/port")) {
  foreach port (http_ports) {
    extra += "HTTP(s) on port " + port + '/tcp\n';

    concluded = get_kb_item("netapp_data_ontap/http/" + port + "/concluded");
    if (concluded)
      extra += "Concluded from: " + concluded + '\n';

    register_product(cpe: cpe, location: install, port: port, service: "www");
  }
}

if (ntp_ports = get_kb_list("netapp_data_ontap/ntp/port")) {
  foreach port (ntp_ports) {
    extra += "NTP on port " + port + '/udp\n';

    concluded = get_kb_item("netapp_data_ontap/ntp/" + port + "/concluded");
    if (concluded)
      extra += "Concluded from NTP system banner: " + concluded + '\n';

    register_product(cpe: cpe, location: install, port: port, service: "ntp", proto: "udp");
  }
}

if (snmp_ports = get_kb_list("netapp_data_ontap/snmp/port")) {
  foreach port (snmp_ports) {
    extra += "SNMP on port " + port + '/udp\n';

    concluded = get_kb_item("netapp_data_ontap/snmp/" + port + "/concluded");
    if (concluded)
      extra += "Concluded from SNMP sysDescr OID: " + concluded + '\n';

    register_product(cpe: cpe, location: install, port: port, service: "snmp", proto: "udp");
  }
}

if (ndmp_ports = get_kb_list("netapp_data_ontap/ndmp/port")) {
  foreach port (ndmp_ports) {
    extra += "NDMP on port " + port + '/tcp\n';

    concluded = get_kb_item("netapp_data_ontap/ndmp/" + port + "/concluded");
    if (concluded)
      extra += "Concluded from NDMP host info: " + concluded + '\n';

    register_product(cpe: cpe, location: install, port: port, service: "ndmp");
  }
}

if (telnet_ports = get_kb_list("netapp_data_ontap/telnet/port")) {
  foreach port (telnet_ports) {
    extra += "Telnet banner on port " + port + '/tcp\n';

    concluded = get_kb_item("netapp_data_ontap/telnet/" + port + "/concluded");
    if (concluded)
      extra += "Concluded from: " + concluded + '\n';

    register_product(cpe: cpe, location: install, port: port, service: "telnet");
  }
}

if (ssh_ports = get_kb_list("netapp_data_ontap/ssh/port")) {
  foreach port (ssh_ports) {
    extra += "SSH banner on port " + port + '/tcp\n';

    concluded = get_kb_item("netapp_data_ontap/ssh/" + port + "/concluded");
    if (concluded)
      extra += "Concluded from: " + concluded + '\n';

    register_product(cpe: cpe, location: install, port: port, service: "ssh");
  }
}

if (ftp_ports = get_kb_list("netapp_data_ontap/ftp/port")) {
  foreach port (ftp_ports) {
    extra += "FTP banner on port " + port + '/tcp\n';

    concluded = get_kb_item("netapp_data_ontap/ftp/" + port + "/concluded");
    if (concluded)
      extra += "Concluded from: " + concluded + '\n';

    register_product(cpe: cpe, location: install, port: port, service: "ftp");
  }
}

if (ssh_login_ports = get_kb_list("netapp_data_ontap/ssh-login/port")) {
  foreach port (ssh_login_ports) {
    extra += "SSH login on port " + port + '/tcp\n';

    concluded = get_kb_item("netapp_data_ontap/ssh-login/" + port + "/concluded");
    if (concluded)
      extra += "Concluded " + concluded + '\n';

    register_product(cpe: cpe, location: install, port: port, service: "ssh-login");
  }
}

os_register_and_report(os: "NetApp Data ONTAP", cpe: cpe, desc: "NetApp Data ONTAP Detection Consolidation", runs_key:"unixoide" );

report = build_detection_report(app: "NetApp Data ONTAP", version: detected_version, cpe: cpe, install: install);

if (extra) {
  report += '\n\nDetection methods:\n';
  report += '\r\n' + extra;
}

if (report)
  log_message(port: 0, data: chomp(report));

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

16 Jun 2025 00:00Current
7.3High risk
Vulners AI Score7.3
57