cawk Posted May 14, 2017 Share Posted May 14, 2017 (edited) 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, 2017 by Teddy Rogers Link to comment Share on other sites More sharing options...
Teddy Rogers Posted May 15, 2017 Share Posted May 15, 2017 This does not follow the required topic formatting. Please can you correct... Ted. Link to comment Share on other sites More sharing options...
cawk Posted May 15, 2017 Author Share Posted May 15, 2017 Sorry about that completely forgot fixed it now Link to comment Share on other sites More sharing options...
Michidu Posted October 20, 2017 Share Posted October 20, 2017 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 3 Link to comment Share on other sites More sharing options...
微不足道 Posted March 5, 2018 Share Posted March 5, 2018 How to Unpack? Link to comment Share on other sites More sharing options...
微不足道 Posted March 5, 2018 Share Posted March 5, 2018 I want to know how you encrypt it Can you share your software Link to comment Share on other sites More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now