Page 1 of 6 123 ... LastLast
Results 1 to 15 of 80
  1. #1
    Woodhouse's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Location
    Swagtown, Yoloville
    Posts
    2,832
    Reputation
    228
    Thanks
    3,247
    My Mood
    Sick

    Post How To Manually Decompile A Key Stealer

    This is only going to work if the keystealer is coded in VB or C#. Most of them are. As far as if it's coded in any other C-based language, then it will take a lot more work. Mainly being that there is no program that fully and nicely decompiles C-based programs. Your best bet is IDA Pro and even then you'll have to do some "manual labor".
    Requirements:
    • A .NET decompiler. I'm using .NET Reflector 8 Pro in this tutorial however I do prefer SAE
    • A Free YouTube DayZ Hack (Key Stealer) or any other program you find suspicious that's coded in Visual Basic or C# (or any supported language)


    Step 1. Open up the assembly in your decompiler



    Step 2. Expand the assembly till you get to this point



    Step 3. Expand the 2nd curly bracket selection. It might not always be named "Windows Application 1" but you should recognize that it will usually be the 2nd curly bracket or 3rd general selection down. Continue to expand till your screen looks like mine.



    Step 4. This is clearly a keystealer. You'll see strings like "SetKey" and "GetKey" referring to taking and resetting your registry key to a bogus one. This one in particular set your registry to 00000000000000000000 (I know I missed a few zeros) as you can see from "key.SetValue("Key",...)."



    Step 5. The website or email where the keys are sent to can usually be found within the "Forum1_Button1" selection. I don't actual stealer website is just before the php website extention. You can't simply type the URL to get the keys. You'd have to know your way around that. You can also hit "F3" to do a quick search. Hit Ctrl + S to search for a string. Then type "http". It should bring up the website fairly quickly.



    It took me a while to find this standard stealer. It's not always going to looks like this. A lot of them are obfuscated which would require you to dump and clean the executable. Some of them are confused with Confuser 1.9, in which you would have to manually unpack it. It's not hard, I just don't feel like making a tutorial on it :P. .NET decompilers are fairly easy to use so even if you get one that doesn't look the same as the one presented here, you should be able find what you are looking for.

    If you don't feel like going through all of that, you can simply:

    Step 1. Right click on the assembly you loaded and hit Analyze.



    Step 2. Expand until your screen looks like mine. Path of expansion is Depends On\mscorlib. As you can see, even though the executable was Confused, you're still able to see the dependencies of the program which have to deal with your registry.




    As far as getting into the user account of the stealer site or the email where the keys are sent to, you can either brute force their account if you have their username or email address or get Sandboxie, a process freezer and a packet sniffer. I'm not really at liberty to teach everyone how to do this for obvious reasons. I haven't even tried doing it myself (packet sniffer method). If I have some spare time I might try it out .

    FAQ:

    Why not just use Master's Key Stealer Checker?
    • You'll probably feel more accomplished doing it on your own.
    • You can actually look through the assembly and see how the stealer works.
    • You can see where the keys are directed to.


    How can I make a keystealer using this?
    • Reverse engineering using strictly the assembly is pretty hard. Even if you do know what you're doing. I suggest reading up on reverse engineering
    Last edited by chickeninabiskit; 06-26-2013 at 08:24 PM.

  2. The Following 17 Users Say Thank You to Woodhouse For This Useful Post:

    aaronpoon (03-21-2013),Bluscream (05-06-2013),Bosegelucke (03-02-2013),Bris (06-14-2014),Daelso (03-02-2013),darkangel1 (03-02-2013),DrWhiteouT (03-04-2013),Forza4334 (05-14-2014),fragrantparrot (03-04-2013),karlantoon (06-04-2013),KidoThe (03-02-2013),masterjake912 (12-13-2013),[MPGH]Mayion (01-06-2014),MuffinHD (11-05-2013),nahay1 (04-12-2013),W3iner (03-05-2013),xCyberxx (12-12-2013)

  3. #2
    Daelso's Avatar
    Join Date
    Aug 2012
    Gender
    male
    Location
    USA
    Posts
    166
    Reputation
    10
    Thanks
    16
    My Mood
    Devilish
    This needs to be stickied ASAP. Very helpful and should deter any of the idiots who try and post stealers here.

  4. The Following 2 Users Say Thank You to Daelso For This Useful Post:

    Woodhouse (03-02-2013),darkangel1 (03-02-2013)

  5. #3
    KidoThe's Avatar
    Join Date
    Jan 2013
    Gender
    male
    Location
    Somewhere where you obviously want to know.
    Posts
    1,361
    Reputation
    75
    Thanks
    672
    Chicken, another great post. You still spelt biscuit wrong but this should definitely be stickied. @NormenJaydenFBI @Flengo

  6. The Following 3 Users Say Thank You to KidoThe For This Useful Post:

    Woodhouse (03-02-2013),darkangel1 (03-02-2013),True_Legion (06-27-2013)

  7. #4
    Distraught's Avatar
    Join Date
    Jan 2013
    Gender
    male
    Location
    California
    Posts
    1,897
    Reputation
    659
    Thanks
    1,355
    So this is what you have been working on all day. Good work.

  8. The Following 2 Users Say Thank You to Distraught For This Useful Post:

    Woodhouse (03-02-2013),darkangel1 (03-02-2013)

  9. #5
    darkangel1's Avatar
    Join Date
    May 2009
    Gender
    male
    Location
    San Diego, CA
    Posts
    542
    Reputation
    15
    Thanks
    153
    His Keystealer finder actually does work on obfuscated stuff, But this still deserves to be a sticky, :X
    Want to learn how to customize your own menu's/write your own scripts? Check out my sticky in the help section
    Or click this link -
    https://www.mpgh.net/forum/696-dayz-h...nto-menus.html
    Quote Originally Posted by typh0 View Post
    the only person that can ban you, is the big chief mr battleye himself. no admin or hacker or player can do this. In addition to this the big chief mr battleye will ban you based on the bypasser you're using NOT what scripts you are using.

  10. The Following 2 Users Say Thank You to darkangel1 For This Useful Post:

    Woodhouse (03-02-2013),KidoThe (03-02-2013)

  11. #6
    Woodhouse's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Location
    Swagtown, Yoloville
    Posts
    2,832
    Reputation
    228
    Thanks
    3,247
    My Mood
    Sick
    Quote Originally Posted by darkangel1 View Post
    His Keystealer finder actually does work on obfuscated stuff, But this still deserves to be a sticky, :X
    I stand corrected :P

    ---------- Post added at 03:51 PM ---------- Previous post was at 03:35 PM ----------

    It seems like this has become a free thank thread

  12. The Following 3 Users Say Thank You to Woodhouse For This Useful Post:

    Daelso (03-02-2013),darkangel1 (03-02-2013),KidoThe (03-02-2013)

  13. #7
    Flengo's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    /admincp/banning.php
    Posts
    20,591
    Reputation
    5180
    Thanks
    14,179
    My Mood
    Inspired
    Got my glue out.
    I Read All Of My PM's & VM's
    If you need help with anything, just let me know.

     


     
    VM | PM | IM
    Staff Administrator Since 10.13.2019
    Publicist Since 04.04.2015
    Middleman Since 04.14.2014
    Global Moderator Since 08.01.2013
    Premium Since 05.29.2013

    Minion+ Since 04.18.2013

    Combat Arms Minion Since 12.26.2012
    Contributor Since 11.16.2012
    Member Since 05.11.2010


  14. The Following 7 Users Say Thank You to Flengo For This Useful Post:

    Woodhouse (03-02-2013),Daelso (03-02-2013),darkangel1 (03-02-2013),KidoThe (03-06-2013),Maxedout (03-11-2013),[MPGH]Mayion (06-05-2013),temeXiii (07-05-2013)

  15. #8
    Arrxzon's Avatar
    Join Date
    Jul 2012
    Gender
    male
    Location
    Ireland
    Posts
    447
    Reputation
    10
    Thanks
    28
    My Mood
    Psychedelic
    good job
    thanks

  16. The Following User Says Thank You to Arrxzon For This Useful Post:

    Woodhouse (03-03-2013)

  17. #9
    Vibrations's Avatar
    Join Date
    Jan 2013
    Gender
    male
    Location
    Everywhere and everything at once, I am you and you are me, we are the same ~
    Posts
    505
    Reputation
    26
    Thanks
    110
    Not going to lie, but great post @chickeninabiskit
    I used to dislike you, but now I think I'm in love

  18. The Following User Says Thank You to Vibrations For This Useful Post:

    Woodhouse (03-03-2013)

  19. #10
    TornChewy's Avatar
    Join Date
    Sep 2012
    Gender
    male
    Posts
    60
    Reputation
    10
    Thanks
    88
    My Mood
    Amused
    Good job! Congrats

  20. The Following User Says Thank You to TornChewy For This Useful Post:

    Woodhouse (03-03-2013)

  21. #11
    ultiamtehack's Avatar
    Join Date
    Jun 2011
    Gender
    male
    Posts
    9
    Reputation
    10
    Thanks
    0
    I lolled a bit hard. .NET reflector? What if it's not coded as a .NET program?

  22. #12
    Woodhouse's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Location
    Swagtown, Yoloville
    Posts
    2,832
    Reputation
    228
    Thanks
    3,247
    My Mood
    Sick
    Quote Originally Posted by ultiamtehack View Post
    I lolled a bit hard. .NET reflector? What if it's not coded as a .NET program?
    Why would you laugh out load? I already said that this wouldn't work for non- .NET modules but to be honest, I'd say about 97% (my rough estimate) of all keystealers are. Like I said, if it's not, then you'll be looking to use IDA Pro.

  23. #13
    Don Omar's Avatar
    Join Date
    Feb 2013
    Gender
    male
    Location
    USA
    Posts
    92
    Reputation
    10
    Thanks
    11
    My Mood
    Amused
    Kinda feels like some copy pasta from something I read on hack forums.

  24. #14
    Woodhouse's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Location
    Swagtown, Yoloville
    Posts
    2,832
    Reputation
    228
    Thanks
    3,247
    My Mood
    Sick
    Quote Originally Posted by Don Omar View Post
    Kinda feels like some copy pasta from something I read on hack forums.
    Nope. Definitely not. 100% me. Didn't even know there was a DayZ section and/or keystealers being posted there. To be honest, I can't even remember my password. Feel free to pm me the link.

  25. #15
    Don Omar's Avatar
    Join Date
    Feb 2013
    Gender
    male
    Location
    USA
    Posts
    92
    Reputation
    10
    Thanks
    11
    My Mood
    Amused
    Quote Originally Posted by chickeninabiskit View Post
    Nope. Definitely not. 100% me. Didn't even know there was a DayZ section and/or keystealers being posted there. To be honest, I can't even remember my password. Feel free to pm me the link.
    Looked it up, it wasn't related to DayZ and hadn't been bumped in awhile. It was in their whaling section, and was dealing with RS accounts and what not.

    Edit: SAE is pretty nice as well.
    Last edited by Don Omar; 03-04-2013 at 09:17 PM.

Page 1 of 6 123 ... LastLast

Similar Threads

  1. [Solved] How to know if an Injector is a Key Stealer?
    By Heytherenewb in forum DayZ Help & Requests
    Replies: 11
    Last Post: 03-01-2013, 02:44 PM
  2. [WTS] selling how to steal key stealers key method $10
    By bruice1993 in forum DayZ Selling / Trading / Buying
    Replies: 0
    Last Post: 12-22-2012, 02:05 AM
  3. [Help] Anyone willing to Teach me How to Get Free keys from Key stealers?
    By magi332m in forum DayZ Mod & Standalone Hacks & Cheats
    Replies: 0
    Last Post: 12-14-2012, 07:23 AM
  4. [Help] Decompiling A Key Stealer
    By Jim Morrison in forum DayZ Mod & Standalone Hacks & Cheats
    Replies: 22
    Last Post: 12-14-2012, 06:55 AM
  5. serial\registry key stealer
    By undergroundhack in forum C++/C Programming
    Replies: 1
    Last Post: 07-16-2009, 01:03 PM

Tags for this Thread