apache_server_status.nasl

来自「漏洞扫描源码,可以扫描linux,windows,交换机路由器」· NASL 代码 · 共 65 行

NASL
65
字号
## This script was written by Vincent Renardias <vincent@strongholdnet.com>## Licence : GPL v2#if(description){ script_id(10677); script_version ("$Revision: 38 $"); name["english"] = "Apache /server-status accessible"; name["francais"] = "Apache /server-status accessible";  script_name(english:name["english"], francais:name["francais"]);  desc["english"] = "Requesting the URI /server-status gives information aboutthe currently running Apache.Risk factor : LowSolution : If you don't use this feature, comment the appropriate section inyour httpd.conf file. If you really need it, limit its access tothe administrator's machine."; script_description(english:desc["english"]);  summary["english"] = "Makes a request like http://www.example.com/server-status"; summary["francais"] = "Fait une requ阾e du type http://www.example.com/server-status"; script_summary(english:summary["english"], francais:summary["francais"]);  script_category(ACT_GATHER_INFO);   script_copyright(english:"This script is Copyright (C) 2001 StrongHoldNet",		francais:"Ce script est Copyright (C) 2001 StrongHoldNet"); family["english"] = "Misc."; family["francais"] = "Divers"; script_family(english:family["english"], francais:family["francais"]); script_dependencie("find_service.nes", "http_version.nasl"); script_require_ports("Services/www", 80); script_require_keys("www/apache"); exit(0);}## The script code starts here#include("http_func.inc");include("http_keepalive.inc");port = get_http_port(default:80);str = "Apache Server Status";if(get_port_state(port)){  buffer = http_get(item:"/server-status", port:port);  data = http_keepalive_send_recv(port:port, data:buffer);  if( str >< data )  {   security_warning(port);  }}

⌨️ 快捷键说明

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