📄 iis5_isapi_printer.nasl
字号:
## This script was written by Matt Moore <matt.moore@westpoint.ltd.uk>## www.westpoint.ltd.uk## Script audit and contributions from Carmichael Security <http://www.carmichaelsecurity.com># Erik Anderson <eanders@carmichaelsecurity.com># Added link to the Bugtraq message archive## See the Nessus Scripts License for details#if(description){ script_id(10661); script_version ("$Revision: 38 $"); name["english"] = "IIS 5 .printer ISAPI filter applied"; script_name(english:name["english"]); desc["english"] = "Synopsis :Remote Web server supports Internet Printing ProtocolDescription :IIS 5 has support for the Internet Printing Protocol(IPP), which is enabled in a default install. The protocol is implemented in IIS5 as an ISAPI extension. At least one security problem (a buffer overflow)has been found with that extension in the past, so we recommendyou disable it if you do not use this functionality.Solution :To unmap the .printer extension: 1.Open Internet Services Manager. 2.Right-click the Web server choose Properties from the context menu. 3.Master Properties 4.Select WWW Service -> Edit -> HomeDirectory -> Configuration and remove the reference to .printer from the list.See also :http://online.securityfocus.com/archive/1/181109Risk factor :None / CVSS Base Score : 0 (AV:R/AC:L/Au:NR/C:N/A:N/I:N/B:N)"; script_description(english:desc["english"]); summary["english"] = "Tests for IIS5 .printer ISAPI filter"; script_summary(english:summary["english"]); script_category(ACT_GATHER_INFO); script_copyright(english:"This script is Copyright (C) 2001 Matt Moore"); family["english"] = "Web Servers"; script_family(english:family["english"]); script_dependencie("find_service.nes", "no404.nasl", "http_version.nasl", "www_fingerprinting_hmap.nasl"); script_require_ports("Services/www", 80); exit(0);}# Actual check starts here...# Check makes a request for NULL.printerinclude("http_func.inc");include("http_keepalive.inc");port = get_http_port(default:80);sig = get_kb_item("www/hmap/" + port + "/description");if ( sig && "IIS" >!< sig ) exit(0);if(get_port_state(port)){ req = http_get(item:"/NULL.printer", port:port); r = http_keepalive_send_recv(port:port, data:req); if("Error in web printer install" >< r) security_note(port);}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -