Lucene search
K

HP OpenView BBC Service Detection

🗓️ 11 Sep 2006 00:00:00Reported by TenableType 
nessus
 nessus
🔗 www.tenable.com👁 296 Views

HP OpenView BBC Service Detection - Checks for HP OpenView BBC services. Detects if the remote web server is running an OpenView service and obtains information about the remote host through special requests

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

include("compat.inc");

if (description)
{
 script_id(22318);
 script_version("$Revision: 1.12 $");
 script_cvs_date("$Date: 2013/09/27 17:56:10 $");

 script_name(english:"HP OpenView BBC Service Detection");
 script_summary(english:"Checks for HP OpenView BBC services");

 script_set_attribute(attribute:"synopsis", value:
"The remote web server is running an OpenView service.");
 script_set_attribute(attribute:"description", value:
"The remote host appears to be running an HP OpenView product.

This specific service is an HTTP server.  By sending special requests
(version, info, status, ping, services, ...), it is possible to obtain
information about the remote host.");
 script_set_attribute(attribute:"solution", value:"n/a");
 script_set_attribute(attribute:"risk_factor", value:"None");
 script_set_attribute(attribute:"plugin_publication_date", value:"2006/09/11");
 script_set_attribute(attribute:"plugin_type", value:"remote");
 script_set_attribute(attribute:"cpe", value:"cpe:/a:hp:openview_network_node_manager");
 script_end_attributes();

 script_category(ACT_GATHER_INFO);
 script_family(english:"Service detection");
 script_copyright(english:"This script is Copyright (C) 2006-2013 Tenable Network Security, Inc.");
 script_dependencies("http_version.nasl");
 script_require_ports(383, 3013, 3565);

 exit(0);
}

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

ports = make_list (383, 3013, 3565);

foreach port (ports)
{
 if (!get_port_state(port))
   continue;

 if ("BBC" >!< get_http_banner (port:port))
   continue;

 # can't use http_get else the response is in HTML format
 req = 'GET /Hewlett-Packard/OpenView/BBC/version HTTP/1.0\r\n\r\n';
 r = http_send_recv_buf(port:port, data:req);
 if (isnull(r) || "HP OpenView HTTP Communication Version Report" >!< r[2])
   continue;

 register_service(port:port, proto:'ovbbc');

 match = eregmatch(string:r[2], pattern:'Ver +:([0-9.]+)');
 if (!isnull(match))
 {
    version = match[1];
    set_kb_item(name:'HP/ovbbc/'+port+'/version', value:version);
 }

 report = NULL;
 if(report_verbosity > 0)
   report = "The following version information has been extracted from the service :" +r[2];

 security_note (port:port, extra:report);
}

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

27 Sep 2013 17:56Current
5.5Medium risk
Vulners AI Score5.5
296