Results 1 to 10 of 35

Thread: No Xtrap Client

Threaded View

Previous Post Previous Post   Next Post Next Post
  1. #1
    gm3x
    gm3x is offline
    Member-in-training gm3x's Avatar
    Join Date
    2011 Feb
    Location
    Rio Grande, RS - Brazil
    Posts
    92
    Thanks Thanks Given 
    4
    Thanks Thanks Received 
    56
    Thanked in
    16 Posts
    Rep Power
    0

    No Xtrap Client

    Hi pals, Came here today to share a AIKABR executable running stable with no xtrap functions, u can use it for any purposes, on the most times, it lets you 5~10 minutes online before dc you, can be use for packet analyzing and decryption, as game analyzing, cheat engine memory edition, and many other purposes, this is for studies purposes, if u wanna play it with hacks, must emulate xtrap packets....

    Again, thanks to pdepker for the great help with this...

    The link contain:

    -AIKABR No Xtrap (19/09)
    -rPE Packet Editor
    -WPE Pro Packet analyzer
    -Cheat Engine 6.1

    All tools to start searching some funny things, if u wanna decrypt packets, u must analyze them and make your own algorithm or use Ollydbg to find the EDXs and other changers, below is some more about decryption,a very good article... ^^


    PHP Code:
    #ifndef _INFINITY_TALE_CRYPT_
    #define _INFINITY_TALE_CRYPT_
    #include <string.h>

    int laEncrypt(chardataint length)
    {
    int size length;

    data[4] ^= 0x76;
    for(
    int i 5sizei++)
    data[i] ^= data[i-1];
    return 
    1;
    }

    int laDecrypt(chardataint length)
    {
    int size length;
    char k data[4];
    char j 0;

    data[4] ^= 0x76;
    for(
    int i 5sizei++)
    {
    data[i];
    data[i] ^= k;
    j;
    }
    return 
    1;
    }

    #endif 
    by SaiMs


    a) Let's take a look at a sample header and decrypt it.


    char crypt[] = {0x0A, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, 0x00, 0x00, 0x01};

    or simply
    [ INT32 ][ CHAR8 ] [Char[]]
    [ HEADER ][PACKET ID] [DATA]
    0A 00 00 00 64 00 00 00 00 01 (HEX)

    0x0A is the LENGTH of the packet and is not needed in the decryption process.
    This is an INT, little-endian and uses the first 4 bytes to find how long the TOTAL length is.

    0x0A = 10 in decimal, the length of this packet is indeed 10.

    ENF NOTE: Packet headers are NOT encrypted.

    1.b) Let's step through the encryption.



    PHP Code:
    data[4] ^= 0x76
    We skip to the packet id, and xor it with 0x76(magic #).

    This reveals the packet ID, so in this case:

    64 XOR 0x76 = 12 You can use a sci calculator if you want, these are accurate results as I have checked them with Bravo's posts. (I assume he used traitor's sniffer or w.e, I'll be releasing my own soon with a GUI)

    After the header, we have a for loop:



    PHP Code:
    data[i] ^= data[i-1]; 
    It starts at 5, as we are finished with the header and the packet id.

    This is just some xor swap logic.

    Grab the first byte,


    PHP Code:
    data[i]; 

    xor it with k, which is packet id(init)


    PHP Code:
    data[i] ^= k
    make new k value, the data we just produced



    PHP Code:
    j

    repeat for entire routine and we produce:
    Quote:
    12 64 00 00 00 01
    tada.

    Reverse for encrypt.

    by SaiMs (other forum)

    This simple example and code was made on C, more about C language at:

    C programming.com - Your Resource for C and C++ Programming

    About Cheat Engine, you can use Speedhack just for fun, or to make somegood things like grind plants and back to char selection after grind one or two, to dont get dc, so login again^^, or run faster, movement speed on AIKA haves server side, but u can try skip by pressing right mouse button and moving camera from a side to other
    Cheat Engine can change memoryadresses of the client, memory values and everything too...

    Read more here:

    https://progamercity.net/aika/1713-i...ss-aikabr.html

    On Olly debug, u can launch it attached to debugger just opening it and running by F9 key, and use Olly dbg functions ...




    Finally, here is the link to all tools:

    http://www.mediafire.com/?nzw7s6np5q7x6q6

    for the client, just make a second installation of the game, update any file, and after, change the game original client, for the client on the file above, don't open the launcher execute directly the AIKABR.exe ...


    Enjoy, before they patch it , Xtrap staff always looking for things like this to patch ^^'

    Thanks to pdepker for the help...

    Maybe now u can take ThisIsSPARTAA down alone hahaha

    Thanks if u like


    LINK UPDATED, SORRY FOR THE PROBLEM...
    Last edited by gm3x; 2011-09-23 at 08:16 PM.

  2. The Following 18 Users Say Thank You to gm3x For This Useful Post:


Similar Threads

  1. What is for the Russian client?
    By siberian in forum Aika Online
    Replies: 1
    Last Post: 2011-01-28, 12:29 PM
  2. New Requiem client
    By Dwar in forum Requiem Online
    Replies: 18
    Last Post: 2011-01-02, 09:23 PM
  3. New DeXTrap for every client. XTrap bypass
    By Dwar in forum Aika Online
    Replies: 0
    Last Post: 2010-12-11, 06:39 AM
  4. Xtrap
    By bhebhe in forum Aika Online
    Replies: 1
    Last Post: 2010-12-03, 09:44 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
  •