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

31 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
  • 192
  • 2
  • 9
3
votes
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
  • 53
  • 1
  • 1
  • 3
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,909
  • 1
  • 19
  • 34
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
  • 760
  • 2
  • 9
  • 22
1
vote
5 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
  • 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,121
  • 4
  • 19
  • 36
0
votes
0 answers

trying to get string from Pastebin not working (HWID) python

code below worked for some time now it completely doesnt work no errors just not getting my hwid in that requests.get('PB URL').text: import requests import subprocess hwid = subprocess.check_output('wmic csproduct get…
0
votes
0 answers

Encrypt password in java & c# and get the same result

I am developing a loader ( in c# ) for an application. The application inject in a process, the application is in java ( don't ask how i inject : secret ( or not )). PROBLEME i need hwid verification beaucause i don't want everyone can acces to my…
Sysy
  • 79
  • 1
  • 7
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
  • 94
  • 1
  • 10
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…
OssieFromDK
  • 51
  • 2
  • 6
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
1 answer

C++ - How can i split up 3 lines safed in string called "result" and create a oneline "synonym" for all 3 strings. - C++

So, Hello Guys. I have a function, which reads the Diskdrive Serialnumber. I get a output like this: SerialNumber A6PZD6FA 1938B00A49382 0000000000000 (thats not my serialnumber, just the format) So now, i want to split the 3 numbers, or strings,…
Flawless
  • 13
  • 2
1
2 3