Lucene search
K

Rendezvous < 8.0.0 Crafted Packet Remote DoS

🗓️ 02 Dec 2007 00:00:00Reported by TenableType 
nessus
 nessus
🔗 www.tenable.com👁 33 Views

The remote host contains an application that is prone to a denial of service attack. The Rendezvous' rvd daemon fails to properly validate input in incoming packets before using it to allocate memory. An unauthenticated, remote attacker may be able to leak memory and eventually exhaust memory on the affected system

Related
Refs
Code
ReporterTitlePublishedViews
Family
ATTACKERKB
CVE-2007-5553
18 Oct 200720:17
attackerkb
CVE
CVE-2007-4158
3 Aug 200721:00
cve
Cvelist
CVE-2007-4158
3 Aug 200721:00
cvelist
EUVD
EUVD-2007-4142
7 Oct 202500:30
euvd
NVD
CVE-2007-4158
3 Aug 200721:17
nvd
Prion
Memory corruption
3 Aug 200721:17
prion
Prion
Code injection
18 Oct 200720:17
prion
#
# (C) Tenable Network Security, Inc.
#


include('compat.inc');

if (description)
{
  script_id(28376);
  script_version("1.14");

  script_cve_id("CVE-2007-4158");
  script_bugtraq_id(25132);

  script_name(english:"Rendezvous < 8.0.0 Crafted Packet Remote DoS");
  script_summary(english:"Checks version of Rendezvous browser admin interface");

 script_set_attribute(attribute:"synopsis", value:
"The remote host contains an application that is prone to a denial of
service attack." );
 script_set_attribute(attribute:"description", value:
"The remote host appears to be running Rendezvous, a commercial
messaging software product used for building distributed applications

According to its banner, Rendezvous' rvd daemon fails to properly
validate input in incoming packets before using it to allocate memory. 
By sending a specially crafted packet with a length field of 0, an
unauthenticated, remote attacker may be able to leak memory and
eventually exhaust memory on the affected system." );
 # http://web.archive.org/web/20071215011534/http://www.irmplc.com/index.php/160-Advisory-025
 script_set_attribute(attribute:"see_also", value:"http://www.nessus.org/u?ab43b01a" );
 script_set_attribute(attribute:"solution", value:
"Upgrade to TIBCO Rendezvous version 8.0 or later as that reportedly
addresses the issue." );
 script_set_cvss_base_vector("CVSS2#AV:N/AC:L/Au:N/C:N/I:N/A:C");
 script_set_cvss_temporal_vector("CVSS2#E:U/RL:OF/RC:C");
 script_set_attribute(attribute:"cpe", value:"cpe:/a:tibco:rendezvous");
 script_set_attribute(attribute:"exploitability_ease", value:"No known exploits are available");
 script_set_attribute(attribute:"exploit_available", value:"false");
 script_cwe_id(399);
 script_set_attribute(attribute:"plugin_publication_date", value: "2007/12/02");
 script_set_attribute(attribute:"vuln_publication_date", value: "2007/07/31");
 script_set_attribute(attribute:"plugin_modification_date", value:"2020/09/21");
script_set_attribute(attribute:"plugin_type", value:"remote");
script_end_attributes();


  script_category(ACT_GATHER_INFO);
  script_family(english:"Denial of Service");

  script_copyright(english:"This script is Copyright (C) 2007-2020 and is owned by Tenable, Inc. or an Affiliate thereof.");

  script_dependencies("http_version.nasl");
  script_require_ports("Services/www", 7580, 7585);

  exit(0);
}

include('global_settings.inc');
include('misc_func.inc');
include('http.inc');


port = get_kb_item("Services/www");
if (!port) port = 7580;
if (!get_port_state(port)) exit(0);


# Check the version in the banner.
banner = get_http_banner(port:port);
if (!banner) exit(0);

banner = strstr(banner, "Server:");
banner = banner - strstr(banner, '\r\n');
if ("Rendezvous HTTP Server " >< banner)
{
  version = strstr(banner, "Rendezvous HTTP Server ") - "Rendezvous HTTP Server ";
  if (version =~ "^[0-7]\.")
  {
    report = string(
      "The Rendezvous browser administration interface on the remote host\n",
      "returned the following banner :\n",
      "\n",
      "  ", banner, "\n"
    );
    security_hole(port:port, extra:report);
  }
}

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

21 Sep 2020 00:00Current
5.5Medium risk
Vulners AI Score5.5
CVSS 27.8
EPSS0.02354
33