|
-
Mar 9th, 2013, 02:14 PM
#1
Thread Starter
Frenzied Member
[VB.net] Get computer Hardware ID and convert to MD5 hash
I was doing some research online a while ago about restricting hardware ID. This is the project I came up with, with a couple elements i think i gathered from the internet somewhere. There was 1 textbox added to this project to display the HWID You can get the processor ID, Motherboard ID, volume serial ID, and the mac address ID from the computer. Note that IIRC volume serial is NOT unique, it is based on the volume size of whichever drive you specify. I thought this was enough to create a unique key, and at any rate, the person cracking it I believe would not try to emulate the key but bypass the security all-together.
Code:
Imports System.Management
Imports System
Imports System.Text
Imports System.Security.Cryptography
Public Class Form1
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Dim hw As New clsComputerInfo
Dim hdd As String
Dim cpu As String
Dim mb As String
Dim mac As String
cpu = hw.GetProcessorId()
hdd = hw.GetVolumeSerial("C")
mb = hw.GetMotherBoardID()
mac = hw.GetMACAddress()
'MsgBox(cpu & " " & hdd & " " & mb & " " & mac)
Dim hwid As String = Strings.UCase(hw.getMD5Hash(cpu & hdd & mb & mac))
' MessageBox.Show(Strings.UCase(hwid))
TextBox1.Text = hwid
End Sub
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Me.Close()
End Sub
End Class
Public Class clsComputerInfo
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
Friend Function GetVolumeSerial(Optional ByVal strDriveLetter As String = "C") As String
Dim disk As ManagementObject = New ManagementObject(String.Format("win32_logicaldisk.deviceid=""{0}:""", strDriveLetter))
disk.Get()
Return disk("VolumeSerialNumber").ToString()
End Function
Friend Function GetMotherBoardID() As String
Dim strMotherBoardID As String = String.Empty
Dim query As New SelectQuery("Win32_BaseBoard")
Dim search As New ManagementObjectSearcher(query)
Dim info As ManagementObject
For Each info In search.Get()
strMotherBoardID = info("SerialNumber").ToString()
Next
Return strMotherBoardID
End Function
Friend Function getMD5Hash(ByVal strToHash As String) As String
Dim md5Obj As New Security.Cryptography.MD5CryptoServiceProvider
Dim bytesToHash() As Byte = System.Text.Encoding.ASCII.GetBytes(strToHash)
bytesToHash = md5Obj.ComputeHash(bytesToHash)
Dim strResult As String = ""
For Each b As Byte In bytesToHash
strResult += b.ToString("x2")
Next
Return strResult
End Function
End Class
Last edited by jayinthe813; Mar 9th, 2013 at 11:33 PM.
-
Aug 6th, 2013, 04:54 AM
#2
New Member
Re: [VB.net] Get computer Hardware ID and convert to MD5 hash
Hey,
there are some errors with that code:
"The Type is not defined" for all the following:
SelectQuery
ManagementObjectSearcher
ManagementObject
ManagementClass
ManagementObjectCollection
ManagementObject
ManagementObject
SelectQuery
ManagementObjectSearcher
ManagementObject
whats wrong?
-
Aug 6th, 2013, 07:22 AM
#3
Re: [VB.net] Get computer Hardware ID and convert to MD5 hash
Do you have a red squiggly on this line perhaps?
Imports System.Management
If so, you probably just need to add a reference to it. It's not one that's referenced automatically.
-tg
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|