Posted May 14, 20178 yr Difficulty : 4/10Language : .NETPlatform : windowsOS Version : tested on win 10Packer / 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 : CrackMe.rar Edited May 15, 20178 yr by Teddy Rogers
October 20, 20177 yr 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
Create an account or sign in to comment