Lucene search

K
nessusThis script is Copyright (C) 2003-2021 Tenable Network Security, Inc.EZPUBLISH_DIR_XSS.NASL
HistoryMay 21, 2003 - 12:00 a.m.

eZ Publish articleview.php XSS

2003-05-2100:00:00
This script is Copyright (C) 2003-2021 Tenable Network Security, Inc.
www.tenable.com
25

6.8 Medium

CVSS2

Attack Vector

NETWORK

Attack Complexity

MEDIUM

Authentication

NONE

Confidentiality Impact

PARTIAL

Integrity Impact

PARTIAL

Availability Impact

PARTIAL

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

0.009 Low

EPSS

Percentile

82.4%

The remote host is using ezPublish, a content management system.

There is a flaw in the remote ezPublish which lets an attacker perform a cross-site scripting attack. An attacker may use this flaw to steal the cookies of your legitimate users.

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

#
# Ref:
#  From: "Ferruh Mavituna" <[email protected]>
#  To: <[email protected]>
#  Subject: EzPublish Directory XSS Vulnerability
#  Date: Fri, 16 May 2003 06:22:20 +0300
#

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

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

 script_cve_id("CVE-2003-0310");
 script_bugtraq_id(7616);

 script_name(english:"eZ Publish articleview.php XSS");
 script_summary(english:"Determine if ezPublish is vulnerable to xss attack");

 script_set_attribute(attribute:"synopsis", value:
"The remote web server is running an application that is vulnerable to
a cross-site scripting attack.");
 script_set_attribute(attribute:"description", value:
"The remote host is using ezPublish, a content management system.

There is a flaw in the remote ezPublish which lets an attacker perform
a cross-site scripting attack. An attacker may use this flaw to steal
the cookies of your legitimate users.");
 script_set_attribute(attribute:"see_also", value:"https://seclists.org/bugtraq/2003/May/185");
 script_set_attribute(attribute:"solution", value:"Upgrade to ezPublish 3");
 script_set_cvss_base_vector("CVSS2#AV:N/AC:M/Au:N/C:P/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_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:"2003/05/16");
 script_set_attribute(attribute:"plugin_publication_date", value:"2003/05/21");

 script_set_attribute(attribute:"potential_vulnerability", value:"true");
 script_set_attribute(attribute:"plugin_type", value:"remote");
 script_end_attributes();

 script_category(ACT_GATHER_INFO);
 script_family(english:"CGI abuses : XSS");
 script_copyright(english:"This script is Copyright (C) 2003-2021 Tenable Network Security, Inc.");

 script_dependencie("http_version.nasl", "cross_site_scripting.nasl");
 script_exclude_keys("Settings/disable_cgi_scanning");
 script_require_keys("Settings/ParanoidReport", "www/PHP");
 script_require_ports("Services/www", 80);

 exit(0);
}

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


if (report_paranoia < 2) audit(AUDIT_PARANOID);

port = get_http_port(default:80, embedded: 0);
if(get_kb_item(string("www/", port, "/generic_xss"))) exit(0);
if (get_kb_item("www/no404/"+port)) exit(0);
if(!can_host_php(port:port)) exit(0);

foreach d (cgi_dirs())
{
 url = string(d, '/index.php/article/articleview/<img%20src="javascript:alert(document.cookie)">');
 r = http_send_recv3(method: 'GET', item:url, port:port);
 if (isnull(r)) exit(0);

 if(ereg(pattern:"^HTTP/[0-9]\.[0-9] +200 ", string: r[0]) &&
    '<img src="javascript:alert(document.cookie)' >< r[2])
   {
    if (report_verbosity > 0)
    {
      report = get_vuln_report(items:url, port:port);
      security_warning(port:port, extra:report);
    }
    else security_warning(port);
    set_kb_item(name: 'www/'+port+'/XSS', value: TRUE);
    exit(0);
   }
}

6.8 Medium

CVSS2

Attack Vector

NETWORK

Attack Complexity

MEDIUM

Authentication

NONE

Confidentiality Impact

PARTIAL

Integrity Impact

PARTIAL

Availability Impact

PARTIAL

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

0.009 Low

EPSS

Percentile

82.4%

Related for EZPUBLISH_DIR_XSS.NASL