Knight Online Hack (Source) C#, Hook DirectInput, Hook/Send Packets etc.

15 Ağustos 2008 – 21:28

Aradığını bulamadıysanız arama yapın!

I was making a hack for pvt. Knight Online servers, but i’m really bored with KO,
and i’ve no intention of completing this so i’m sharing this.

Some part are still missing like auto-repair, sending skill (like koexp mode, DI mode is ready) (i said its incomplete)

- Speed Hack, Wall Hack, Always Lupine, Mana Save.
- Atack (DirectInput Mode), Auto Using Potions.
- SendPacket function is ready so u can make an Idle Attack Mode (You just have to get the skill ids from the tbl file and work a little on it)
- HookingReceivedPackets is ready.
- I implemented Auto-Loot (It uses both HookReceivedPackets and SendPacket functions)
- Pointers and offsets are stored in database file, change these values and it can be used in any version of KO.(i hope)

Sry about the untidy codes, unnecessary globals etc. (did i say it was incomplete?)

I know most of this is already available in pablo’s xhack, what is different is this is in c# thats all smile Knight Online Hack (Source) C#, Hook DirectInput, Hook/Send Packets etc.

Sample Code :

CODE
public void SendPackets(Byte[] pPacket, IntPtr Handle, IntPtr KO_PKTBMA, IntPtr KO_SNDFNC)
{
IntPtr BytesAddr;
long pSize;
Byte[] pCode;

pSize = pPacket.GetUpperBound(0) – pPacket.GetLowerBound(0) + 1;
BytesAddr = VirtualAllocEx(Handle, IntPtr.Zero, 1024, MEM_COMMIT, PAGE_READWRITE);

WriteProcessMemory(Handle, BytesAddr, pPacket, pSize, 0);

String cCode = “”;
cCode = “60a1″ + AlignDWORD(KO_PKTBMA) + “8b0d” + AlignDWORD(KO_PKTBMA) + “68″ + AlignDWORD(new IntPtr (pSize)) + “68″ + AlignDWORD(BytesAddr) + “bf” + AlignDWORD(KO_SNDFNC) + “ffd761c3″;

pCode = ConvHEX2ByteArray(cCode);
ExecuteRemoteCode(pCode, Handle);

VirtualFreeEx(Handle, BytesAddr, 0, MEM_RELEASE);

}

Some Pics:
43371434yr6 Knight Online Hack (Source) C#, Hook DirectInput, Hook/Send Packets etc.
41966530mh1 Knight Online Hack (Source) C#, Hook DirectInput, Hook/Send Packets etc.
74899181qi6 Knight Online Hack (Source) C#, Hook DirectInput, Hook/Send Packets etc.

used Visual Studio 2008
Download:
http://rapidshare.com/files/126777303/KOHack.rar.html

Bookmark : Google Facebookhspace=2 slashdot YahooMyWeb Digg Technorati Delicious Yumile Live Oyyla Reddit Furl Tusul Bagcik

Yorum Ekle