Lucene search
K

Cisco Unified Operations Manager Detection

🗓️ 13 Oct 2011 00:00:00Reported by TenableType 
nessus
 nessus
🔗 www.tenable.com👁 34 Views

Cisco Unified Operations Manager Detection: Real-time monitoring for the Cisco Unified Communications Management Suite is hosted on the remote web server

Refs
Code
#
# (C) Tenable Network Security, Inc.
#


include("compat.inc");


if (description)
{
  script_id(56484);
  script_version("1.5");
  script_cvs_date("Date: 2019/11/25");

  script_name(english:"Cisco Unified Operations Manager Detection");
  script_summary(english:"Looks for the UOM login page");

  script_set_attribute(attribute:"synopsis", value:"A monitoring application is hosted on the remote web server.");
  script_set_attribute(
    attribute:"description",
    value:
"Cisco Unified Operations Manager, part of the Cisco Unified
Communications Management Suite, was detected on the remote web
server.  Unified Operations Manager is used to perform real-time
monitoring."
  );
  script_set_attribute(attribute:"see_also", value:"http://www.cisco.com/en/US/products/ps6535/index.html");
  script_set_attribute(attribute:"solution", value:"n/a");
  script_set_attribute(attribute:"risk_factor", value:"None");

  script_set_attribute(attribute:"plugin_publication_date", value:"2011/10/13");

  script_set_attribute(attribute:"plugin_type", value:"remote");
  script_set_attribute(attribute:"cpe", value:"cpe:/a:cisco:unified_operations_manager");
  script_set_attribute(attribute:"asset_inventory", value:"True");
  script_end_attributes();

  script_category(ACT_GATHER_INFO);
  script_family(english:"CGI abuses");

  script_copyright(english:"This script is Copyright (C) 2011-2019 and is owned by Tenable, Inc. or an Affiliate thereof.");

  script_require_ports("Services/www", 443);
  script_dependencies("http_version.nasl");
  script_exclude_keys("Settings/disable_cgi_scanning");

  exit(0);
}

include("audit.inc");
include("global_settings.inc");
include("misc_func.inc");
include("http.inc");
include("webapp_func.inc");

port = get_http_port(default:443);
dir = '';
page = '/CSCOnm/servlet/login/login.jsp';
url = dir + page;

res = http_send_recv3(method:'GET', port:port, item:url, exit_on_fail:TRUE);
if ('Login</title>' >!< res[2] || res[2] !~ 'productName=["\'](Cisco )?Unified Operations Manager["\']')
  exit(0, 'Cisco UOM doesn\'t appear to be running on port ' + port + '.');

match = eregmatch(string:res[2], pattern:'productVersion=["\'](Version )?([0-9.]+)["\']');
if (isnull(match))
  ver = NULL;
else
  ver = match[2];

install = add_install(
  appname:'cisco_uom',
  dir:dir,
  port:port,
  ver:ver,
  cpe: "cpe:/a:cisco:unified_operations_manager"
);

# accessing the document root results in a 403, we'll save the login page so
# any other CUOM plugins can use it when they need to report the CUOM URL
set_kb_item(name:'/tmp/cuom/' + port + '/loginpage', value:page);

if (report_verbosity > 0)
{
  report = get_install_report(
    display_name:'Cisco Unified Operations Manager',
    installs:install,
    port:port,
    item:page
  );
  security_note(port:port, extra:report);
}
else security_note(port);

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