Jump to content
Tuts 4 You

[.NET]KeyGenMe/UnpackMe


cawk

Recommended Posts

Difficulty : 4/10
Language : .NET
Platform : windows
OS Version : tested on win 10
Packer / Protector : 2 public protectors and a smaller protector coded by me to help stop public tools working 100% 

Description :

Little keygenme or unpackme I put together uses 2 public protectors but on one of them I added my own method to it to stop public tools working 100% meaning you might need to do some manual work 

Aims:

1) Get a valid key 
2) Unpack it fully
3) Make a keygen

Screenshot :

3e5559d64191cfbff23d7fd94487d3a1.png.52b05d8ccd2559a8fdaee4638b3305e5.png

CrackMe.rar

Edited by Teddy Rogers
Link to comment
Share on other sites

Teddy Rogers

This does not follow the required topic formatting. Please can you correct...

Ted.

Link to comment
Share on other sites

  • 5 months later...

Keygen:

Spoiler

        private static void Main(string[] args)
        {
            string name = RandomString(14);
            StringBuilder nameStr = new StringBuilder(name)
            {
                [3] = 'R',
                [13] = '$'
            };

            string key = RandomString(14);
            StringBuilder keyStr = new StringBuilder(key)
            {
                [3] = 'a',
                [5] = 'c',
                [11] = '2'
            };

            Console.WriteLine(nameStr);
            Console.WriteLine(keyStr);
            Console.Read();
        }

        private static string RandomString(int length)
        {
            const string chars = "ABCDEFGHJKLMNPQRSTUVWXYZ0123456789";
            return new string(Enumerable.Repeat(chars, length)
                .Select(s => s[Random.Next(s.Length)]).ToArray());
        }

 

 

CrackMe_deobfuscated.rar

  • Like 3
Link to comment
Share on other sites

  • 4 months later...

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...