📄 iis_ver_check.nasl
字号:
# # This script is Copyright (C) 2003 SensePost");## Modification by David Maciejak# <david dot maciejak at kyxar dot fr># based on 404print.c from Digital Defense#if(description){ script_id(11874); script_version("$Revision: 118 $"); name["english"] = "IIS Service Pack - 404"; script_name(english:name["english"]); desc["english"] = "The Patch level (Service Pack) of the remote IIS server appears to be lower than the current IIS service pack level. As each service pack typicallycontains many security patches, the server may be at risk.Caveat: This test makes assumptions of the remote patch level based on static return values (Content-Length) within the IIS Servers 404 error message.As such, the test can not be totally reliable and should be manually confirmed.Solution: Ensure that the server is running the latest stable Service Pack Risk factor : High"; script_description(english:desc["english"]); summary["english"] = "IIS Service Pack Check"; script_summary(english:summary["english"]); script_category(ACT_GATHER_INFO); script_copyright(english:"This script is Copyright (C) 2003 SensePost & Copyright (C) 2004 David Maciejak"); family["english"] = "Web Servers"; script_family(english:family["english"]); script_dependencie("find_service.nes", "http_version.nasl", "www_fingerprinting_hmap.nasl"); script_require_ports("Services/www", 80); exit(0);}# Check starts hereinclude("http_func.inc");include("http_keepalive.inc");port = get_http_port(default:80);sig = get_http_banner(port:port);if ( sig && "IIS" >!< sig ) exit(0);if(! get_port_state(port)) exit(0);r1 = http_get(item:"/openvas" + rand(), port:port);r = http_keepalive_send_recv(data:r1, port:port);if ( r == NULL ) exit(0);if (!ereg(pattern:"^HTTP.* 404 .*", string:r))exit(0);v4 = egrep(pattern:"^Server:.*Microsoft-IIS/4\.0", string:r);v5 = egrep(pattern:"^Server:.*Microsoft-IIS/5\.0", string:r);v51 = egrep(pattern:"^Server:.*Microsoft-IIS/5\.1", string:r);v6 = egrep(pattern:"^Server:.*Microsoft-IIS/6\.0", string:r);cltmp = eregmatch(pattern:".*Content-Length: ([0-9]+).*", string:r);if (isnull(cltmp)) exit(0);cl=int(cltmp[1]);ver = string("The remote IIS server *seems* to be ");#if(v4)#{# if (102 == cl)# ver = ver + string("Microsoft IIS 4 - Sp0\n"); # if (451 == cl)# ver = ver + string("Microsoft IIS 4 - SP6\n");# if (461 == cl)# ver = ver + string("Microsoft IIS 4 - SP3\n");#}if(v5){#??# if(111 == cl)# ver = ver + string("Microsoft IIS 5 - SP4\n"); if(3243 == cl) ver = ver + string("Microsoft IIS 5 - SP0 or SP1\n"); if(2352 == cl) ver = ver + string("Microsoft IIS 5 - SP2 or SRP1\n"); if(4040 == cl) ver = ver + string("Microsoft IIS 5 - SP3 or SP4\n");}if(v51){ if (1330 == cl) ver = ver + string("Microsoft IIS 5.1 - SP2\n"); if (4040 == cl) ver = ver + string("Microsoft IIS 5.1 - SP0\n");}if(v6){ if (2166 == cl) ver = ver + string("Microsoft IIS 6.0 - SP0\n"); if (1635 == cl) ver = ver + string("Microsoft IIS 6.0 - w2k3 build 3790\n");}if ( ver != "The remote IIS server *seems* to be " ) security_note(port:port, data:ver);exit(0);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -