|
You last visited: Today at 21:20
Advertisement
[Release][GF]PM flooder kick hack
Discussion on [Release][GF]PM flooder kick hack within the Metin2 Hacks, Bots, Cheats, Exploits & Macros forum part of the Metin2 category.
12/01/2014, 20:58
|
#1
|
elite*gold: 0
Join Date: Jul 2013
Posts: 33
Received Thanks: 106
|
[Release][GF]PM flooder kick hack
Hi everyone,
First of all, Francoiz's script gave me the idea to do this, so thanks to him.
What does this tool do?
- It's a simply private message flooder which cause a kick in the target, and sadly sometimes in our client too.
I get kicked every time, why?
Try to reduce the speed of the flooding by modifying the "Sleep(1)". The ideal is between 3-5.
How can I use it, do I need to download an injector or something like that?
- No, you shouldn't. Just drop the downloaded kick_hack.mix to the client and start the game with the patcher.
Is it safe to use?
- Sure it is, you can reach the source of it here:
Code:
#include <Windows.h>
#include <string>
#include <fcntl.h>
#include "python.h"
const char* __MESSAGE = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa";
const char* __MODULE_NAME = "SendWhisperPacket";
const char* __MODULE = "m2net";
BOOL IsFlood = FALSE;
DWORD WINAPI Flooder(LPVOID);
DWORD WINAPI Console(LPVOID);
VOID CreateConsole(VOID);
char Name[30];
BOOL WINAPI DllMain(HMODULE MODULE, DWORD WHAT, LPVOID PVOID)
{
switch (WHAT)
{
case DLL_PROCESS_ATTACH:
CreateConsole();
CreateThread(NULL, 0, Console, NULL, 0, NULL);
break;
}
return TRUE;
}
DWORD WINAPI Console(LPVOID)
{
printf("Type '-' to cancel the flooding\n");
while (TRUE)
{
printf("Target name: ");
fgets(Name, 30, stdin);
// Exit
if (Name[0] == '-')
{
IsFlood = FALSE;
printf("Flood cancelled\n");
}
// Start flooding
else
{
Name[strlen(Name) - 1] = '\0';
IsFlood = TRUE;
CreateThread(NULL, 0, Flooder, NULL, 0, NULL);
}
}
return FALSE;
}
DWORD WINAPI Flooder(LPVOID)
{
// Create the argument
PyObject* WhisperArgs = PyTuple_New(2);
PyTuple_SetItem(WhisperArgs, 0, PyString_FromString(Name));
PyTuple_SetItem(WhisperArgs, 1, PyString_FromString(__MESSAGE));
// Get the function
PyObject* Func = PyObject_GetAttrString(PyImport_ImportModule(__MODULE), __MODULE_NAME);
while (IsFlood)
{
// Run it and cleanup
Py_DECREF(PyObject_Call(Func, WhisperArgs, NULL));
Sleep(1);
}
return TRUE;
}
VOID CreateConsole(VOID)
{
int hConHandle;
long lStdHandle;
CONSOLE_SCREEN_BUFFER_INFO coninfo;
FILE *fp;
AllocConsole();
GetConsoleScreenBufferInfo(GetStdHandle(STD_OUTPUT_HANDLE),&coninfo);
coninfo.dwSize.Y = 1500;
SetConsoleScreenBufferSize(GetStdHandle(STD_OUTPUT_HANDLE),coninfo.dwSize);
lStdHandle = (long)GetStdHandle(STD_OUTPUT_HANDLE);
hConHandle = _open_osfhandle(lStdHandle, _O_TEXT);
fp = _fdopen(hConHandle, "w");
*stdout = *fp;
setvbuf(stdout, NULL, _IONBF, 0);
lStdHandle = (long)GetStdHandle(STD_INPUT_HANDLE);
hConHandle = _open_osfhandle(lStdHandle, _O_TEXT);
fp = _fdopen(hConHandle, "r");
*stdin = *fp;
setvbuf(stdin, NULL, _IONBF, 0);
lStdHandle = (long)GetStdHandle(STD_ERROR_HANDLE);
hConHandle = _open_osfhandle(lStdHandle, _O_TEXT);
fp = _fdopen(hConHandle, "w");
*stderr = *fp;
setvbuf(stderr, NULL, _IONBF, 0);
std::ios::sync_with_stdio();
}
I'm a private server owner, how can I fix it?
Here is the tutorial:
Can I get a Virustotal of the file?
Here it is:
Download:
|
|
|
12/01/2014, 22:10
|
#2
|
elite*gold: 0
Join Date: Jul 2012
Posts: 44
Received Thanks: 3
|
make it for private :-)
|
|
|
12/01/2014, 23:39
|
#3
|
elite*gold: 405
Join Date: Dec 2007
Posts: 6,615
Received Thanks: 6,358
|
Quote:
Originally Posted by eskocze
make it for private :-)
|
He even provided you with the source code, why don't you do it?
|
|
|
12/02/2014, 00:08
|
#4
|
elite*gold: 0
Join Date: May 2008
Posts: 1,415
Received Thanks: 5,444
|
as far as i know using python funcs this way, will crash metin
|
|
|
12/02/2014, 09:03
|
#5
|
elite*gold: 0
Join Date: Jul 2013
Posts: 33
Received Thanks: 106
|
Just sometimes, not really noticeable.
|
|
|
12/02/2014, 10:07
|
#6
|
elite*gold: 0
Join Date: Jan 2014
Posts: 7
Received Thanks: 0
|
Hi ^^
Please Can You Give Us More Informations How We Can Start THis ? Or A Video !
|
|
|
12/02/2014, 10:08
|
#7
|
elite*gold: 0
Join Date: Jul 2013
Posts: 33
Received Thanks: 106
|
What kind of the video? Download the kick_hack.mix file and drop it to the client folder.
|
|
|
12/02/2014, 10:26
|
#8
|
elite*gold: 0
Join Date: Jan 2014
Posts: 7
Received Thanks: 0
|
I Just Did And It Doesn't Wok For Me
|
|
|
12/02/2014, 10:27
|
#9
|
elite*gold: 0
Join Date: Jul 2013
Posts: 33
Received Thanks: 106
|
What message do you get, or what happen when you're starting the game? I can't help if you don't explain your problem.
|
|
|
12/02/2014, 10:33
|
#10
|
elite*gold: 405
Join Date: Dec 2007
Posts: 6,615
Received Thanks: 6,358
|
Quote:
Originally Posted by Sanchez_x
What message do you get, or what happen when you're starting the game? I can't help if you don't explain your problem.
|
He probably tries it on a private server client..
|
|
|
12/02/2014, 10:46
|
#11
|
elite*gold: 0
Join Date: Nov 2012
Posts: 20
Received Thanks: 0
|
i drop mix file in the metin2ro folder and appear a cmd where say write name of targget
or something like that i wrote the name and kick me from server and i tried to login again and kick me again
|
|
|
12/02/2014, 11:28
|
#12
|
elite*gold: 0
Join Date: Jul 2013
Posts: 33
Received Thanks: 106
|
Probably because the speed of the flooding is too fast, try with this reduced one:
|
|
|
12/02/2014, 12:57
|
#13
|
elite*gold: 260
Join Date: Oct 2011
Posts: 153
Received Thanks: 52
|
Aww still get kicked haha. With the first one whole metin2 (NL) (GF) chrashes. With the one you just uploaded i only log out :P
|
|
|
12/02/2014, 14:37
|
#14
|
elite*gold: 0
Join Date: Oct 2014
Posts: 10
Received Thanks: 0
|
Do not work
Hi, in metin2 ita it doesn't work, an error message appear in wich notice that the file MSVCP120.dll is missing. Can you fix it? thanks for your work ^^
|
|
|
12/02/2014, 15:08
|
#15
|
elite*gold: 0
Join Date: May 2008
Posts: 1,415
Received Thanks: 5,444
|
Quote:
Originally Posted by Bobuko112
i drop mix file in the metin2ro folder and appear a cmd where say write name of targget
or something like that i wrote the name and kick me from server and i tried to login again and kick me again
|
i dont think anything will help. anti flooding protection
|
|
|
Similar Threads
|
[Release] HTTP Flooder
12/26/2012 - Coders Trading - 0 Replies
hello guys im gonna sell my http flooder for some elite*gold, if u want to have it, add me on skype and send me some elite gold.
price is 10 E*G
|
Ich suche Ts Flooder/I screach a Ts Flooder
06/01/2009 - General Coding - 4 Replies
Ich suche eine Ts Flooder mit download link oder MSN Skype addi
|
All times are GMT +1. The time now is 21:22.
|
|