Search found 9 matches

by hal9000
27 May 2008, 21:39
Forum: Developers Corner
Topic: Cracking Symphony
Replies: 8
Views: 6078

Re: Cracking Symphony

he just used REC http://www.backerstreet.com/rec/rec.htm


here's another decompile in pseudo C
http://openkore.pastebin.com/f2d945001
by hal9000
14 May 2008, 05:03
Forum: Developers Corner
Topic: Legacy V3 | Bot + Encryption bypass |
Replies: 55
Views: 51664

Re: Legacy V3 | Bot + Encryption bypass |

there aren't exported functions, all the weird things are done in DllMain() called apon dll init. There is only an useless function: public _dummyfunc _dummyfunc proc near push ebp mov ebp, esp pop ebp retn _dummyfunc endp that's DllMain: BOOL __stdcall DllMain(HINSTANCE hinstDLL, DWORD fdwReason, L...
by hal9000
10 May 2008, 10:40
Forum: Developers Corner
Topic: Legacy V3 | Bot + Encryption bypass |
Replies: 55
Views: 51664

Re: Legacy V3 | Bot + Encryption bypass |

to load a dll inside kore you just need this: Win32::LoadLibrary("$RealBin/harmony.dll"); But it will not work because it wont overload any method from ws2_32, instead it will find the processid, inject the process memory exchanging 2 functions (send() and connect()). the exported _dummyfunc is just...
by hal9000
09 May 2008, 06:12
Forum: Development Help
Topic: OpenKore Developer Documentation
Replies: 4
Views: 3846

Re: OpenKore Developer Documentation

yep, waiting, in the meanwhile i'm just readind kore sources :)
by hal9000
08 May 2008, 16:42
Forum: Development Help
Topic: OpenKore Developer Documentation
Replies: 4
Views: 3846

OpenKore Developer Documentation

hi, I loveved the old http://openkore.sourceforge.net/srcdoc/

after the forums hack we lost even that helpful library, can be reuploaded? or you lost completely it?
by hal9000
08 May 2008, 16:25
Forum: Announcements
Topic: [Vote Now!] Logo Contest!
Replies: 30
Views: 46061

Re: [Vote Now!] Logo Contest!

battlemode's logos are very simple and effective :) I like them expecially 2^ and 6^ one. The "garbage" style fits very good in the start.exe icon.
The other candidates are too much colorfull for a logo, they could fit better a wallpaper
by hal9000
08 May 2008, 05:26
Forum: Developers Corner
Topic: Legacy V3 | Bot + Encryption bypass |
Replies: 55
Views: 51664

Re: Legacy V3 | Bot + Encryption bypass |

Kees wrote:And would you know how to..?
the dll must be reversed. well maybe not. I'm experimenting... I'm not an expertise in windows internals and perl, so i'm still learning

tmbotter wrote:so is everyone else getting past account server and getting stuck on the char server?
just read the tread :roll:
by hal9000
07 May 2008, 17:44
Forum: Developers Corner
Topic: Legacy V3 | Bot + Encryption bypass |
Replies: 55
Views: 51664

Re: Legacy V3 | Bot + Encryption bypass |

Barracks wrote:So what's the next step in connecting? =/
the use of harmony.dll or just a plugin that resemble that encryption
by hal9000
07 May 2008, 08:22
Forum: Developers Corner
Topic: Legacy V3 | Bot + Encryption bypass |
Replies: 55
Views: 51664

Re: Legacy V3 | Bot + Encryption bypass |

the whole real code is in the DllMain(x,x,x) BOOL __stdcall DllMain(HINSTANCE hinstDLL,DWORD fdwReason,LPVOID lpvReserved) _dummyfunc doesn nothing :) and valour.dll's header is: 4d 61 73 74 65 72 20 6f 66 20 4d 61 67 69 63 Master of Magic so it's a grf In harmony.dll there are some chunks of data, ...