Jump to content
Tuts 4 You

[Keygenme 10 RCG] C#


Pr0c3ss

Recommended Posts

kRzXlCa.png


 


My keygen is attached.


 


Source:



using System;
using System.Management;
using System.Security.Cryptography;
using System.Text;
using System.Windows.Forms; namespace RCG_Keygen_10
{
    public partial class MainForm : Form
    {
        public MainForm()
        {
            InitializeComponent();
        }         private void MainForm_Load(object sender, EventArgs e)
        {
            var processorIdentifier = GetProcessorID();
            if (string.IsNullOrEmpty(processorIdentifier))
                return;
            levelOneSerialTextBox.Text = processorIdentifier.Substring(2, 5) + "RCG";
            levelTwoSerialTextBox.Text = CalculateHash(new MD5CryptoServiceProvider(), CalculateHash(new SHA512Managed(), levelOneSerialTextBox.Text));
        }         private static string CalculateHash(HashAlgorithm algo, string text)
        {
            string hash = string.Empty;
            foreach (var b in algo.ComputeHash(Encoding.Unicode.GetBytes(text)))
                hash += b.ToString("x2");
            return hash;
        }         private static string GetProcessorID()
        {
            try
            {
                foreach (ManagementObject obj in new ManagementObjectSearcher("SELECT ProcessorId FROM Win32_Processor").Get())
                    return obj["ProcessorId"].ToString();
            }
            catch
            {
            }             return string.Empty;
        }
    }
}

RCG Keygen 10.rar

Edited by master131
  • Like 1
Link to comment
Share on other sites

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...