| Reporter | Title | Published | Views | Family All 12 |
|---|---|---|---|---|
| CVE-2007-3008 | 4 Jun 200717:00 | – | cve | |
| CVE-2007-3008 | 4 Jun 200717:00 | – | cvelist | |
| EUVD-2007-3000 | 7 Oct 202500:30 | – | euvd | |
| K15904: Multiple third-party application-server vulnerabilities | 21 Feb 202318:11 | – | f5 | |
| SOL15904 - Multiple third-party application-server vulnerabilities | 11 Dec 201400:00 | – | f5 | |
| HTTP Reverse Proxy Detection (Deprecated) | 2 Jul 200200:00 | – | nessus | |
| CVE-2007-3008 | 4 Jun 200717:30 | – | nvd | |
| HTTP Debugging Methods (TRACE/TRACK) Enabled | 3 Nov 200500:00 | – | openvas | |
| Mbedthis AppWeb HTTP TRACE Method Cross-Site Scripting Vulnerability | 2 Dec 201100:00 | – | openvas | |
| Vulnerabilities that aren’t. Cross Site Tracing / XST | 25 Jan 202206:08 | – | pentestpartners |
| Source | Link |
|---|---|
| kb | www.kb.cert.org/vuls/id/867593 |
| xforce | www.xforce.iss.net/xforce/xfdb/34854 |
| appwebserver | www.appwebserver.org/forum/viewtopic.php |
| secunia | www.secunia.com/advisories/25636 |
###############################################################################
# OpenVAS Vulnerability Test
# $Id: gb_mbedthis_webapp_http_trace_method_xss_vuln.nasl 7052 2017-09-04 11:50:51Z teissa $
#
# Mbedthis AppWeb HTTP TRACE Method Cross-Site Scripting Vulnerability
#
# Authors:
# Rachana Shetty <[email protected]>
#
# Copyright:
# Copyright (c) 2011 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 could allow attackers to gain sensitive information
or inject arbitrary web script or HTML. This may allow the attacker to steal
cookie-based authentication credentials and to launch other attacks.
Impact Level: System/Application";
tag_affected = "Mbedthis AppWeb versions prior to 2.2.2";
tag_insight = "The flaw is due to improper handling of HTTP requests using the
'TRACE' method, which allows attackers to inject arbitrary HTML via
crafted HTTP TRACE request.";
tag_solution = "Disable TRACE method or upgrade to Mbedthis AppWeb 2.2.2 or later
For updates refer to http://appwebserver.org/index.html";
tag_summary = "The host is running Mbedthis AppWeb Server and is prone to cross
site scripting vulnerability.";
if(description)
{
script_id(802350);
script_version("$Revision: 7052 $");
script_cve_id("CVE-2007-3008");
script_bugtraq_id(24456);
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-09-04 13:50:51 +0200 (Mon, 04 Sep 2017) $");
script_tag(name:"creation_date", value:"2011-12-02 14:47:36 +0530 (Fri, 02 Dec 2011)");
script_name("Mbedthis AppWeb HTTP TRACE Method Cross-Site Scripting Vulnerability");
script_xref(name : "URL" , value : "http://secunia.com/advisories/25636");
script_xref(name : "URL" , value : "http://www.kb.cert.org/vuls/id/867593");
script_xref(name : "URL" , value : "http://xforce.iss.net/xforce/xfdb/34854");
script_xref(name : "URL" , value : "http://www.appwebserver.org/forum/viewtopic.php?t=996");
script_tag(name:"qod_type", value:"remote_vul");
script_category(ACT_ATTACK);
script_copyright("Copyright (c) 2011 Greenbone Networks GmbH");
script_family("General");
script_require_ports("Services/www", 7777);
script_dependencies("find_service.nasl", "http_version.nasl");
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);
exit(0);
}
include("http_func.inc");
include("http_keepalive.inc");
## Check for the default port
if(!port = get_http_port(default:7777)){
port = 7777;
}
## Check port status
if(!get_port_state(port)){
exit(0);
}
## Get the path
req = http_get(item:"/doc/product/index.html", port:port);
res = http_send_recv(port:port, data:req);
## Confirm the application before trying exploit
if("<title>Mbedthis AppWeb" >< res || "<title>Mbedthis Appweb" >< res)
{
## Construct the attack (TRACE) request
req = string("TRACE /doc/product/index.html HTTP/1.1\r\n",
"Host: ", get_host_name(), "\r\n\r\n");
res = http_send_recv(port:port, data:req);
## Confirm the exploit (supports TRACE method or not)
if(egrep(pattern:"^HTTP/.* 200 OK", string:res) && "TRACE" >< res &&
"UnknownMethod 400 Bad Request" >!< res){
security_message(port);
}
}
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