Thread: OSRS Latest Deob

Results 1 to 9 of 9
  1. #1 OSRS Latest Deob 
    Registered Member
    Nando's Avatar
    Join Date
    Feb 2009
    Age
    29
    Posts
    3,517
    Thanks given
    2,439
    Thanks received
    1,108
    Rep Power
    5000
    Download osrs.decompiled.zip @ UppIT


    run as applet

    params;
    Code:
    13 - 28824
    8 - false
    10 - 301
    14 - .runescape.com
    15 - 0
    11 - 5
    2 - ElZAIrq5NpKN6D3mDdihco3oPeYN2KFy2DCquj7JMmECPmLrDP3Bnw
    6 - true
    5 - 
    9 - false
    1 - http://www.runescape.com/g=oldscape/slr.ws?order=LPWM
    4 - 0
    7 - 0
    3 - 0
    12 - 0
    already dumps xteas


    Reply With Quote  
     

  2. Thankful users:


  3. #2  
    Banned

    Join Date
    Oct 2012
    Posts
    4,710
    Thanks given
    1,679
    Thanks received
    1,105
    Rep Power
    0
    Thanks will use to dump data
    Reply With Quote  
     

  4. Thankful user:


  5. #3  
    Registered Member

    Join Date
    Feb 2013
    Posts
    1,682
    Thanks given
    401
    Thanks received
    402
    Rep Power
    446
    Sweet release, thanks Nando.
    Reply With Quote  
     

  6. Thankful user:


  7. #4  
    Banned
    Join Date
    Jul 2015
    Posts
    126
    Thanks given
    21
    Thanks received
    9
    Rep Power
    0
    don't see anything special about downloading their client, using a decompiler, use rs2gd to rename the classes, then using client parameters to run the client. xteas aren't very hard to get if you know what you're doing especially since their encryption key is found in the client.

    Code:
    /* take 64 bits of data in v[0] and v[1] and 128 bits of key[0] - key[3] */
    
    void encipher(unsigned int num_rounds, uint32_t v[2], uint32_t const key[4]) {
        unsigned int i;
        uint32_t v0=v[0], v1=v[1], sum=0, delta=0x9E3779B9;
        for (i=0; i < num_rounds; i++) {
            v0 += (((v1 << 4) ^ (v1 >> 5)) + v1) ^ (sum + key[sum & 3]);
            sum += delta;
            v1 += (((v0 << 4) ^ (v0 >> 5)) + v0) ^ (sum + key[(sum>>11) & 3]);
        }
        v[0]=v0; v[1]=v1;
    }
    
    void decipher(unsigned int num_rounds, uint32_t v[2], uint32_t const key[4]) {
        unsigned int i;
        uint32_t v0=v[0], v1=v[1], delta=0x9E3779B9, sum=delta*num_rounds;
        for (i=0; i < num_rounds; i++) {
            v1 -= (((v0 << 4) ^ (v0 >> 5)) + v0) ^ (sum + key[(sum>>11) & 3]);
            sum -= delta;
            v0 -= (((v1 << 4) ^ (v1 >> 5)) + v1) ^ (sum + key[sum & 3]);
        }
        v[0]=v0; v[1]=v1;
    }
    encrypting and decrypting are very similar.
    Reply With Quote  
     

  8. #5  
    Member OSRS Latest Deob Market Banned

    James™'s Avatar
    Join Date
    Nov 2007
    Age
    29
    Posts
    2,467
    Thanks given
    280
    Thanks received
    298
    Rep Power
    497
    Quote Originally Posted by Rust View Post
    don't see anything special about downloading their client, using a decompiler, use rs2gd to rename the classes, then using client parameters to run the client. xteas aren't very hard to get if you know what you're doing especially since their encryption key is found in the client.

    Code:
    /* take 64 bits of data in v[0] and v[1] and 128 bits of key[0] - key[3] */
    
    void encipher(unsigned int num_rounds, uint32_t v[2], uint32_t const key[4]) {
        unsigned int i;
        uint32_t v0=v[0], v1=v[1], sum=0, delta=0x9E3779B9;
        for (i=0; i < num_rounds; i++) {
            v0 += (((v1 << 4) ^ (v1 >> 5)) + v1) ^ (sum + key[sum & 3]);
            sum += delta;
            v1 += (((v0 << 4) ^ (v0 >> 5)) + v0) ^ (sum + key[(sum>>11) & 3]);
        }
        v[0]=v0; v[1]=v1;
    }
    
    void decipher(unsigned int num_rounds, uint32_t v[2], uint32_t const key[4]) {
        unsigned int i;
        uint32_t v0=v[0], v1=v[1], delta=0x9E3779B9, sum=delta*num_rounds;
        for (i=0; i < num_rounds; i++) {
            v1 -= (((v0 << 4) ^ (v0 >> 5)) + v0) ^ (sum + key[(sum>>11) & 3]);
            sum -= delta;
            v0 -= (((v1 << 4) ^ (v1 >> 5)) + v1) ^ (sum + key[sum & 3]);
        }
        v[0]=v0; v[1]=v1;
    }
    encrypting and decrypting are very similar.
    no released decompliers work with os.

    minor it please
    Reply With Quote  
     

  9. #6  
    Номер 1


    Leanbow's Avatar
    Join Date
    Feb 2008
    Posts
    5,895
    Thanks given
    1,564
    Thanks received
    2,624
    Rep Power
    5000
    Quote Originally Posted by Rust View Post
    don't see anything special about downloading their client, using a decompiler, use rs2gd to rename the classes, then using client parameters to run the client. xteas aren't very hard to get if you know what you're doing especially since their encryption key is found in the client.

    Code:
    /* take 64 bits of data in v[0] and v[1] and 128 bits of key[0] - key[3] */
    
    void encipher(unsigned int num_rounds, uint32_t v[2], uint32_t const key[4]) {
        unsigned int i;
        uint32_t v0=v[0], v1=v[1], sum=0, delta=0x9E3779B9;
        for (i=0; i < num_rounds; i++) {
            v0 += (((v1 << 4) ^ (v1 >> 5)) + v1) ^ (sum + key[sum & 3]);
            sum += delta;
            v1 += (((v0 << 4) ^ (v0 >> 5)) + v0) ^ (sum + key[(sum>>11) & 3]);
        }
        v[0]=v0; v[1]=v1;
    }
    
    void decipher(unsigned int num_rounds, uint32_t v[2], uint32_t const key[4]) {
        unsigned int i;
        uint32_t v0=v[0], v1=v[1], delta=0x9E3779B9, sum=delta*num_rounds;
        for (i=0; i < num_rounds; i++) {
            v1 -= (((v0 << 4) ^ (v0 >> 5)) + v0) ^ (sum + key[(sum>>11) & 3]);
            sum -= delta;
            v0 -= (((v1 << 4) ^ (v1 >> 5)) + v1) ^ (sum + key[sum & 3]);
        }
        v[0]=v0; v[1]=v1;
    }
    encrypting and decrypting are very similar.
    The hell u on bout
    Reply With Quote  
     

  10. Thankful users:


  11. #7  
    Registered Member
    Join Date
    Jul 2013
    Posts
    80
    Thanks given
    9
    Thanks received
    3
    Rep Power
    11
    Might be easy to do, but how can i add those xteas to an source/client/cache like os-legacy?
    Reply With Quote  
     

  12. #8  
    Registered Member
    Join Date
    Nov 2009
    Posts
    3,052
    Thanks given
    112
    Thanks received
    838
    Rep Power
    740
    Quote Originally Posted by Rust View Post
    don't see anything special about downloading their client, using a decompiler, use rs2gd to rename the classes, then using client parameters to run the client. xteas aren't very hard to get if you know what you're doing especially since their encryption key is found in the client.

    Code:
    /* take 64 bits of data in v[0] and v[1] and 128 bits of key[0] - key[3] */
    
    void encipher(unsigned int num_rounds, uint32_t v[2], uint32_t const key[4]) {
        unsigned int i;
        uint32_t v0=v[0], v1=v[1], sum=0, delta=0x9E3779B9;
        for (i=0; i < num_rounds; i++) {
            v0 += (((v1 << 4) ^ (v1 >> 5)) + v1) ^ (sum + key[sum & 3]);
            sum += delta;
            v1 += (((v0 << 4) ^ (v0 >> 5)) + v0) ^ (sum + key[(sum>>11) & 3]);
        }
        v[0]=v0; v[1]=v1;
    }
    
    void decipher(unsigned int num_rounds, uint32_t v[2], uint32_t const key[4]) {
        unsigned int i;
        uint32_t v0=v[0], v1=v[1], delta=0x9E3779B9, sum=delta*num_rounds;
        for (i=0; i < num_rounds; i++) {
            v1 -= (((v0 << 4) ^ (v0 >> 5)) + v0) ^ (sum + key[(sum>>11) & 3]);
            sum -= delta;
            v0 -= (((v1 << 4) ^ (v1 >> 5)) + v1) ^ (sum + key[sum & 3]);
        }
        v[0]=v0; v[1]=v1;
    }
    encrypting and decrypting are very similar.
    He just gives out something to the community, which he didn't have to, and you just insult it?
    got nothing better to do or something?
    Reply With Quote  
     

  13. #9  
    Registered Member


    Join Date
    Aug 2014
    Posts
    649
    Thanks given
    177
    Thanks received
    448
    Rep Power
    5000
    ty nando.
    Reply With Quote  
     

  14. Thankful user:



Thread Information
Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)


User Tag List

Similar Threads

  1. OSRS Latest Options Tab Sprites
    By Roboyto in forum Requests
    Replies: 0
    Last Post: 06-10-2015, 11:23 PM
  2. OSRS client deob?
    By Kimzo in forum Help
    Replies: 6
    Last Post: 12-27-2014, 05:56 AM
  3. latest deob
    By devildreams54 in forum Requests
    Replies: 4
    Last Post: 08-16-2009, 07:20 PM
  4. Latest Deob
    By Saint in forum RS 503+ Client & Server
    Replies: 6
    Last Post: 08-08-2008, 03:15 PM
  5. Latest Deob as of Jan 05 2007
    By newservermaker in forum Downloads
    Replies: 42
    Last Post: 01-09-2008, 01:10 AM
Posting Permissions
  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •