Lucene search
K

Terminal Server Client RDP File Processing BOF Vulnerabilities

🗓️ 28 Feb 2011 00:00:00Reported by Copyright (C) 2011 SecPodType 
openvas
 openvas
🔗 plugins.openvas.org👁 18 Views

Terminal Server Client RDP File Processing Buffer Overflow Vulnerabilitie

Related
Refs
Code
ReporterTitlePublishedViews
Family
Circl
CVE-2011-0900
2 Feb 201100:00
circl
Circl
CVE-2011-0901
2 Feb 201100:00
circl
CVE
CVE-2011-0900
7 Feb 201120:19
cve
CVE
CVE-2011-0901
7 Feb 201120:19
cve
Cvelist
CVE-2011-0900
7 Feb 201120:19
cvelist
Cvelist
CVE-2011-0901
7 Feb 201120:19
cvelist
EUVD
EUVD-2011-0912
3 Oct 202520:07
euvd
EUVD
EUVD-2011-0913
3 Oct 202520:07
euvd
NVD
CVE-2011-0900
7 Feb 201121:00
nvd
NVD
CVE-2011-0901
7 Feb 201121:00
nvd
Rows per page
###############################################################################
# OpenVAS Vulnerability Test
# $Id: secpod_ts_client_mult_bof_vuln.nasl 7823 2017-11-20 08:54:04Z cfischer $
#
# Terminal Server Client RDP File Processing BOF Vulnerabilities
#
# 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 allows attackers to execute arbitrary
code, crash the application or deny service to legitimate users.

Impact Level: Application.";

tag_affected = "Terminal Server Client version 0.150";

tag_insight = "Multiple flaws are due to a boundary error in the
'tsc_launch_remote()' function, when processing a 'hostname', 'username',
'password' and 'domain' parameters.";

tag_solution = "No solution or patch was made available for at least one year
since disclosure of this vulnerability. Likely none will be provided anymore.
General solution options are to upgrade to a newer release, disable respective
features, remove the product or replace the product by another one.";

tag_summary = "This host is installed with Terminal Server Client and is prone
to multiple buffer overflow vulnerabilities.";

if(description)
{
  script_id(902297);
  script_version("$Revision: 7823 $");
  script_tag(name:"last_modification", value:"$Date: 2017-11-20 09:54:04 +0100 (Mon, 20 Nov 2017) $");
  script_tag(name:"creation_date", value:"2011-02-28 11:12:07 +0100 (Mon, 28 Feb 2011)");
  script_cve_id("CVE-2011-0900", "CVE-2011-0901");
  script_bugtraq_id(46099);
  script_tag(name:"cvss_base", value:"6.8");
  script_tag(name:"cvss_base_vector", value:"AV:N/AC:M/Au:N/C:P/I:P/A:P");
  script_name("Terminal Server Client RDP File Processing BOF Vulnerabilities");
  script_xref(name : "URL" , value : "http://secunia.com/advisories/43120");
  script_xref(name : "URL" , value : "http://xforce.iss.net/xforce/xfdb/65100");
  script_xref(name : "URL" , value : "http://www.exploit-db.com/exploits/16095/");

  script_tag(name:"qod_type", value:"executable_version");
  script_category(ACT_GATHER_INFO);
  script_copyright("Copyright (C) 2011 SecPod");
  script_family("Buffer overflow");
  script_dependencies("gather-package-list.nasl");
  script_mandatory_keys("login/SSH/success");
  script_exclude_keys("ssh/no_linux_shell");

  script_tag(name : "insight" , value : tag_insight);
  script_tag(name : "solution" , value : tag_solution);
  script_tag(name : "summary" , value : tag_summary);
  script_tag(name : "impact" , value : tag_impact);
  script_tag(name : "affected" , value : tag_affected);
  script_tag(name:"solution_type", value:"WillNotFix");
  exit(0);
}


include("ssh_func.inc");
include("version_func.inc");

sock = ssh_login_or_reuse_connection();
if(!sock){
  exit(0);
}

## Check the file path
paths = find_file(file_name:"NEWS.gz",file_path:"/doc/tsclient/",
                  useregex:TRUE, regexpar:"$", sock:sock);
## check for each path
foreach binName (paths)
{
  ## get the version by reading file using zcat command
  tscVer = get_bin_version(full_prog_name:"zcat", version_argv:binName,
                ver_pattern:"v.([0-9]\.[0-9]+)" ,sock:sock);
  
  ##  check version
  if(tscVer[1] != NULL)
  {
    ## Check tsclient version equal to 0.150
    if(version_is_equal(version:tscVer[1], test_version:"0.150"))
    {
      security_message(0);
      close(sock);
      exit(0);
    }
  }
}

## Close the socket
close(sock);
ssh_close_connection();

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