Lucene search

K
nessusThis script is Copyright (C) 2014-2024 Tenable Network Security, Inc.JIRA_6_0_5.NASL
HistoryMar 31, 2014 - 12:00 a.m.

Atlassian JIRA < 6.0.5 Multiple Vulnerabilities

2014-03-3100:00:00
This script is Copyright (C) 2014-2024 Tenable Network Security, Inc.
www.tenable.com
18

CVSS2

4.3

Attack Vector

NETWORK

Attack Complexity

MEDIUM

Authentication

NONE

Confidentiality Impact

NONE

Integrity Impact

PARTIAL

Availability Impact

NONE

AV:N/AC:M/Au:N/C:N/I:P/A:N

AI Score

6.5

Confidence

High

EPSS

0.004

Percentile

72.2%

According to its self-reported version number, the version of Atlassian JIRA hosted on the remote web server is prior to version 6.0.5. It is, therefore, potentially affected by multiple vulnerabilities :

  • A cross-site scripting vulnerability exists in the Admin Panel due to a failure to sanitize user-supplied input to the โ€˜nameโ€™ parameter in file deleteuserconfirm.jsp.
    A remote attacker can exploit this, by using a crafted request, to execute arbitrary script code in a userโ€™s browser. (CVE-2013-5319)

  • A flaw exists in the Importers plugin due to improper sanitization of user-supplied input, which allows traversing outside a restricted path. A remote, unauthenticated attacker, using a crafted request, can exploit this vulnerability to create files in arbitrary directories in the JIRA installation. This vulnerability only affects JIRA running on the Windows OS.
    (CVE-2014-2313)

Note that the Importers plugin for JIRA is also affected by this vulnerability; however, Nessus did not did confirm that this plugin is installed.

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

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

if (description)
{
  script_id(73273);
  script_version("1.9");
  script_set_attribute(attribute:"plugin_modification_date", value:"2024/06/05");

  script_cve_id("CVE-2013-5319", "CVE-2014-2313");
  script_bugtraq_id(61647, 65841);

  script_name(english:"Atlassian JIRA < 6.0.5 Multiple Vulnerabilities");

  script_set_attribute(attribute:"synopsis", value:
"The remote web server hosts a web application that is potentially
affected by multiple vulnerabilities.");
  script_set_attribute(attribute:"description", value:
"According to its self-reported version number, the version of
Atlassian JIRA hosted on the remote web server is prior to version
6.0.5. It is, therefore, potentially affected by multiple
vulnerabilities :

  - A cross-site scripting vulnerability exists in the Admin
    Panel due to a failure to sanitize user-supplied input
    to the 'name' parameter in file deleteuserconfirm.jsp.
    A remote attacker can exploit this, by using a crafted
    request, to execute arbitrary script code in a user's
    browser. (CVE-2013-5319)

  - A flaw exists in the Importers plugin due to improper
    sanitization of user-supplied input, which allows
    traversing outside a restricted path. A remote,
    unauthenticated attacker, using a crafted request, can
    exploit this vulnerability to create files in arbitrary
    directories in the JIRA installation. This vulnerability
    only affects JIRA running on the Windows OS.
    (CVE-2014-2313)

Note that the Importers plugin for JIRA is also affected by this
vulnerability; however, Nessus did not did confirm that this plugin is
installed.");
  # https://confluence.atlassian.com/jira/jira-security-advisory-2014-02-26-445188412.html
  script_set_attribute(attribute:"see_also", value:"http://www.nessus.org/u?7c962b4a");
  script_set_attribute(attribute:"see_also", value:"https://jira.atlassian.com/browse/JRA-34160");
  script_set_attribute(attribute:"see_also", value:"https://jira.atlassian.com/browse/JRA-36441");
  script_set_attribute(attribute:"solution", value:
"Upgrade to JIRA 6.0.5 or later, and upgrade or disable the Importers
plugin.");
  script_set_cvss_base_vector("CVSS2#AV:N/AC:M/Au:N/C:N/I:P/A:N");
  script_set_cvss_temporal_vector("CVSS2#E:F/RL:OF/RC:C");

  script_set_attribute(attribute:"exploitability_ease", value:"Exploits are available");
  script_set_attribute(attribute:"exploit_available", value:"true");
  script_cwe_id(20, 74, 79, 442, 629, 711, 712, 722, 725, 750, 751, 800, 801, 809, 811, 864, 900, 928, 931, 990);

  script_set_attribute(attribute:"vuln_publication_date", value:"2013/08/06");
  script_set_attribute(attribute:"patch_publication_date", value:"2014/02/26");
  script_set_attribute(attribute:"plugin_publication_date", value:"2014/03/31");

  script_set_attribute(attribute:"potential_vulnerability", value:"true");
  script_set_attribute(attribute:"plugin_type", value:"remote");
  script_set_attribute(attribute:"cpe", value:"cpe:/a:atlassian:jira");
  script_set_attribute(attribute:"thorough_tests", value:"true");
  script_set_attribute(attribute:"enable_cgi_scanning", value:"true");
  script_end_attributes();

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

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

  script_dependencies("jira_detect.nasl");
  script_require_keys("installed_sw/Atlassian JIRA", "Settings/ParanoidReport");
  script_exclude_keys("Settings/disable_cgi_scanning");
  script_require_ports("Services/www", 8080);

  exit(0);
}

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

app = "Atlassian JIRA";
get_install_count(app_name:app, exit_if_zero:TRUE);

port = get_http_port(default:8080);

install = get_single_install(
  app_name : app,
  port     : port,
  exit_if_unknown_ver : TRUE
);

# Prevent potential false positives.
if (report_paranoia < 2) audit(AUDIT_PARANOID);

dir = install['path'];
ver = install['version'];

url = build_url(port:port, qs:dir);

# Check if the host is affected.
fix = "6.0.5";
if (ver_compare(ver:ver, fix:fix, strict:FALSE) >= 0)
  audit(AUDIT_WEB_APP_NOT_AFFECTED, app, url, ver);

# Set XSS KB for version 6.x installs only.
if (ver =~ "^6\.") set_kb_item(name: 'www/'+port+'/XSS', value: TRUE);

# Report our findings.
report = NULL;
if (report_verbosity > 0)
{
  report =
    '\n  URL               : ' + url +
    '\n  Installed version : ' + ver +
    '\n  Fixed version     : ' + fix +
    '\n';
}
security_warning(port:port, extra:report);

CVSS2

4.3

Attack Vector

NETWORK

Attack Complexity

MEDIUM

Authentication

NONE

Confidentiality Impact

NONE

Integrity Impact

PARTIAL

Availability Impact

NONE

AV:N/AC:M/Au:N/C:N/I:P/A:N

AI Score

6.5

Confidence

High

EPSS

0.004

Percentile

72.2%