| Reporter | Title | Published | Views | Family All 97 |
|---|---|---|---|---|
| OpenSSH < 4.2p1 GSSAPI Authentication Credential Escalation | 6 Sep 200500:00 | – | nessus | |
| OpenSSH < 4.2 Multiple Vulnerabilities | 21 Aug 201900:00 | – | nessus | |
| CentOS 4 : openssh (CESA-2005:527) | 29 Jun 201300:00 | – | nessus | |
| Fedora Core 3 : openssh-3.9p1-8.0.3 (2005-858) | 17 Sep 200500:00 | – | nessus | |
| Fedora Core 4 : openssh-4.2p1-fc4.1 (2005-860) | 17 Sep 200500:00 | – | nessus | |
| HP-UX PHSS_34566 : HP-UX Secure Shell Remote Denial of Service (DoS) (HPSBUX02090 SSRT051058 rev.2) | 16 Jun 200600:00 | – | nessus | |
| HP-UX PHSS_34567 : HP-UX Secure Shell Remote Denial of Service (DoS) (HPSBUX02090 SSRT051058 rev.2) | 16 Jun 200600:00 | – | nessus | |
| Juniper NSM Servers < 2012.1 Multiple Vulnerabilities | 13 Sep 201300:00 | – | nessus | |
| MDKSA-2005:172 : openssh | 15 Jan 200600:00 | – | nessus | |
| OpenSSH < 4.2 Multiple Vulnerabilities | 7 Sep 200500:00 | – | nessus |
| Source | Link |
|---|---|
| securitytracker | www.securitytracker.com/id |
| lists | www.lists.mindrot.org/pipermail/openssh-unix-announce/2005-September/000083.html |
| secunia | www.secunia.com/advisories/16686 |
###############################################################################
# OpenVAS Vulnerability Test
# $Id: secpod_sshd_gssapi_credential_disclosure_vuln.nasl 7029 2017-08-31 11:51:40Z teissa $
#
# OpenSSH 'sshd' GSSAPI Credential Disclosure Vulnerability
#
# Authors:
# Antu Sanadi <[email protected]>
#
# Copyright:
# Copyright (c) 2011 SecPod, http://www.secpod.com
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2
# (or any later version), 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_impact = "Successful exploitation could allows remote attackers to bypass security
restrictions and gain escalated privileges.
Impact Level: Application";
tag_affected = "OpenSSH version prior to 4.2";
tag_insight = "The flaw is due to an error in handling GSSAPI credential delegation,
Which allow GSSAPI credentials to be delegated to users who log in with
methods other than GSSAPI authentication (e.g. public key) when the client
requests it.";
tag_solution = "Upgrade OpenSSH to 4.2 or later,
For updates refer to http://www.openssh.com/";
tag_summary = "The host is running OpenSSH sshd with GSSAPI enabled and is prone
to credential disclosure vulnerability.";
if(description)
{
script_id(902488);
script_version("$Revision: 7029 $");
script_cve_id("CVE-2005-2798");
script_bugtraq_id(14729);
script_tag(name:"cvss_base", value:"5.0");
script_tag(name:"cvss_base_vector", value:"AV:N/AC:L/Au:N/C:P/I:N/A:N");
script_tag(name:"last_modification", value:"$Date: 2017-08-31 13:51:40 +0200 (Thu, 31 Aug 2017) $");
script_tag(name:"creation_date", value:"2011-11-16 12:24:22 +0530 (Wed, 16 Nov 2011)");
script_name("OpenSSH 'sshd' GSSAPI Credential Disclosure Vulnerability");
script_xref(name : "URL" , value : "http://secunia.com/advisories/16686");
script_xref(name : "URL" , value : "http://securitytracker.com/id?1014845");
script_xref(name : "URL" , value : "https://lists.mindrot.org/pipermail/openssh-unix-announce/2005-September/000083.html");
script_tag(name:"qod_type", value:"remote_banner_unreliable");
script_category(ACT_GATHER_INFO);
script_copyright("Copyright (C) 2011 SecPod ");
script_family("General");
script_dependencies("ssh_detect.nasl");
script_require_ports("Services/ssh", 22);
script_tag(name : "impact" , value : tag_impact);
script_tag(name : "affected" , value : tag_affected);
script_tag(name : "insight" , value : tag_insight);
script_tag(name : "solution" , value : tag_solution);
script_tag(name : "summary" , value : tag_summary);
exit(0);
}
include("version_func.inc");
## Get the default port
port = get_kb_item("Services/ssh");
if(!port){
port = 22;
}
## Get th SSH banner
banner = get_kb_item("SSH/banner/" + port );
if(!banner){
exit(0);
}
ver = eregmatch(pattern:"ssh-.*openssh[_-]{1}([0-9.]+[p0-9]*)", string:tolower(banner));
## Get version from the banner
if(isnull(ver[1])){
exit(0);
}
## Check the versions prior to 4.2
if(version_is_less(version:ver[1], test_version:"4.2"))
{
## Get the supported protocols versions from kb
auth = get_kb_item("SSH/supportedauth/" + port);
if(auth)
{
## Check the authentication method and confirm the vulnerability
if("gssapi" >< auth){
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