Lucene search
+L

ColdFusion Extended Support Version Detection

🗓️ 22 Jan 2014 00:00:00Reported by TenableType 
nessus
 nessus
🔗 www.tenable.com👁 16 Views

ColdFusion Extended Support Version Detection. Checks for installations requiring long-term support and provides support details

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

include('deprecated_nasl_level.inc');
include('compat.inc');

if (description)
{
  script_id(72090);
  script_version("1.5");
  script_set_attribute(attribute:"plugin_modification_date", value:"2021/01/19");

  script_name(english:"ColdFusion Extended Support Version Detection");
  script_summary(english:"Checks if any ColdFusion installs require long-term support.");

  script_set_attribute(attribute:"synopsis", value:
"The remote host contains one or more versions of ColdFusion that
require long-term support.");
  script_set_attribute(attribute:"description", value:
"According to its version, there is at least one installation of
ColdFusion on the remote host that is potentially under Extended
Support. 

Note that the Extended Support program requires a vendor contract. 
Extended Support provides upgrades and security fixes for two years
after regular support ends.");
  script_set_attribute(attribute:"see_also", value:"https://helpx.adobe.com/support/programs/adobe-support-policies-supported-product-versions.html#sort-a");
  # https://helpx.adobe.com/support/programs/eol-matrix.html#63
  script_set_attribute(attribute:"see_also", value:"http://www.nessus.org/u?75eac050");
  script_set_attribute(attribute:"solution", value:
"Ensure that the host subscribes to Adobe's Extended Support program
for ColdFusion and continues to receive security updates.");
  script_set_attribute(attribute:"risk_factor", value:"None");

  script_set_attribute(attribute:"plugin_publication_date", value:"2014/01/22");

  script_set_attribute(attribute:"cpe", value:"cpe:/a:adobe:coldfusion");
  script_set_attribute(attribute:"plugin_type", value:"remote");
  script_end_attributes();

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

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

  script_dependencies("coldfusion_unsupported.nasl");
  script_require_keys("installed_sw/ColdFusion");

  exit(0);
}

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

app = 'ColdFusion';
get_install_count(app_name:app, exit_if_zero:TRUE);

info = make_array();

extended_support_installs = get_kb_list_or_exit("www/coldfusion/extended_support/*");

if (extended_support_installs)
{
  foreach path_ver (keys(extended_support_installs))
  {
    temp_info = NULL;
    pv = path_ver - "www/coldfusion/extended_support/";
    # pv should now have:
    # {www-dir}/{version}/{port}
    pieces = eregmatch(string:pv, pattern:"^(.*)/([0-9._]+)/([0-9]+)$");
    if (pieces)
    {
      dir = str_replace(string:pieces[1], find:"\", replace:"/");
      version = pieces[2];
      port = pieces[3];

      temp_info =
        '\n  URL           : ' + build_url(port:port, qs:dir) +
        '\n  Version       : ' + version +
        '\n  Support dates : ' + extended_support_installs[path_ver];

      if (!info[port])
        info[port] = temp_info;
      else
        info[port] += temp_info;
    }
  }
}


if (max_index(keys(info)))
{
  pre_report = '\n' + 'The following '+app+' installs are in Extended Support status : \n';

  foreach port (keys(info))
  {
    if (report_verbosity > 0) security_note(port:port, extra:pre_report+info[port]);
    else security_note(port);
  }

}
else audit(AUDIT_NOT_INST, app + " under Extended Support");

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

19 Jan 2021 00:00Current
5.6Medium risk
Vulners AI Score5.6
16