Results 1 to 1 of 1
  1. #1
    openstrife
    openstrife is offline
    Guest
    Join Date
    2013 Mar
    Posts
    1
    Thanks Thanks Given 
    0
    Thanks Thanks Received 
    0
    Thanked in
    0 Posts
    Rep Power
    0

    Trouble finding/hooking Pre-encrpyted WSASend data in MMO Runes of Magic

    I have been at this trying to figure this out for the past 48 hours...... religiously following and learning from this tutorial as I go: tutorial-packet-hacking-reversing-mmo

    In Ollydbg, for many many hours now, I have been breakpointing the WSASend function(send is only used on login) and trying to backtrack and find the data before it is encrypted.

    I'm not expert but this game in the past has never had good support. It doesn't even have any client-side cheat/hack protection, other than encrypted practically every packet. I stumbled upon one site where someone was claiming that the encryption is extremely weak.
    [Can't post link yet due to post count]:
    Code:
      // Actual decryption loop, super hardcore encryption code guys!
            if (size != 0)
                for(int i = 0; i < size; i++)
                {
                    data[i] += key;
                    data[i] ^= key;
                }
    I play around a lot in assembly, though I have little knowledge as of right now as of how to test the above code.


    In Ollydbg I have literally been following hundreds of lines of assembly instructions trying to find the unencrypted chat-messages that I send before I sent them, but I have had no luck what so ever.

    My goal is that hopefully if I can find where the chat data is stored before it is encrypted, then maybe other send-data such as spells and movement will also be stored near there, unencrypted before they are sent.
    Any tips guys? I've honestly hit a brick-wall in following these hundreds of lines of assembly data to no avail.

Similar Threads

  1. Problem finding data Rohan Online with Ollydbg
    By odynz in forum General Programming
    Replies: 1
    Last Post: 2013-04-29, 03:24 AM
  2. [Tool] Runes of Magic FDB Extractor
    By h4x0r in forum Game Files
    Replies: 0
    Last Post: 2011-12-26, 09:37 PM
  3. [Help] a little trouble
    By adamantio in forum Requiem Online
    Replies: 7
    Last Post: 2011-07-02, 08:25 AM
  4. I'm having trouble finding coords
    By Surubre in forum General Game Research
    Replies: 2
    Last Post: 2010-12-24, 01:45 AM
  5. Runes of magic
    By boxoblog in forum Other MMO
    Replies: 1
    Last Post: 2010-11-29, 04:16 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •