Hacking RELEASE SX OS code generator

Status
Not open for further replies.
https://virusscan.jotti.org/en-US/filescanjob/bo67supf94
https://www.virustotal.com/#/file/b...381f08385d3bde7c351b45fc898aabe8e33/detection

Code:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace SX_OS_License_Generator
{
    class generator
    {
        public string code;

        static Random rand = new Random();
        static string chars = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
        static char letter = chars[rand.Next(0, chars.Length - 1)];
        static string nums = "1234567890";
        static int num = rand.Next(0, nums.Length - 1);

        public string getCode()
        {
            string randomCode = "";
            for (int i = 0; i < 12; i++)
            {
                if (i < 10)
                {
                    randomCode += chars[rand.Next(0, chars.Length - 1)];
                }
                else if (i > 9)
                {
                    randomCode += rand.Next(0, nums.Length - 1);
                }
            }
            return randomCode;
        }

        public void wait(int ms)
        {
            System.Threading.Thread.Sleep(ms);
        }

    }
}


I'm just gonna close of this and remove the top link...


CLARIFICATION FOR THOSE WHOM MIGHT WANT TO TRY TO GET THE HANDS ON IT STILL - ITS NOT WORKING, NEVER WILL BE AND NEVER HAS!
 
Last edited by linuxares,
Status
Not open for further replies.

Site & Scene News

Popular threads in this forum