Lucene search
+L

GSM Manager Authentication Bypass

🗓️ 08 Nov 2013 00:00:00Reported by Copyright (C) 2013 Greenbone AGType 
openvas
 openvas
🔗 plugins.openvas.org👁 26 Views

GSM Manager Authentication Bypass impacting Greenbone OS 2.2.0-1 up to 2.2.0-19 with enabled public OM

Related
Refs
Code
ReporterTitlePublishedViews
Family
zdt
zdt
OpenVAS Manager 4.0 - Authentication Bypass Vulnerability PoC
21 Jul 201400:00
zdt
cve
CVE
CVE-2013-6765
19 May 201414:00
cve
cvelist
Cvelist
CVE-2013-6765
19 May 201414:00
cvelist
exploitdb
Exploit DB
OpenVAS Manager 4.0 - Authentication Bypass
10 Jul 201400:00
exploitdb
euvd
EUVD
EUVD-2013-6567
7 Oct 202500:30
euvd
exploitpack
exploitpack
OpenVAS Manager 4.0 - Authentication Bypass
10 Jul 201400:00
exploitpack
nvd
NVD
CVE-2013-6765
19 May 201414:55
nvd
openvas
OpenVAS
OpenVAS Manager Authentication Bypass Vulnerability (OVSA20131108)
8 Nov 201300:00
openvas
nessus
Tenable Nessus
OpenVAS Administrator / Manager Authentication Bypass
15 Nov 201300:00
nessus
prion
Prion
Design/Logic Flaw
19 May 201414:55
prion
Rows per page
# SPDX-FileCopyrightText: 2013 Greenbone AG
# 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-only

CPE = "cpe:/a:openvas:openvas_manager";

if(description)
{
  script_oid("1.3.6.1.4.1.25623.1.0.103832");
  script_version("2023-07-27T05:05:08+0000");
  script_cve_id("CVE-2013-6765");
  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_tag(name:"last_modification", value:"2023-07-27 05:05:08 +0000 (Thu, 27 Jul 2023)");
  script_tag(name:"creation_date", value:"2013-11-08 13:02:55 +0200 (Fri, 08 Nov 2013)");
  script_name("GSM Manager Authentication Bypass");
  script_category(ACT_GATHER_INFO);
  script_family("General");
  script_copyright("Copyright (C) 2013 Greenbone AG");
  script_dependencies("gb_openvas_manager_detect.nasl", "gb_greenbone_os_consolidation.nasl");
  script_mandatory_keys("greenbone/gos/detected");

  script_tag(name:"impact", value:"Attackers can exploit these issues to gain unauthorized access to the
  affected application and perform certain actions.");

  script_tag(name:"vuldetect", value:"If public OMP is enabled, try to bypass OMP authentication by sending a special crafted request.
  If public OMP is not enabled, check the GOS version.");

  script_tag(name:"insight", value:"A software bug in the server module 'OpenVAS Manager' allowed to bypass the OMP
  authentication procedure. The attack vector is remotely available in case public OMP is enabled.
  In case of successful attack, the attacker gains partial rights to execute OMP commands. The bypass
  authentication is, however, incomplete and several OMP commands will fail to execute properly.");

  script_tag(name:"solution", value:"Upgrade at least to Greenbone OS 2.2.0-20.");

  script_tag(name:"summary", value:"The remote GSM Manager is prone to an authentication bypass.");

  script_tag(name:"affected", value:"Greenbone OS 2.2.0-1 up to 2.2.0-19 when public OMP is enabled.");

  script_xref(name:"URL", value:"https://www.greenbone.net/en/security-response-team/#toggle-id-6");

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

  exit(0);
}

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

if( ! get_kb_item( "greenbone/gos/detected" ) )
  exit( 0 );

# public omp enabled
if( port = get_app_port( cpe:CPE, service:"omp_gmp" ) ) {

  if( ! get_app_location( cpe:CPE, port:port, nofork:TRUE ) )
    exit( 0 );

  soc = open_sock_tcp( port );
  if( ! soc )
    exit( 0 );

  req = "<get_version/><get_targets/>";
  send( socket:soc, data:req + '\r\n' );
  res = recv( socket:soc, length:1024 );
  close( soc );

  if( "get_targets_response" >< res && "target id" >< res ) {
    report = 'By sending the request "' + req + '" to the remote OMP service it was possible to bypass the authentication. Response:\n\n' + res;
    security_message( port:port, data:report );
    exit( 0 );
  }
# public omp disabled
} else {

  if( ! vers = get_kb_item( "greenbone/gos/version" ) )
    exit( 0 );

  vers = str_replace( string:vers, find:"-", replace:"." );

  if( version_is_less( version:vers, test_version:"2.2.0.20" ) ) {
    report = report_fixed_ver( installed_version:vers, fixed_version:"2.2.0-20" );
    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

27 Jul 2023 00:00Current
6.7Medium risk
Vulners AI Score6.7
CVSS 27.5
EPSS0.07271
26