Lucene search

K
openvasCopyright (c) 2011 Greenbone Networks GmbHOPENVAS:802407
HistoryDec 07, 2011 - 12:00 a.m.

OpenSSH 'sshd' Challenge Response Authentication Buffer Overflow Vulnerability

2011-12-0700:00:00
Copyright (c) 2011 Greenbone Networks GmbH
plugins.openvas.org
34

EPSS

0.557

Percentile

97.7%

The host is running OpenSSH sshd with ChallengeResponseAuthentication
enabled and is prone to buffer overflow vulnerability.

###############################################################################
# OpenVAS Vulnerability Test
# $Id: gb_sshd_challenge_resp_authentication_bof_vuln.nasl 7015 2017-08-28 11:51:24Z teissa $
#
# OpenSSH 'sshd' Challenge Response Authentication Buffer Overflow Vulnerability
#
# Authors:
# Antu Sanadi <[email protected]>
#
# Copyright:
# Copyright (c) 2011 Greenbone Networks GmbH, http://www.greenbone.net
#
# 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 execute arbitrary
  code and gain escalated privileges.
  Impact Level: Application";
tag_affected = "OpenSSH versions 2.3.1 to 3.3";
tag_insight = "The flaw is due to an error in handling a large number of responses
  during challenge response authentication when using PAM modules with
  interactive keyboard authentication (PAMAuthenticationViaKbdInt).";
tag_solution = "Upgrade to OpenSSH version 3.4 or later
  For updates refer to http://www.openssh.com/";
tag_summary = "The host is running OpenSSH sshd with ChallengeResponseAuthentication
  enabled and is prone to buffer overflow vulnerability.";

if(description)
{
  script_id(802407);
  script_version("$Revision: 7015 $");
  script_cve_id("CVE-2002-0640");
  script_bugtraq_id(5093);
  script_tag(name:"cvss_base", value:"10.0");
  script_tag(name:"cvss_base_vector", value:"AV:N/AC:L/Au:N/C:C/I:C/A:C");
  script_tag(name:"last_modification", value:"$Date: 2017-08-28 13:51:24 +0200 (Mon, 28 Aug 2017) $");
  script_tag(name:"creation_date", value:"2011-12-07 18:20:44 +0530 (Wed, 07 Dec 2011)");
  script_name("OpenSSH 'sshd' Challenge Response Authentication Buffer Overflow Vulnerability");


  script_tag(name:"qod_type", value:"remote_banner_unreliable");
  script_category(ACT_GATHER_INFO);
  script_copyright("Copyright (c) 2011 Greenbone Networks GmbH");
  script_family("Buffer overflow");
  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);
  script_xref(name : "URL" , value : "http://www.kb.cert.org/vuls/id/369347");
  script_xref(name : "URL" , value : "http://www.cert.org/advisories/CA-2002-18.html");
  script_xref(name : "URL" , value : "http://marc.info/?l=bugtraq&m=102521542826833&w=2");
  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 2.x and 3.x
if(ver[1] =~ "^(2|3)\..*")
{
  ## Check the versions prior to 3.4
  if(version_is_less(version:ver[1], test_version:"3.4"))
  {
    ## Get the supported protocols versions from kb
    auth = get_kb_item("SSH/supportedauth/" + port);
    if(auth)
    {
      ## Check the authentication method is challenge response
      ## authentication using PAM modules with interactive keyboard
      ## authentication
      if("keyboard-interactive" >< auth){
        security_message(port);
      }
    }
  }
}