You last visited: Today at 09:38
Advertisement
[Source]Chat Spammer
Discussion on [Source]Chat Spammer within the League of Legends Hacks, Bots, Cheats & Exploits forum part of the League of Legends category.
01/05/2014, 20:00
#1
elite*gold: 20
Join Date: Mar 2007
Posts: 840
Received Thanks: 452
[Source]Chat Spammer
Yo,
simple chat spammer.
Attached Files
LoLChatSpammer.rar
(15.1 KB, 295 views)
01/05/2014, 20:10
#2
elite*gold: 0
Join Date: Jan 2014
Posts: 1
Received Thanks: 0
How can I work it ?
01/05/2014, 22:27
#3
elite*gold: 0
Join Date: Oct 2013
Posts: 350
Received Thanks: 20
anyone tried this?
01/05/2014, 23:51
#4
elite*gold: 0
Join Date: Mar 2013
Posts: 17
Received Thanks: 2
well the file is clear but 1 file is suspicious so care:
Scanned with virus Total
01/06/2014, 04:26
#5
elite*gold: 1
Join Date: May 2011
Posts: 1,937
Received Thanks: 1,241
u have source code of it.. u can check if its virus or not
Code:
//bUTL9R ChatHook, credits to florian0 from cp-g, uc-forums
//=====================================================
// Includes
//=====================================================
#include "Manager.h"
void CallChat(char* Text);
//==================================================================
// Important Variables
//==================================================================
DWORD dwModuleBase, dwModuleSize, dwSendMessageAddress;
bool bAutoSpam = false;
void CreateConsole()
{
AllocConsole();
freopen( "CONOUT$", "wb", stdout );
}
void CheckHotkeys()
{
while (true)
{
Sleep(10);
if (GetAsyncKeyState(VK_NUMPAD1) &1)
{
if (bAutoSpam == false)
{
bAutoSpam = true;
}
else
{
bAutoSpam = false;
}
}
if (GetAsyncKeyState(VK_NUMPAD2) &1)
{
CallChat("/all ____________________________");
CallChat("/all __GGGGGG__________GGGGGG");
CallChat("/all GG_______________GG");
CallChat("/all GG____GGG_______GG_____GGG");
CallChat("/all GG_____GG________GG_____GG");
CallChat("/all _GGGGGG___________GGGGGG");
CallChat("/all ____________________________");
CallChat("/all well played guys!");
}
if (GetAsyncKeyState(VK_NUMPAD3) &1)
{
CallChat("/all I molest rubber chicken!");
}
if (GetAsyncKeyState(VK_NUMPAD4) &1)
{
CallChat("/all B1tch where you going?!");
}
if (GetAsyncKeyState(VK_NUMPAD5) &1)
{
CallChat("/all Not even close baby!");
}
if (GetAsyncKeyState(VK_NUMPAD6) &1)
{
CallChat("/all My favorite poker card? The ACE!");
}
if (GetAsyncKeyState(VK_NUMPAD7) &1)
{
CallChat("/all Nope, not on my watch!");
}
if (bAutoSpam == true)
{
Sleep(100);
CallChat("/all What is love?");
CallChat("/all Baby, don't hurt me");
CallChat("/all Don't hurt me no more");
CallChat("/all What is love?");
CallChat("/all Baby, don't hurt me");
CallChat("/all Don't hurt me no more");
}
}
}
//==================================================================
// CallChat
//Our CallChat function, wich calls the original CallChat function with our text parameter
//==================================================================
void CallChat(char* Text)
{
__asm
{
push Text
call dwSendMessageAddress
}
return;
}
//==================================================================
// InitializeChatHook
//==================================================================
void InitializeChatHook()
{
CreateConsole();
//Get module Base Address and module size
dwModuleBase = (DWORD)GetModuleHandle("League of Legends.exe");
//GetModuleSize()?!
MODULEINFO modinfo;
GetModuleInformation(GetCurrentProcess(), GetModuleHandle("League of Legends.exe"), &modinfo, sizeof(MODULEINFO));
dwModuleSize = modinfo.SizeOfImage;
printf("Modulebase: %x , ModuleSize: %x \n", dwModuleBase, dwModuleSize);
printf("Searching chat address!\n");
dwSendMessageAddress = FrameWork->FindPattern(dwModuleBase, dwModuleSize, (PBYTE)"\x55\x8B\xEC\x6A\xFF\x68\x00\x00\x00\x00\x64\xA1\x00\x00\x00\x00\x50\x83\xEC\x3C\xA1\x00\x00\x00\x00\x33\xC5\x89\x45\xEC\x56\x57\x50\x8D\x45\xF4\x64\xA3\x00\x00\x00\x00\x8B\x55\x08", "xxxxxx????xx????xxxxx????xxxxxxxxxxxxx????xxx");
if (dwSendMessageAddress != 0)
{
printf("Found chat address: %x\n", dwSendMessageAddress);
//MessageBox(NULL, "Found chat address. Ready to go!", "Attention!", MB_OK);
CheckHotkeys();
}
else
{
printf("Did not find chat address!\n");
//MessageBox(NULL, "Oh shit i cant find the chat address!", "Attention!", MB_OK);
return;
}
return;
}
01/07/2014, 14:21
#6
elite*gold: 0
Join Date: Oct 2007
Posts: 127
Received Thanks: 4
Hier bin ich echt mal gespannt wie das klappt.
01/09/2014, 23:45
#7
elite*gold: 0
Join Date: Apr 2013
Posts: 10
Received Thanks: 0
How Can I use it? It builds to dll. How can I use this dll?
01/09/2014, 23:48
#8
elite*gold: 0
Join Date: Jan 2014
Posts: 36
Received Thanks: 5
u have to use a injector, i think?
Correct me if im wrong
01/10/2014, 00:02
#9
elite*gold: 0
Join Date: Apr 2013
Posts: 10
Received Thanks: 0
yep I found,
it works fine
01/10/2014, 18:10
#10
elite*gold: 20
Join Date: Mar 2007
Posts: 840
Received Thanks: 452
Inject into league of legends.exe and use your numpad keys.
01/11/2014, 17:25
#11
elite*gold: 0
Join Date: Jan 2014
Posts: 102
Received Thanks: 55
Ich hätte keine Klasse für 2 Funktionen gemacht, naja, was solls, was ich eigtl. sagen wollte:
Lad mal die RiotLaucher oder launcher.maestro.dll in IDA oder olly, da gibts im export funktionen die heißen "SendChatMessage" oder "SendMessageToAllClients".
Mit denen kann man schneller und viel einfacher dein Projekt realisieren
Trotzdem bestimmt eine gute Übung das ganze.
06/29/2014, 15:07
#12
elite*gold: 0
Join Date: Jun 2014
Posts: 45
Received Thanks: 0
this chat spammers.. grrr!
Similar Threads
CHAT-SPAMMER !
12/02/2012 - Off Topic - 4 Replies
Hay Leuts !
Ich habe hier einen Wundervollen CHAT-SPAMMER zusammengebastelt !
Ich bin neu in der Programmierung und würde mich über Kritik freuen !
Anleitung eigentlich ganz simpel :P
Beim Textfeld den zu spammenden Text eingeben, und auf START SPAMMING bzw. STOP SPAMMING drücken !
Man kann die Intervalle in MS einstellen (1000 ms = 1 sek.) aber ich empfehle
eher nicht die niedrigste Stufe (50 MS) zu verwenden, da manche Computer
überlastet werden können !
Falls man möchte, dass der...
Chat - Spammer [V.1.0.0]
03/11/2011 - Main - 2 Replies
Hallo Community^^,
ich habe mich mal ein paar Minuten an den PC gehockt und diesen kleinen Chat Spammer gebastelt.
Was kann er?
Er kann Sätze,Buchstaben sowie Sonderzeichen ect Spammen.
Außerdem kann man einstellen wieoft er Spammen soll , und
wann er anfangen soll (Countdown).
So funktioniert er:
Chat-Spammer
06/15/2010 - Aion Hacks, Bots, Cheats & Exploits - 7 Replies
~~Fusion Spammer - Cheaters Paradize - V4~~
Status
Unpatchable
Hotkey
F3
Virusscan
0/41 (0%)
Chat-Spammer
01/03/2010 - WoW Exploits, Hacks, Tools & Macros - 0 Replies
~~Fusion Spammer - Cheaters Paradize - V4~~
Status
Unpatchable
Hotkey
F3
Virusscan
0/41 (0%)
All times are GMT +1. The time now is 09:38 .