Lucene search

K
nessusThis script is Copyright (C) 2010-2024 Tenable Network Security, Inc.JIRA_500PAGE_REFERER_XSS.NASL
HistoryApr 20, 2010 - 12:00 a.m.

Atlassian JIRA 500page.jsp Referer XSS

2010-04-2000:00:00
This script is Copyright (C) 2010-2024 Tenable Network Security, Inc.
www.tenable.com
18

4.3 Medium

CVSS2

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

6.2 Medium

AI Score

Confidence

High

0.003 Low

EPSS

Percentile

70.8%

The Atlassian JIRA installation hosted on the remote web server is affected by a cross-site scripting (XSS) vulnerability in the 500page.jsp file due to an HTTP ‘referer’ field not being properly sanitized before being displayed in the page. A remote attacker can exploit this, by tricking a user into making a specially crafted request, to execute arbitrary script code.

This version of JIRA is also affected by additional vulnerabilities (cross-site scripting and privilege escalation); however, Nessus has not tested for these issues.

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

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

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

  script_cve_id("CVE-2010-1164");
  script_bugtraq_id(39485);
  script_xref(name:"SECUNIA", value:"39353");

  script_name(english:"Atlassian JIRA 500page.jsp Referer XSS");

  script_set_attribute(attribute:"synopsis", value:
"The remote web server hosts a web application that is affected by a
cross-site scripting (XSS) vulnerability.");
  script_set_attribute(attribute:"description", value:
"The Atlassian JIRA installation hosted on the remote web server is
affected by a cross-site scripting (XSS) vulnerability in the
500page.jsp file due to an HTTP 'referer' field not being properly
sanitized before being displayed in the page. A remote attacker can
exploit this, by tricking a user into making a specially crafted
request, to execute arbitrary script code.

This version of JIRA is also affected by additional vulnerabilities
(cross-site scripting and privilege escalation); however, Nessus has
not tested for these issues.");
  script_set_attribute(attribute:"see_also", value:"https://blogs.apache.org/infra/entry/apache_org_04_09_2010");
  # https://confluence.atlassian.com/jira/jira-security-advisory-2010-04-16-216433270.html
  script_set_attribute(attribute:"see_also", value:"http://www.nessus.org/u?7437b837");
  script_set_attribute(attribute:"solution", value:
"Apply the relevant patch referenced in the JIRA security advisory.");
  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:H/RL:OF/RC:C");

  script_set_attribute(attribute:"exploitability_ease", value:"No exploit is required");
  script_set_attribute(attribute:"exploit_available", value:"false");
  script_set_attribute(attribute:"exploited_by_nessus", 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:"2010/04/13");
  script_set_attribute(attribute:"patch_publication_date", value:"2010/04/16");
  script_set_attribute(attribute:"plugin_publication_date", value:"2010/04/20");

  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_ATTACK);
  script_family(english:"CGI abuses : XSS");

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

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

  exit(0);
}

include("audit.inc");
include("global_settings.inc");
include("misc_func.inc");
include("http.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
);

dir = install['path'];

xss = '<script>alert("'+SCRIPT_NAME+'-'+unixtime()+'")</script>';
res = http_send_recv3(
  method : "GET",
  port   : port,
  item   : dir + '/500page.jsp',
  add_headers  : make_array("Referer", xss),
  exit_on_fail : TRUE
);

pattern = 'Referer URL:[ \\r\\n\\t]*<b>'+xss+'</b>';
pattern = str_replace(string:pattern, find:'(', replace:'\\(');
pattern = str_replace(string:pattern, find:')', replace:'\\)');

if (ereg(string:res[2], pattern:pattern, multiline:TRUE))
{
  output = eregmatch(string:res[2], pattern:pattern);
  if (!empty_or_null(output[0])) output = output[0];
  else output = res[2];

  security_report_v4(
    port       : port,
    severity   : SECURITY_WARNING,
    generic    : TRUE,
    line_limit : 3,
    xss        : TRUE,
    request    : make_list(http_last_sent_request()),
    output     : chomp(output)
  );
}
else
  audit(AUDIT_WEB_APP_NOT_AFFECTED, app,  build_url(qs:dir, port:port));
VendorProductVersionCPE
atlassianjiracpe:/a:atlassian:jira

4.3 Medium

CVSS2

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

6.2 Medium

AI Score

Confidence

High

0.003 Low

EPSS

Percentile

70.8%

Related for JIRA_500PAGE_REFERER_XSS.NASL