📄 argosoft_multiple_flaws2.nasl
字号:
## This script was written by David Maciejak <david dot maciejak at kyxar dot fr>## This script is released under the GNU GPL v2#if(description){ script_id(16012); script_bugtraq_id(12044); script_version("$Revision: 118 $"); name["english"] = "ArGoSoft Mail Server multiple flaws(2)"; script_name(english:name["english"]); desc["english"] = "The remote host is running the ArGoSoft WebMail interface.There are multiple flaws in this interface which may allow an attackerto bypass authentication, inject HTML in the e-mails read by the usersand even to read arbitrary files on that server.*** OpenVAS solely relied on the banner of this service to issue*** this alert.Solution : Upgrade to ArGoSoft 1.8.7.0 or newerRisk factor : Medium"; script_description(english:desc["english"]); summary["english"] = "Gets the version of the remote ArGoSoft server"; script_summary(english:summary["english"]); script_category(ACT_GATHER_INFO); script_copyright(english:"This script is Copyright (C) 2004 David Maciejak"); family["english"] = "CGI abuses"; family["francais"] = "Abus de CGI"; script_family(english:family["english"], francais:family["francais"]); script_dependencie("http_version.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);if(get_port_state(port)){ res = http_get_cache(item:"/", port:port); if( res == NULL ) exit(0); if((vers = egrep(pattern:".*ArGoSoft Mail Server.*Version", string:res))) { if(ereg(pattern:".*Version.*\((0\.|1\.([0-7]\.|8\.([0-6]\.])))\)", string:vers))security_warning(port); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -