proftpd_user_enum.nasl
来自「漏洞扫描源码,可以扫描linux,windows,交换机路由器」· NASL 代码 · 共 64 行
NASL
64 行
## This script was written by David Maciejak <david dot maciejak at kyxar dot fr># based on work from# (C) Tenable Network Security## Ref: LSS Security## This script is released under the GNU GPL v2#if(description){ script_id(15484); script_version ("$Revision: 38 $"); script_bugtraq_id(11430); script_cve_id ("CVE-2004-1602"); name["english"] = "proftpd < 1.2.11 remote user enumeration"; script_name(english:name["english"]); desc["english"] = "The remote ProFTPd server is as old or older than 1.2.10It is possible to determine which user names are valid on the remote host based on timing analysis attack of the login procedure.An attacker may use this flaw to set up a list of valid usernames for amore efficient brute-force attack against the remote host.Solution : Upgrade to a newer versionRisk factor : Low"; script_description(english:desc["english"]); script_summary(english:"Checks the version of the remote proftpd"); script_category(ACT_GATHER_INFO); script_family(english:"FTP", francais:"FTP"); script_copyright(english:"This script is Copyright (C) 2004 David Maciejak"); script_dependencie("find_service.nes", "ftp_anonymous.nasl"); script_require_ports("Services/ftp", 21); exit(0);}## The script code starts here : #include("ftp_func.inc");port = get_kb_item("Services/ftp");if(!port)port = 21;banner = get_ftp_banner(port:port);if(egrep(pattern:"^220 ProFTPD 1\.2\.([0-9][^0-9]|10[^0-9])", string:banner)){ security_warning(port);}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?