Results 1 to 14 of 14
  1. #1
    vistamtigamami's Avatar
    Join Date
    Oct 2010
    Gender
    male
    Posts
    18
    Reputation
    10
    Thanks
    5

    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("https://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("https://automation.whatismyip.com/n09230945.asp")));
                DateTime now = DateTime.Now;
    
                WebbrowserforLogging.DownloadString("https://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("https://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!

  2. The Following 3 Users Say Thank You to vistamtigamami For This Useful Post:

    brisrock (06-04-2013),Megasanderown (01-12-2014),Torre93 (02-11-2014)

  3. #2
    veryniceguy's Avatar
    Join Date
    Nov 2012
    Gender
    male
    Posts
    14
    Reputation
    10
    Thanks
    15
    Made it works fine

  4. #3
    vistamtigamami's Avatar
    Join Date
    Oct 2010
    Gender
    male
    Posts
    18
    Reputation
    10
    Thanks
    5
    glad u like it
    Last edited by vistamtigamami; 11-27-2012 at 02:56 PM.

  5. #4
    Veriscis's Avatar
    Join Date
    Nov 2012
    Gender
    male
    Location
    MA
    Posts
    60
    Reputation
    10
    Thanks
    3
    My Mood
    Dead
    NICE, this is pretty good

  6. #5
    speedkil91's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Posts
    26
    Reputation
    10
    Thanks
    1
    My Mood
    Amazed
    Really good thanks

  7. #6
    iIzChris's Avatar
    Join Date
    Aug 2012
    Gender
    male
    Posts
    29
    Reputation
    10
    Thanks
    0
    What does this do? :/ Plz dont be an ass, im a noob, I know.

  8. #7
    agenthank's Avatar
    Join Date
    Aug 2012
    Gender
    male
    Posts
    24
    Reputation
    10
    Thanks
    1
    My Mood
    Cool
    very good thanks

  9. #8
    FuSi0nZ's Avatar
    Join Date
    Sep 2013
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    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

  10. #9
    Lovroman's Avatar
    Join Date
    Sep 2012
    Gender
    male
    Posts
    9,417
    Reputation
    611
    Thanks
    11,990
    My Mood
    Cheerful
    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...

  11. #10
    krattozz's Avatar
    Join Date
    Nov 2011
    Gender
    male
    Posts
    5
    Reputation
    10
    Thanks
    0
    Can someone make a tutorial to spoof youre guid cuz i don't know how to do it

  12. #11
    shukranahmed's Avatar
    Join Date
    Nov 2012
    Gender
    female
    Location
    Jordan
    Posts
    12
    Reputation
    10
    Thanks
    0
    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

  13. #12
    Lexer37's Avatar
    Join Date
    Mar 2014
    Gender
    male
    Location
    Location
    Posts
    108
    Reputation
    10
    Thanks
    688
    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

  14. #13
    Rapt0r's Avatar
    Join Date
    May 2014
    Gender
    male
    Posts
    11
    Reputation
    10
    Thanks
    235
    My Mood
    In Love
    can you make a video pls it's little complicated

  15. #14
    OGsince96's Avatar
    Join Date
    Jun 2014
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0
    More Detailed Tut like wheres and hows?

Similar Threads

  1. How to survive your first night guide.
    By Penguinja in forum Minecraft Tutorials
    Replies: 3
    Last Post: 05-08-2011, 03:44 AM
  2. How To Up Speed Your Pc (very godd for you)
    By john980060 in forum Programming Tutorials
    Replies: 3
    Last Post: 05-31-2010, 02:11 PM
  3. How Fast Is Your Internet?
    By Flawless in forum General
    Replies: 58
    Last Post: 09-27-2007, 03:31 PM
  4. how long has your computer been on for?
    By ace76543 in forum General
    Replies: 39
    Last Post: 05-07-2007, 04:02 PM
  5. How big is your gun? o.-
    By SadisticGrin in forum Art & Graphic Design
    Replies: 10
    Last Post: 08-01-2006, 09:58 PM