Lucene search
+L

TeamViewer Multiple Vulnerabilities (CVE-2019-18988) - Linux

🗓️ 16 Mar 2021 00:00:00Reported by Copyright (C) 2021 Greenbone Networks GmbHType 
openvas
 openvas
🔗 plugins.openvas.org👁 28 Views

TeamViewer Multiple Vulnerabilities (CVE-2019-18988) - Linux. Multiple vulnerabilities in TeamViewer have been fixed in the update affecting Linux systems

Related
Refs
Code
# Copyright (C) 2021 Greenbone Networks GmbH
# Some text descriptions might be excerpted from (a) referenced
# source(s), and are Copyright (C) by the respective right holder(s).
#
# SPDX-License-Identifier: GPL-2.0-or-later
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# 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.

CPE = "cpe:/a:teamviewer:teamviewer";

if(description)
{
  script_oid("1.3.6.1.4.1.25623.1.0.117249");
  script_version("2022-08-09T10:11:17+0000");
  script_xref(name:"CISA", value:"Known Exploited Vulnerability (KEV) catalog");
  script_xref(name:"URL", value:"https://www.cisa.gov/known-exploited-vulnerabilities-catalog");
  script_cve_id("CVE-2019-18988");
  script_tag(name:"cvss_base", value:"4.4");
  script_tag(name:"cvss_base_vector", value:"AV:L/AC:M/Au:N/C:P/I:P/A:P");
  script_tag(name:"last_modification", value:"2022-08-09 10:11:17 +0000 (Tue, 09 Aug 2022)");
  script_tag(name:"severity_vector", value:"CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H");
  script_tag(name:"severity_origin", value:"NVD");
  script_tag(name:"severity_date", value:"2020-08-24 17:37:00 +0000 (Mon, 24 Aug 2020)");
  script_tag(name:"creation_date", value:"2021-03-16 13:52:40 +0000 (Tue, 16 Mar 2021)");
  script_name("TeamViewer Multiple Vulnerabilities (CVE-2019-18988) - Linux");
  script_copyright("Copyright (C) 2021 Greenbone Networks GmbH");
  script_category(ACT_GATHER_INFO);
  script_family("General");
  script_dependencies("gb_teamviewer_detect_lin.nasl");
  script_mandatory_keys("TeamViewer/Linux/Ver");

  script_xref(name:"URL", value:"https://community.teamviewer.com/English/discussion/92688/linux-v14-7-250049-full-change-log");
  script_xref(name:"URL", value:"https://community.teamviewer.com/English/discussion/92687/linux-v13-2-256470-full-change-log");
  script_xref(name:"URL", value:"https://community.teamviewer.com/English/discussion/92685/linux-v12-0-250640-full-native-change-log");
  script_xref(name:"URL", value:"https://community.teamviewer.com/English/discussion/92684/linux-v11-0-256402-full-change-log");
  script_xref(name:"URL", value:"https://community.teamviewer.com/English/discussion/92683/linux-v10-0-254577-full-change-log");
  script_xref(name:"URL", value:"https://community.teamviewer.com/English/discussion/92682/linux-v9-0-255407-full-change-log");
  script_xref(name:"URL", value:"https://community.teamviewer.com/English/discussion/92681/linux-v8-0-253737-full-change-log");
  script_xref(name:"URL", value:"https://community.teamviewer.com/English/discussion/82264/specification-on-cve-2019-18988");
  script_xref(name:"URL", value:"https://whynotsecurity.com/blog/teamviewer/");

  script_tag(name:"summary", value:"TeamViewer is prone to multiple vulnerabilities.");

  script_tag(name:"vuldetect", value:"Checks if a vulnerable version is present on the
  target host.");

  script_tag(name:"insight", value:"The update has fixed an issue raised in CVE-2019-18988
  (Proxy password & Options password).

  Note that this update might also include various additional vulnerabilities tracked in
  the related CVE. However there is no clear communication by the vendor which
  vulnerabilities mentioned in the CVE are fixed in which release.

  Please see the references for more technical details.");

  script_tag(name:"affected", value:"TeamViewer versions 7.0.43148 through 14.7.x.");

  script_tag(name:"solution", value:"The vendor has released updates. Please see the
  references for more information.");

  script_tag(name:"solution_type", value:"VendorFix");
  script_tag(name:"qod_type", value:"executable_version");

  exit(0);
}

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

if( ! infos = get_app_version_and_location( cpe:CPE, exit_no_version:TRUE ) )
  exit( 0 );

version = infos["version"];
location = infos["location"];

if( version_is_greater_equal( version:version, test_version:"7.0.43148" ) &&
    version_is_less( version:version, test_version:"8.0.253737" ) ) {
  report = report_fixed_ver( installed_version:version, fixed_version:"8.0.253737", install_path:location );
  security_message( port:0, data:report );
  exit( 0 );
}

else if( version =~ "^9\.0" && version_is_less( version:version, test_version:"9.0.255407" ) ) {
  report = report_fixed_ver( installed_version:version, fixed_version:"9.0.255407", install_path:location );
  security_message( port:0, data:report );
  exit( 0 );
}

else if( version =~ "^10\.0" && version_is_less( version:version, test_version:"10.0.254577" ) ) {
  report = report_fixed_ver( installed_version:version, fixed_version:"10.0.254577", install_path:location );
  security_message( port:0, data:report );
  exit( 0 );
}

else if( version =~ "^11\.0" && version_is_less( version:version, test_version:"11.0.256402" ) ) {
  report = report_fixed_ver( installed_version:version, fixed_version:"11.0.256402", install_path:location );
  security_message( port:0, data:report );
  exit( 0 );
}

else if( version =~ "^12\.0" && version_is_less( version:version, test_version:"12.0.250640" ) ) {
  report = report_fixed_ver( installed_version:version, fixed_version:"12.0.250640", install_path:location );
  security_message( port:0, data:report );
  exit( 0 );
}

else if( version =~ "^13\.[0-2]" && version_is_less( version:version, test_version:"13.2.256470" ) ) {
  report = report_fixed_ver( installed_version:version, fixed_version:"13.2.256470", install_path:location );
  security_message( port:0, data:report );
  exit( 0 );
}

else if( version =~ "^14\.[0-7]" && version_is_less( version:version, test_version:"14.7.250049" ) ) {
  report = report_fixed_ver( installed_version:version, fixed_version:"14.7.250049", install_path:location );
  security_message( port:0, data:report );
  exit( 0 );
}

exit( 99 );

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

09 Aug 2022 00:00Current
7High risk
Vulners AI Score7
CVSS 24.4
CVSS 3.17
EPSS0.04707
SSVC
28