| Reporter | Title | Published | Views | Family All 7 |
|---|---|---|---|---|
| CVE-2006-2531 | 22 May 200623:00 | – | cve | |
| CVE-2006-2531 | 22 May 200623:00 | – | cvelist | |
| EUVD-2006-2531 | 7 Oct 202500:30 | – | euvd | |
| Ipswitch WhatsUp Professional Crafted Header Authentication Bypass | 18 May 200600:00 | – | nessus | |
| CVE-2006-2531 | 22 May 200623:10 | – | nvd | |
| Ipswitch WhatsUp Professional Authentication bypass detection | 24 Oct 200800:00 | – | openvas | |
| Authentication flaw | 22 May 200623:10 | – | prion |
| Source | Link |
|---|---|
| ipswitch | www.ipswitch.com/support/whatsup_professional/releases/wup200601.asp |
| ftusecurity | www.ftusecurity.com/pub/whatsup.public.pdf |
| securityfocus | www.securityfocus.com/archive/1/434247/30/0/threaded |
# OpenVAS Vulnerability Test
# $Id: ipswitch_whatsup_auth_bypass.nasl 5838 2017-04-03 10:26:36Z cfi $
# Description: Ipswitch WhatsUp Professional Authentication bypass detection
#
# Authors:
# David Maciejak <david dot maciejak at kyxar dot fr>
#
# Copyright:
# Copyright (C) 2006 David Maciejak
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2,
# as published by the Free Software Foundation
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
#
tag_summary = "The remote web server is affected by an authentication bypass flaw.
Description :
The remote host is running Ipswitch WhatsUp Professional, which is
used to monitor states of applications, services and hosts.
The version of WhatsUp Professional installed on the remote host
allows an attacker to bypass authentication with a specially-crafted
request.";
tag_solution = "Upgrade to WhatsUp Professional 2006.01 or later.";
if(description)
{
script_id(80067);
script_version("$Revision: 5838 $");
script_tag(name:"last_modification", value:"$Date: 2017-04-03 12:26:36 +0200 (Mon, 03 Apr 2017) $");
script_tag(name:"creation_date", value:"2008-10-24 23:33:44 +0200 (Fri, 24 Oct 2008)");
script_tag(name:"cvss_base", value:"7.5");
script_tag(name:"cvss_base_vector", value:"AV:N/AC:L/Au:N/C:P/I:P/A:P");
script_cve_id("CVE-2006-2531");
script_bugtraq_id(18019);
script_name("Ipswitch WhatsUp Professional Authentication bypass detection");
script_category(ACT_GATHER_INFO);
script_tag(name:"qod_type", value:"remote_vul");
script_copyright("This script is Copyright (C) 2006 David Maciejak");
script_family("Web application abuses");
script_dependencies("gb_get_http_banner.nasl");
script_require_ports("Services/www", 8022);
script_tag(name : "solution" , value : tag_solution);
script_tag(name : "summary" , value : tag_summary);
script_xref(name : "URL" , value : "http://www.ftusecurity.com/pub/whatsup.public.pdf");
script_xref(name : "URL" , value : "http://www.securityfocus.com/archive/1/434247/30/0/threaded");
script_xref(name : "URL" , value : "http://www.ipswitch.com/support/whatsup_professional/releases/wup200601.asp");
script_mandatory_keys("Ipswitch/banner");
exit(0);
}
include("http_func.inc");
include("http_keepalive.inc");
port = get_http_port(default:8022);
banner = get_http_banner(port:port);
if ("Server: Ipswitch" >!< banner) exit(0);
# Send a request and make sure we're required to login.
host = http_host_name( port:port );
req = string(
'GET /NmConsole/Default.asp?bIsJavaScriptDisabled=false HTTP/1.1\r\n',
'Host: ', host, '\r\n',
'User-Agent: ', OPENVAS_HTTP_USER_AGENT, '\r\n',
'Accept: text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*.*;q=0.5\r\n',
'Accept-Language: en-us,en;q=0.5\r\n',
'Accept-Encoding: gzip,deflate\r\n',
'Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7\r\n',
'Referer: http://', host, '/\r\n',
'\r\n'
);
res = http_keepalive_send_recv(port:port, data:req, bodyonly:FALSE);
if(res == NULL)exit(0);
# If so...
if ("Location: /NmConsole/Login.asp" >< res)
{
req = string(
'GET /NmConsole/Default.asp?bIsJavaScriptDisabled=false HTTP/1.1\r\n',
'Host: ', host, '\r\n',
'User-Agent: Ipswitch/1.0\r\n',
'User-Application: NmConsole\r\n',
'Accept: text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*.*;q=0.5\r\n',
'Accept-Language: en-us,en;q=0.5\r\n',
'Accept-Encoding: gzip,deflate\r\n',
'Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7\r\n',
'Referer: http://', host, '/\r\n',
'\r\n'
);
res = http_keepalive_send_recv(port:port, data:req, bodyonly:TRUE);
if(res == NULL)exit(0);
# There's a problem if we're now authenticated.
if ("<title>Group Device List for" >< res) security_message(port);
}
Data
Build on a solid foundation with Vulners data
We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data
Api
Power your application with Vulners API
The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access
App
Assess and manage vulnerabilities with Vulners tools
Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation