Lucene search
+L

Novell iManager Detection

🗓️ 19 Apr 2013 00:00:00Reported by TenableType 
nessus
 nessus
🔗 www.tenable.com👁 41 Views

The remote host has a network administration web application listening. Nessus was able to access the web interface of Novell iManager, a network administration tool

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

include("compat.inc");

if (description)
{
  script_id(66034);
  script_version("1.4");
  script_cvs_date("Date: 2019/11/22");

  script_name(english:"Novell iManager Detection");
  script_summary(english:"Detects Novell iManager Web Interface");

  script_set_attribute(
    attribute:"synopsis",
    value:
"The remote host has a network administration web application
listening."
  );
  script_set_attribute(
    attribute:"description",
    value:
"Nessus was able to access the web interface of Novell iManager, a
network administration tool."
  );
  script_set_attribute(attribute:"see_also", value:"https://www.microfocus.com/products/open-enterprise-server/features/imanager-network-administration-tool/?utm_medium=301&utm_source=novell.com");
  script_set_attribute(attribute:"solution", value:"n/a");
  script_set_attribute(attribute:"risk_factor", value:"None");

  script_set_attribute(attribute:"plugin_publication_date", value:"2013/04/19");

  script_set_attribute(attribute:"plugin_type", value:"remote");
  script_set_attribute(attribute:"cpe", value:"cpe:/a:novell:imanager");
  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) 2013-2019 and is owned by Tenable, Inc. or an Affiliate thereof.");

  script_dependencies("http_version.nasl");
  script_require_ports("Services/www", 8080, 8443);
  exit(0);
}

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

appname = "Novell iManager";

port = get_http_port(default:8443);

installs = NULL;

version = UNKNOWN_VER;

url = '/nps/servlet/portal';
res = http_send_recv3(method:"GET", item:url, port:port, exit_on_fail:TRUE);

if (
  '<title>Novell iManager</title>' >!< res[2] ||
  'Username:' >!< res[2] || 
  'Password:' >!< res[2]
) audit(AUDIT_NOT_DETECT, appname, port);

# try multiple methods (from most to least likely to be accurate) to obtain
# version information

# this file is added when applying the latest patch (2.7.6 Patch 1)
url = '/nps/version.properties';
##Version and build number properties, do not modify!!!
##Tue Apr 09 16:29:27 IST 2013
#version=2.7.6
res = http_send_recv3(method:"GET", item:url, port:port, exit_on_fail:TRUE);
if ('version=' >< res[2])
{
  set_kb_item(name:'www/'+port+'/novell_imanager/version_properties', value:res[2]);
  item = eregmatch(pattern:'version=([0-9.]+)($|[^0-9.])', string:res[2]);
  if (!isnull(item)) version = item[1];
}

url = '/nps/build_oes.xml';
# <property name="Product.Name" value="nps"/>
# <property name="iManager.version" value="2.7"/>
# <property name="supportpack.version" value="6"/>
res = http_send_recv3(method:"GET", item:url, port:port, exit_on_fail:TRUE);
if (version == UNKNOWN_VER && 'iManager.version' >< res[2])
{
  item = eregmatch(pattern:'name="iManager.version"[ ]*value="([0-9.]+)"', string:res[2]);
  if (!isnull(item)) version = item[1];

  item = eregmatch(pattern:'name="supportpack.version"[ ]*value="([0-9]+)"', string:res[2]);
  if (!isnull(item)) version += '.' + item[1];
}

url = '/nps/packages/iman_mod_desc.xml';

res = http_send_recv3(method:"GET", item:url, port:port, exit_on_fail:TRUE);
if (version == UNKNOWN_VER && '<filename>iManager.npm</filename>' >< res[2])
{
  module = strstr(res[2], "<filename>iManager.npm</filename>");
  module = module - strstr(module, "</module>");

  tmp_version = "";
  if (module && "<version>" >< module && "</version>" >< module)
  {
    tmp_version = strstr(module, "<version>") - "<version>";
    tmp_version = tmp_version - strstr(tmp_version,'</version>');
  }

  if (tmp_version)
  {
    item = eregmatch(pattern:"([0-9.]+)", string:tmp_version);
    if (!isnull(item)) version = item[1];
  }
}

url = '/nps/version.jsp';

res = http_send_recv3(method:"GET", item:url, port:port, exit_on_fail:TRUE);
if (version == UNKNOWN_VER && res[2] =~ "^[0-9.]+[\r\n ]*$")
{
  item = eregmatch(pattern:"([0-9.]+)", string:res[2]);
  if (!isnull(item)) version = item[1];
}

installs = add_install(
  appname  : "novell_imanager",
  installs : installs,
  port     : port,
  dir      : '/nps',
  ver      : version,
  cpe      : "cpe:/a:novell:imanager"
);

if (report_verbosity > 0)
{
  report = get_install_report(
    port         : port,
    installs     : installs,
    item         : "",
    display_name : appname
  );
  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

22 Nov 2019 00:00Current
5.4Medium risk
Vulners AI Score5.4
41