Lucene search
K

HP OpenView UI Process Manager Daemon Detection

🗓️ 14 Sep 2005 00:00:00Reported by TenableType 
nessus
 nessus
🔗 www.tenable.com👁 23 Views

HP OpenView UI Process Manager Daemon Detectio

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


include("compat.inc");

if (description) {
  script_id(19701);
  script_version("$Revision: 1.9 $");
  script_cvs_date("$Date: 2014/08/29 21:03:42 $");

  script_name(english:"HP OpenView UI Process Manager Daemon Detection");
  
 script_set_attribute(attribute:"synopsis", value:
"An HP OpenView UI Process Manager daemon is listening on this port." );
 script_set_attribute(attribute:"description", value:
"The remote host is running an HP OpenView UI Process Manager daemon on 
this port." );
 script_set_attribute(attribute:"solution", value:
"If this service is not needed, disable it or filter incoming traffic
to this port." );
 script_set_attribute(attribute:"risk_factor", value:"None" );
 script_set_attribute(attribute:"plugin_publication_date", value: "2005/09/14");
script_set_attribute(attribute:"plugin_type", value:"remote");
script_set_attribute(attribute:"cpe", value:"cpe:/a:hp:openview");
script_end_attributes();

  script_summary(english:"Checks for HP OpenView UI Process Manager Daemon");
  script_category(ACT_GATHER_INFO);
  script_family(english:"Service detection");
  script_copyright(english:"This script is Copyright (C) 2005-2014 Tenable Network Security, Inc.");
  script_dependencies ("find_service2.nasl");
  script_require_ports(7777);
  exit(0);
}

#

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

port = 7777;

if (!service_is_unknown (port:port))
  exit (0);


## functions ##

function set_int (i)
{
 return htonl(n:4) + htonl(n:i);
}

function set_string (s)
{
 return htonl(n:strlen(s)) + s;
}

function set_parameter_uint (u)
{
 return set_int (i:2) + # type (2) -> uint
        set_int (i:u);
}

function set_parameter_string (s)
{
 return set_int (i:1) +         # type (1) -> string
        set_int (i:strlen(s)) + # length of string
        set_string (s:s);
}


## Main code ##

soc = open_sock_tcp (port);
if (!soc) exit (0);

req = set_int (i:1) +
      set_int (i:2) +
      set_int (i:3) +
      set_int (i:5) +                     # parameter number
      set_parameter_uint (u:0) +          # param1 -> uint
      set_parameter_string (s:"nessus") + # param2 -> string
      set_parameter_string (s:"nessus") + # param3 -> string
      set_parameter_uint (u:0) +          # param4 -> uint
      set_parameter_uint (u:0) +          # param5 -> uint
      set_int (i:2) ;                     # packet type (2) -> 5 param (uint,string,string,uint,uint)

send (socket:soc, data:req);
buf = recv(socket:soc, length:0x20);

if ("0000001c0000000100000007000000000000000100000002fffffff600000002" >< hexstr(buf))
{
  register_service (port:port, proto:"ovuispmd");
  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

29 Aug 2014 21:03Current
5.5Medium risk
Vulners AI Score5.5
23