IDA 6.6 is finally out menu

User Tag List

Page 5 of 6 FirstFirst 123456 LastLast
Results 61 to 75 of 80
  1. #61
    homer91's Avatar Active Member CoreCoins Purchaser
    Reputation
    79
    Join Date
    Oct 2008
    Posts
    259
    Thanks G/R
    59/7
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Torpedoes View Post
    Yeah, somehow I doubt they would sell to any old Chinese hacker.
    Zhou Tao, Jiangsu Australia Sinuo Network Technology Co., Ltd.

    Hahaha, looks like they did
    Last edited by homer91; 01-14-2015 at 05:16 PM.

    IDA 6.6 is finally out
  2. #62
    namreeb's Avatar Legendary

    Reputation
    658
    Join Date
    Sep 2008
    Posts
    1,023
    Thanks G/R
    7/215
    Trade Feedback
    0 (0%)
    Mentioned
    8 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by homer91 View Post
    Zhou Tao, Jiangsu Australia Sinuo Network Technology Co., Ltd.

    Hahaha, looks like they did
    Which is "Acme Chinese Pirate" when translated into Chinese and back into English.

  3. #63
    aeo's Avatar Contributor
    Reputation
    127
    Join Date
    Apr 2007
    Posts
    270
    Thanks G/R
    84/62
    Trade Feedback
    7 (100%)
    Mentioned
    2 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by namreeb View Post
    Do any of you know of a patch for this leak allowing the loading of IDB files from previously cracked versions of IDA?
    I didnt have this issue with the version I posted above. I was able to open and upgrade my cracked 6.1 dbs.

  4. #64
    TOM_RUS's Avatar Legendary
    Reputation
    914
    Join Date
    May 2008
    Posts
    699
    Thanks G/R
    0/52
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by namreeb View Post
    Do any of you know of a patch for this leak allowing the loading of IDB files from previously cracked versions of IDA?
    dbfix.plw "plugin" similar to one used for IDA 6.1 updated for IDA 6.6.141224.
    Last edited by TOM_RUS; 01-15-2015 at 09:31 AM.

  5. #65
    Natrist's Avatar Member
    Reputation
    11
    Join Date
    Mar 2013
    Posts
    146
    Thanks G/R
    9/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Or you could do like I do and use a genuine header.

  6. #66
    namreeb's Avatar Legendary

    Reputation
    658
    Join Date
    Sep 2008
    Posts
    1,023
    Thanks G/R
    7/215
    Trade Feedback
    0 (0%)
    Mentioned
    8 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Natrist View Post
    Or you could do like I do and use a genuine header.
    Can you retroactively insert a 'genuine header' into an existing IDA file?

  7. #67
    Natrist's Avatar Member
    Reputation
    11
    Join Date
    Mar 2013
    Posts
    146
    Thanks G/R
    9/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by namreeb View Post
    Can you retroactively insert a 'genuine header' into an existing IDA file?
    Yes, of course!
    The following blog article describes how you can achieve such a thing: How to create an anonymous IDA PRO database (.IDB) - 0xEBFE

  8. #68
    Torpedoes's Avatar ★ Elder ★ Doomsayer
    Authenticator enabled
    Reputation
    1147
    Join Date
    Sep 2013
    Posts
    956
    Thanks G/R
    148/415
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Natrist View Post
    The following blog article describes how you can achieve such a thing: How to create an anonymous IDA PRO database (.IDB) - 0xEBFE
    I feel like writing a quick drag and drop IDB anonymizer now :-/

    EDIT: Okay I followed the blog post and came up with a quick solution. Just run this python script with IDA (File > Script File) and it should anonymize the IDB for you.

    Code:
    import idaapi, binascii;
    
    u1 = idaapi.netnode ("$ user1",         0, False);
    u2 = idaapi.netnode ("$ original user", 0, False);
    
    code = "ca75b28848ea06bcae409699fa2510a03bbaf43bd167eecb17d52918187133a793ebf8d3270230c7164d7a79b53c2c3edd611ede975690784cf2c254abe8b587140d19a3f46b2be109bde1da1b7ed4d7c9f7b58135f2c296db4e86ad29b6f0b999b5599d40c3bae8b29d2cc06ecef63cba0e1b9a9505c1efe9019a7020127e100000000000000000000000000000000000000000000000000000000000000000";
    
    print ("Attempting IDB Anonymization...");
    print ("Old code: " + binascii.hexlify (u2.supval(0)));
    
    u1.kill(); # Delete plain text user code
    u2.supset (0, binascii.unhexlify (code));
    
    print ("New code: " + binascii.hexlify (u2.supval(0)));
    Last edited by Torpedoes; 01-14-2015 at 09:49 PM.

  9. #69
    Natrist's Avatar Member
    Reputation
    11
    Join Date
    Mar 2013
    Posts
    146
    Thanks G/R
    9/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Torpedoes View Post
    I feel like writing a quick drag and drop IDB anonymizer now :-/

    EDIT: Okay I followed the blog post and came up with a quick solution. Just run this python script with IDA (File > Script File) and it should anonymize the IDB for you.

    Code:
    import idaapi, binascii;
    
    u1 = idaapi.netnode ("$ user1",         0, False);
    u2 = idaapi.netnode ("$ original user", 0, False);
    
    code = "ca75b28848ea06bcae409699fa2510a03bbaf43bd167eecb17d52918187133a793ebf8d3270230c7164d7a79b53c2c3edd611ede975690784cf2c254abe8b587140d19a3f46b2be109bde1da1b7ed4d7c9f7b58135f2c296db4e86ad29b6f0b999b5599d40c3bae8b29d2cc06ecef63cba0e1b9a9505c1efe9019a7020127e100000000000000000000000000000000000000000000000000000000000000000";
    
    print ("Attempting IDB Anonymization...");
    print ("Old code: " + binascii.hexlify (u2.supval(0)));
    
    u1.kill(); # Delete plain text user code
    u2.supset (0, binascii.unhexlify (code));
    
    print ("New code: " + binascii.hexlify (u2.supval(0)));
    Good job. I'll give reputation when I can again.

  10. #70
    TOM_RUS's Avatar Legendary
    Reputation
    914
    Join Date
    May 2008
    Posts
    699
    Thanks G/R
    0/52
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    That trick doesn't work if you can't open IDB in IDA, unless you know how to patch IDB file on disk...
    Edit: stupid and slow, but patching idb files on disk seems to work - http://paste2.org/dtH4A9Bz
    Last edited by TOM_RUS; 01-15-2015 at 09:24 AM.

  11. #71
    Midi12's Avatar Contributor
    Reputation
    90
    Join Date
    Sep 2012
    Posts
    182
    Thanks G/R
    6/13
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by namreeb View Post
    Do any of you know of a patch for this leak allowing the loading of IDB files from previously cracked versions of IDA?
    Originally Posted by aeo View Post
    I didnt have this issue with the version I posted above. I was able to open and upgrade my cracked 6.1 dbs.
    Same as aeo, which version you got ? Because I heard there is an installer version and a preinstalled version. No issue about loading a 6.1 idb to 6.6 with the preinstalled one.
    92izii !

  12. #72
    TOM_RUS's Avatar Legendary
    Reputation
    914
    Join Date
    May 2008
    Posts
    699
    Thanks G/R
    0/52
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Midi12 View Post
    Same as aeo, which version you got ? Because I heard there is an installer version and a preinstalled version. No issue about loading a 6.1 idb to 6.6 with the preinstalled one.
    IDA 6.1 had legit key, IDA 5.5 did not. Ofc 6.1 idb's will work in 6.6.
    Last edited by TOM_RUS; 01-15-2015 at 06:39 AM.

  13. #73
    Natrist's Avatar Member
    Reputation
    11
    Join Date
    Mar 2013
    Posts
    146
    Thanks G/R
    9/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Or you could always change the header and/or read entire threads before posting questions...
    Just a heads up

  14. #74
    Torpedoes's Avatar ★ Elder ★ Doomsayer
    Authenticator enabled
    Reputation
    1147
    Join Date
    Sep 2013
    Posts
    956
    Thanks G/R
    148/415
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by TOM_RUS View Post
    That trick doesn't work if you can't open IDB in IDA, unless you know how to patch IDB file on disk...
    Edit: stupid and slow, but patching idb files on disk seems to work - Paste2.org - Viewing Paste dtH4A9Bz
    Does this work on deflated idb's?

  15. #75
    TOM_RUS's Avatar Legendary
    Reputation
    914
    Join Date
    May 2008
    Posts
    699
    Thanks G/R
    0/52
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Torpedoes View Post
    Does this work on deflated idb's?
    Probably not? Never used compressed idb's.

Page 5 of 6 FirstFirst 123456 LastLast

Similar Threads

  1. [Buying] ╫ Buying Final Fantasy Gil [NA/EU] ╫ √Fast Payment√Live Chat24/7√High Pay-Out√
    By Kalizar in forum Final Fantasy XIV Buy Sell Trade
    Replies: 40
    Last Post: 01-24-2014, 11:49 AM
  2. Replies: 6
    Last Post: 10-27-2012, 05:58 PM
  3. Xd Xd Xd Tbc Is Finally Out Xd Xd Xd
    By peecekeeper in forum World of Warcraft General
    Replies: 1
    Last Post: 01-16-2007, 05:09 PM
  4. Beyond the Deadmines Exploit (check it out! trippy)
    By Utensil in forum World of Warcraft Exploits
    Replies: 3
    Last Post: 04-10-2006, 10:44 PM
  5. AFK Out of BG without deserter buff
    By Matt in forum World of Warcraft Exploits
    Replies: 0
    Last Post: 03-29-2006, 09:51 AM
All times are GMT -5. The time now is 01:02 AM. Powered by vBulletin® Version 4.2.3
Copyright © 2024 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search