Lucene search
+L

Novell GroupWise Client Unsupported (deprecated)

🗓️ 21 Mar 2012 00:00:00Reported by This script is Copyright (C) 2012-2016 Tenable Network Security, Inc.Type 
nessus
 nessus
🔗 www.tenable.com👁 15 Views

Novell GroupWise Client Unsupported (deprecated) plugin checks GroupWise client version and is now deprecate

Refs
Code
#%NASL_MIN_LEVEL 999999

#
# (C) Tenable Network Security, Inc.
#
# @DEPRECATED@
#
# Disabled on 2016/08/15. Deprecated by groupwise_unsupported.nasl, a
# plugin that covers all unsupported groupwise software.

include("compat.inc");

if (description)
{
  script_id(58415);
  script_version("1.9");
  script_cvs_date("Date: 2018/07/20  0:18:55");

  script_name(english:"Novell GroupWise Client Unsupported (deprecated)");
  script_summary(english:"Checks version of GroupWise client");

  script_set_attribute(attribute:"synopsis", value:
"This plugin has been deprecated.");
  script_set_attribute(attribute:"description", value:
"This plugin has been deprecated in favor of a combined plugin for the
detection of all unsupported GroupWise software. Please use the plugin
groupwise_unsupported.nasl instead.");
  script_set_attribute(attribute:"see_also", value:"http://support.novell.com/lifecycle/");
  script_set_attribute(attribute:"solution", value:"n/a");
  script_set_cvss_base_vector("CVSS2#AV:N/AC:L/Au:N/C:C/I:C/A:C");

  script_set_attribute(attribute:"plugin_publication_date", value:"2012/03/21");

  script_set_attribute(attribute:"plugin_type", value:"local");
  script_set_attribute(attribute:"cpe", value:"cpe:/a:novell:groupwise");
  script_set_attribute(attribute:"unsupported_by_vendor", value:"true");
  script_end_attributes();

  script_category(ACT_GATHER_INFO);
  script_family(english:"Windows");

  script_copyright(english:"This script is Copyright (C) 2012-2018 Tenable Network Security, Inc.");

  script_dependencies("groupwise_client_installed.nasl");
  script_require_keys("SMB/Novell GroupWise Client/Path", "SMB/Novell GroupWise Client/Version");

  exit(0);
}

# Deprecated
exit(0, "This plugin has been deprecated. Use groupwise_unsupported.nasl instead.");

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

version = get_kb_item_or_exit('SMB/Novell GroupWise Client/Version');
path = get_kb_item_or_exit('SMB/Novell GroupWise Client/Path');

ver = split(version, sep:'.');
for (i=0; i<max_index(ver); i++)
  ver[i] = int(ver[i]);

if (ver[0] < 8)
{
  register_unsupported_product(product_name:'Novell GroupWise',
                               version:version, cpe_base:"novell:groupwise");

  if (report_verbosity > 0)
  {
    report =
      '\n  Path                 : ' + path +
      '\n  Installed version    : ' + version +
      '\n  Supported version(s) : 8.x / 2012\n';
    security_hole(port:get_kb_item('SMB/transport'), extra:report);
  }
  else security_hole(get_kb_item('SMB/transport'));
  exit(0);
}
else exit(0, 'The Novell GroupWise Client '+version+' install under '+path+' is currently supported.');

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

18 Aug 2016 00:00Current
0.1Low risk
Vulners AI Score0.1
15