Questions tagged [hwid]

Short for Hardware Identification, a security measure used by Microsoft upon the activation of the Windows operating system.

Short for Hardware Identification, a security measure used by Microsoft upon the activation of the Windows operating system. As part of the Product Activation system, a unique HWID number is generated when the operating system is first installed. The HWID identifies the hardware components that the system is utilizing, and this number is communicated to Microsoft. Every 10 days and at every reboot the operating system will generate another HWID number and compare it to the original to make sure that the operating system is still running on the same device. If the two HWID numbers differ too much then the operating system will shut down until Microsoft reactivates the product.

The theory behind HWID is to ensure that the operating system is not being used on any device other than the one for which it was purchased and registered. However, problems can arise when users start replacing or adding hardware components -- such as motherboards, sound cards, CD-R drives, Ethernet adapters -- because these will generate new HWIDs, and if there are too many differences from the original installation number the system will register that the operating system has been installed on a different device than the original and subsequently shut itself down. The only way to resolve the issue is to telephone Microsoft and explain the new hardware in order to obtain a new code.

Source: http://www.webopedia.com/TERM/H/HWID.html

34 questions
3
votes
1 answer

GetAdaptersInfo crashing

I'm currently trying to do some hardware generation for a friend of mine and I noticed that GetAdaptersInfo kinda behaves weirdly. According to MSDN pOutBufLen should be pointing to a variable holding the value of sizeof(IP_ADAPTER_INFO) (640). But…
Niclas M
  • 172
  • 2
  • 8
2
votes
0 answers

How to make this Auth Hwid

I have this code from some Source and I want to make Auth for it but i dont know how to make HWID Check. Because i need web files! Here is the C# Visual Studio Code of Auth Program: I need something like this…
IMarcos
  • 21
  • 1
1
vote
1 answer

Delphi CreateOleObject

Is there a way to get CreateOleObject to work in a Delphi Form Application? I know it requires ComObj, which I'm guessing might mean it is Console Application use only. If I cannot use it in form applications, is there an alternative I can use? To…
ozdrgnaDiies
  • 1,799
  • 1
  • 17
  • 30
1
vote
0 answers

Trampoline Hook GetVolumeInformationW on a simple HWID lock

I'm trying to hook GetVolumeInformationW on a simple HWID lock using trampoline hook to return a specific value for serial number(123456789). When I inject the dll the program crashes instantly. I tried to start hwid lock also from the programs 86…
justjoking
  • 11
  • 1
1
vote
0 answers

Protect Python Script With HWID In Android

I want to protect my python script with HWID in android I want so that only people who have HWID can access my script example : HWID = { "63e2xxx57d94", "87g5xxxh6388", "6634xxx65h9f" } #How To Check This ? XHWID = 'some id' if HWID == XHWID: …
Gabrielle
  • 19
  • 1
1
vote
0 answers

HardwareID without System.Management in Unity

I already asked this question here: UnityEngine .NET 3.5 Get HardwareID without System.Management But seems like It can be changed. Is there anything else I could use? Some sort of C++ code? Anything that would be useful to make hash of?
DreTaX
  • 614
  • 7
  • 21
1
vote
1 answer

How to get HWID in C++

I'm making a program, to stop pirating i'm adding a hwid lock. I want to use the output of the wmic command wmic csproduct get uuid. However I am not sure how to set its output as a variable.
Theo
  • 33
  • 1
  • 3
1
vote
4 answers

Python - How to find UUID of computer and set as variable

I have been looking all over the internet for a way to find a way to get UUID for a computer and set it as a variable in python. Some of the ways I tried doing didn't work. Original idea: import os x = os.system("wmic diskdrive get…
Bill D
  • 13
  • 1
  • 5
1
vote
1 answer

Python and Pyinstaller: include binary application in code

I have a small app. For protection I use c:/hwid.exe. The application returns HWID of pc. example code: def HWID_LIC(): try: if hashlib.md5(open('c:\hwid.exe', 'rb').read()).hexdigest() != 'bca173dc': sys.exit(1) out…
kingcope
  • 1,017
  • 3
  • 16
  • 34
0
votes
1 answer

Is it possible to get the HWID on linux and windows in C# without WMI?

Hi :) I'm writing a C# application and need to get the HWID code for the computer the code is running on. Since this is a console, i need to figure out a way to find the HWID for the CPU, motherboard and HDD, without using the the WMI. Since the…
TheEliteNoob
  • 84
  • 10
0
votes
0 answers

How to spoof HWID data with ManagementObjectSearcher?

I wanted to ask how could you possibly change the data of the value "PNPDeviceID" of my GPU, most likely to spoof it. The following code is an example of how to get the value, but since i am not a C# expert i am reaching out for your help because i…
0xyg3n
  • 33
  • 9
0
votes
1 answer

How to get HWID in Lua/C#?

I'm working on a Anti Cheat for FiveM, and I would like to be able to exclude users by using their HWID, so is there a way to get a HWID in lua? If not, how could I be able to get the HWID in C#? If possible, it would really help me if it was in…
0
votes
0 answers

How to get hwid like in image

I want get this type of hwid in a textbox. https://i.stack.imgur.com/CSahM.jpg Can anybody help me with this. I also tried HWID = System.Security.Principal.WindowsIdentity.GetCurrent().User.Value; But getting hwid like…
nabeel
  • 1
0
votes
0 answers

Discord Selfbot AUTH

I have codded a discord self bot but want to put it up for sale to multiple uses, I am struggling to fund a solution on how to host the Python script so that it reads your HWID and credentials. I also struggle to find a solution on how to pass…
0
votes
1 answer

How to get HWID in c++ simular to c#

Using this code in c#: WindowsIdentity.GetCurrent().User.Value; And getting output: S-1-5-21-3050176684-2277112922-4090480026-1001 How to get same output in c++?
1
2 3