lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [day] [month] [year] [list]
Date: Fri, 9 Apr 2004 17:10:22 +0000
From: Luigi Auriemma <aluigi@...ervista.org>
To: bugtraq@...urityfocus.com, bugs@...uritytracker.com,
	news@...uriteam.com, full-disclosure@...ts.netsys.com
Subject: DoS in Rsniff 1.0



#######################################################################

                             Luigi Auriemma

Application:  RSniff (Remote Sniff)
              http://www.cse.sc.edu/~madamanc/projects.html 
Versions:     1.0
Platforms:    Linux
Bug:          Denial of Service
Risk:         low
Exploitation: remote
Date:         09 Apr 2004
Author:       Luigi Auriemma
              e-mail: aluigi@...ervista.org
              web:    http://aluigi.altervista.org


#######################################################################


1) Introduction
2) Bug
3) The Code
4) Fix


#######################################################################

===============
1) Introduction
===============


Rsniff is a remote sniffer for Linux written by Rajesh Kumar
Madamanchi.


#######################################################################

======
2) Bug
======


Look the following code in server.c:

153    {
154        printf ("RSniff Server: Authentication failed!\n");
155        continue;
156    }

This operation happens when a client connects to the Rsniff server and
sends a command different than AUTHENTICATE (a 32 bit number equal to
zero) or simply closes the connection without sending data.
The result is the restart of the binding loop, so the socket will be
recreated BUT the old socket will not be closed.

After 1024 connections the server will finish all the available file
descriptors and will not accept new clients.


#######################################################################

===========
3) The Code
===========


http://aluigi.altervista.org/poc/emptyconn.zip


#######################################################################

======
4) Fix
======


Add "close (new_sockfd);" at line 156:

153    {
154        printf ("RSniff Server: Authentication failed!\n");
155        continue;
156        close (new_sockfd);  /* PATCH */
157    }

However Rajesh has been contacted and will release a new version soon. 


#######################################################################


--- 
Luigi Auriemma
http://aluigi.altervista.org



Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ