HWID Grabber [Find your HWID]

Posts 115 of 16 · Page 1 of 2
HWID Grabber [Find your HWID]
1000's made before, adding my own to the mix
Simply run and view your HWID
Any donations to my coding are GREATLY appreciated
Send them to my paypal or Alertpay at: kieran.graves@.hotmail.co.uk
I don't care if it is $0.50, every little helps.
Virus scans:
Show your HWID-Gravzy.exe - Jotti's malware scan
Multi-Engine Antivirus Scanner - Services - NoVirusThanks.org
Screenshot:

Show your HWID-Gravzy.rar77 KB · 3,921 downloads Clean
ManagementClass m = new ManagementClass("win32_processor");
m.Properties["processorID"].Value.ToString();

?
Please give credits to the original coder(s). Thanks! Furthermore this is NOT HWID. This is a processor ID generator. HWID contains more symbols; a68d4sd5453s4413c1a3s4d3a5sd44321 <- like that! But a nice release! Keep it up
Quote Originally Posted by iDarkness View Post
Please give credits to the original coder(s). Thanks! Furthermore this is NOT HWID. This is a processor ID generator. HWID contains more symbols; a68d4sd5453s4413c1a3s4d3a5sd44321 <- like that! But a nice release! Keep it up

There isn't a standard for hardware IDs, so the format and number of symbols isn't set.
Quote Originally Posted by freedompeace View Post



There isn't a standard for hardware IDs, so the format and number of symbols isn't set.
Yes but like you saw it that is Hardware IDs contains more hardware not only processor ID VolumeID HardDiskID and more.
xD based it on a TUT from youtube, it said HWID :P
But mostly coded myself but parts from the video, form ECT, is mine as well.
Okay, anyways like I sed nice job mate!
This is actually not a very efficient way... Infact this HWID is NOT unique per a computer. I know this because I use to use then when securing my programs... But sooner or later did I find out many users had the SAME HWID! There is a simple fix for this which i present below...

Simply use this HWID with the Mac address of the user like so:
Code:
        hwid += GetProcessorId() + "-" + GetMACAddress()
        TextBox1.Text = hwid
And the functions:
Code:
    Friend Function GetProcessorId() As String
        Dim strProcessorId As String = String.Empty
        Dim query As New SelectQuery("Win32_processor")
        Dim search As New ManagementObjectSearcher(query)
        Dim info As ManagementObject

        For Each info In search.Get()
            strProcessorId = info("processorId").ToString()
        Next
        Return strProcessorId

    End Function
    Friend Function GetMACAddress() As String

        Dim mc As ManagementClass = New ManagementClass("Win32_NetworkAdapterConfiguration")
        Dim moc As ManagementObjectCollection = mc.GetInstances()
        Dim MACAddress As String = String.Empty
        For Each mo As ManagementObject In moc

            If (MACAddress.Equals(String.Empty)) Then
                If CBool(mo("IPEnabled")) Then MACAddress = mo("MacAddress").ToString()

                mo.Dispose()
            End If
            MACAddress = MACAddress.Replace(":", String.Empty)

        Next
        Return MACAddress
    End Function
This combines and returns a string in the order of: HWID-MACADDRESS. This guarantees a unique HWID, while just the processor ID is not unique. I know this seems odd, but trust me when I say there NOT unique....

Use my method above to guarantee uniqueness.
-Synkro
Yup, this will better work like @Synkro sed..
Will use it in my future programs
Quote Originally Posted by gravzy View Post
Will use it in my future programs
Good thing to see! Ill be looking for it =D
xD i have made an AlterMW3 account stealer but doubt MPGH would want that :P
And a minecraft account stealer :P
@gravzy thats some nice shit! Maybe if MPGH had a Warez section it would be allowed!
@iDarkness xD thanks, GravzyUK, that's my channel showing the hack :P
Nice I like it, want to see some more soon =)
Posts 115 of 16 · Page 1 of 2

Post a Reply

Similar Threads

Tags for this Thread

None

Need help?