[OpenSource] Packet Editor coded in C

08/09/2011 14:39 summoner01#121
Compiled and now testing, this is really neat man, thanks for the release. This has made me want to start up learning programming again lol.
08/12/2011 03:31 xsh#122
You're welcome :-)
08/16/2011 14:16 ajiasd#123
so , ich bin nach langer zeit nochmal zurück und muss feststellen das einige server immernoch nciht onehit etc geblockt haben
wollte dich mal fragen xsh, OB man durch modifizieren der buyinfo oder mody pakete noch durch toms letzten AH kommt
~Kekz
08/16/2011 23:20 xsh#124
Was meinst du mit letzten? Durch den letzten Public Anti-Hack kann man kommen, aber nicht durch den letzten Privat (Zumindest weiss ich nichts davon, und hab mich damit auch nicht beschäftigt, und habe es auch nicht vor).

Wenn du dich fürs reverse-engineeren interessierst, kann ich dir nur Olly-Debug und IDA Pro empfehlen. Natürlich ist ASM da eine vorraussetzung ;-) (Bei IDA Pro gibt es aber eine erweiterung (HexRays) mit dem du ein komplettes Programm in C speichern kannst. Es ist aber nicht kompilierbar, sondern dient zur leserlichkeit von Code)
08/17/2011 02:21 ajiasd#125
ne ich schreib mir nen eigenes programm, klauen ist ja langweilig ;D
bin gerade an nem netten awakeningbot dran, dem man sagt wann er auhören soll etc
naja hast du lust mit mir mal bei icq/msn zu reden?
08/19/2011 00:55 wakoko2021#126
can't compile the file... what compiler can i use that supported the winsock2.h? because im know some in coding but don't know how to compile such files...

can someone pm me how to compile this??...

sorry for being a noob..
08/28/2011 19:01 xsh#127
@ajiasd: Da ich nichts mehr mit Flyff zu tun habe, danke ich das es Sinnlos ist über ICQ/MSN zu chatten.

@wakoko2021: I'm using Visual Studio 2010.
08/30/2011 11:54 Daniiii#128
#sticked, ein wenig spät, aber besser als nie :o
09/01/2011 13:06 wakoko2021#129
@xsh oh i see i have only visual studio 2008... >.<
09/02/2011 22:43 xsh#130
Quote:
Originally Posted by Daniiii View Post
#sticked, ein wenig spät, aber besser als nie :o
Danke ^^


Quote:
Originally Posted by wakoko2021 View Post
@xsh oh i see i have only visual studio 2008... >.<
It's not limited to VS2010. It's really only the project files you cannot open with lower versions of VS. Make a new empty dll project and import each single file to it (.cpp and .h), then compile. Should do the trick ;-)
09/15/2011 15:32 ≈CLYDE≈#131
@xsh pls english .. cause i dont understand your language xDD .. and please what does this do ? Pls Reply In Quick Tnx :)
And Btw does this Work For Flyff US ? cause i play FLYFF US .. and ii wanna Get Some Money // xD ..

More Power to your post .. and
09/17/2011 05:29 thokz15#132
GREAT ! :D
09/18/2011 10:01 ≈CLYDE≈#133
what will this do ?
More Power :)
09/21/2011 14:57 xsh#134
Everything is described in the first post. It's the source code for a proxy. You can add your own stuff to it and fool the server with fake packets. The whole infiltration hack is based on this. Now i guess you know whats possible ;-)

If you want to make this work for official Flyff client, you will need to hide the injected library from GG, change the function hooks, and injection method. Good luck on this one, because you will need a good knowledge base to achieve this ;-)
10/02/2011 16:57 cookie69#135
This is a great stuff ty xsh :)

I just have a question :

I am trying to send an attack packet but I a missing some parameters :/

My piece of code is this one:

Code:
[I]		FP Packet;
		BYTE packet_str[256];
		int packet_size = 0;

		Packet.Append((DWORD)0xFFFFFFFF);	// Needed
		Packet.Append(PACKETTYPE_MELEE_ATTACK);		// I wanna attack :)
			[COLOR="Red"]// what params to put here? :S[/COLOR]
		Packet.WriteHeader(dwSessionID);	// Generate the headers, to bypass CRC checks

		Packet.GetStr(packet_str);			// Now, i want that into a char array that can be sent via send() command
		packet_size = Packet.GetSize();		// Oh, i need the size too ^^

		// send attack packet
		send(s, (const char *)packet_str, packet_size, 0);[/I]


When I start the ommand (I write "attack" in the chat window), I got a message from the server : "Please wait before attacking again..." but the mob is not attacked!
How can I figure out all the params to add when I create PACKETTYPE_MELEE_ATTACK? (or any other packet btw)

Ty fr your replay :)