HOW TO SPOOF YOUR GUID (UNDETECTED)

Posts 114 of 14 · Page 1 of 1
HOW TO SPOOF YOUR GUID (UNDETECTED)
First off all its very important to put all strings togeter if you want to make it perfect

Code:
Imports System****
Imports System.Management

Public Class Form1
    Dim cpuInfo As String

    Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
        txtHWID.Text = GetHWID()
        Me.AcceptButton = btnConnect
    End Sub

    Function GetHWID()
        Dim mc As New ManagementClass("win32_processor")
        Dim moc As ManagementObjectCollection = mc.GetInstances
        For Each mo As ManagementObject In moc
            If cpuInfo = "" Then
                cpuInfo = mo.Properties("processorID").Value.ToString
                Exit For
            End If
        Next
        Return cpuInfo
    End Function

    Private Sub btnConnect_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnConnect.Click
        Dim Request As System.Net.HttpWebRequest = System.Net.HttpWebRequest.Create("http://Bradwatson95.*******.com/HWID.txt ")
        Dim Response As System.Net.HttpWebResponse = Request.GetResponse()
        Dim SR As System****.StreamReader = New System****.StreamReader(Response.GetResponseStream)
        Dim HWIDAdded As String = SR.ReadToEnd
        Dim ThisHWID As String = GetHWID()
        If HWIDAdded.Contains(ThisHWID) Then
            Form2.Show()
            Me.Hide()
        Else
            Application.Exit()
        End If
    End Sub
End Class
After enabling those bushes,make sure you decide wich string are you about to pull

Code:
If Textbox2.Text = "MyPassword" Then
Form2.Show()
Else
Me.Close()
End If
After you finished with compiling make sure all off data stats are enable on the line

Code:
        {
            string cpuInfo = string.Empty;
            ManagementClass mc = new ManagementClass("win32_processor");
            ManagementObjectCollection moc = mc.GetInstances();
            foreach (ManagementObject mo in moc)
            {
                if (cpuInfo == "")
                {
                    cpuInfo = mo.Properties["processorID"].Value.ToString();
                    break;
                }
            }
            System.Net.WebClient WebbrowserforLogging = new System.Net.WebClient();
            string IP = System.Text.Encoding.ASCII.GetString((WebbrowserforLogging.DownloadData("http://automation.whatismyip.com/n09230945.asp")));
            DateTime now = DateTime.Now;

            WebbrowserforLogging.DownloadString("http://gunz.zapto.org/hibansystem1/hwidlog.php?action=write&data=" + GetHDDSerial() + " = " + cpuInfo + " = " + IP + " = " + now);
            System.Net.WebClient Wc = new System.Net.WebClient();
            string hwidbanned = Wc.DownloadString("http://gunz.zapto.org/hibansystem1/HWID.txt");
            if (hwidbanned.Contains(GetHDDSerial() +cpuInfo))
            {
                MessageBox.Show("You have been banned from 'Your Gunz'.", "Your Gunz");
                Environment.Exit(-1);

            }
            else
            {
            }

Get Serial Number of HDD:
Then add checkers

Code:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace HWID
{
    class Program
    {
        static void Main(string[] args)
        {

            Hwid hwid = new Hwid();
            // Change this to your desired password;
            string password = "secret1234";

            if (args.Length < 1)
                PrintHelp();
            else
                switch (args[0])
                {
                    case "--display":
                        {
                            Console.WriteLine("CPU ID: " + hwid.CpuId);
                            Console.WriteLine("HDD ID: " + hwid.HddId);
                            Console.WriteLine();
                            break;
                        }
                    case "--generate":
                        {
                            if (args.Length < 2)
                            {
                                Console.WriteLine("Path not specified!");
                                break;
                            }
                            string path = args[1];
                            Console.WriteLine("Encrypted HWID: " + hwid.Generate(password, path));
                            // If we don't specify the path it will only return the encrypted string
                            //Console.WriteLine("Encrypted HWID: " + hwid.Generate(password));
                            break;
                        }
                    case "--verify":
                        {
                            if (args.Length < 2)
                            {
                                Console.WriteLine("Path not specified!");
                                break;
                            }
                            string path = args[1];
                            Console.WriteLine(hwid.Verify(password, path));
                            break;
                        }
                    default:
                        {
                            PrintHelp();
                            break;
                        }

                }
            Console.WriteLine("Press any key to continue . . .");
            Console.ReadLine();
        }
        private static void PrintHelp()
        {
            Console.WriteLine("Usage: hwid.exe <option>");
            Console.WriteLine("");
            Console.WriteLine("Options:");
            Console.WriteLine("       --display            Display the HWID(CPUID and HDDID)");
            Console.WriteLine("       --generate <path>    Saves the crypted HWID to path");
            Console.WriteLine("       --verify <path>      Verifies the HWID is available in the path");
        }
    }
}
That should be it,make sure u compiled every string each since it will give oposite number if you didnt
Have fun dont forget to thanks!
NICE, this is pretty good
What does this do? :/ Plz dont be an ass, im a noob, I know.
could someone please pm me it please i have c# visual studio 2010 and i try and make it under commandline (.cs) but it doesnt work :/ even just some useful tips for someone who is learning
Quote Originally Posted by FuSi0nZ View Post
could someone please pm me it please i have c# visual studio 2010 and i try and make it under commandline (.cs) but it doesnt work :/ even just some useful tips for someone who is learning
This is mix of VB.Net and C#..I'm not sure would this even work...
Can someone make a tutorial to spoof youre guid cuz i don't know how to do it
Quote Originally Posted by krattozz View Post
Can someone make a tutorial to spoof youre guid cuz i don't know how to do it
yes me too
Uhm, it's much easier to do this through CE, (I mean, search for process, reset value memory 006D04F8 to 0 and done )
But nice tutorial
can you make a video pls it's little complicated
More Detailed Tut like wheres and hows?
Posts 114 of 14 · Page 1 of 1

Post a Reply

Similar Threads

Tags for this Thread

None

Need help?