Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
playground:servers [2025-05-14 16:23] – geek | playground:servers [2025-05-14 17:25] (current) – [Fingerprinting] geek | ||
---|---|---|---|
Line 38: | Line 38: | ||
Software licenses are usually tied to both a user of the software, and some number of computer systems that the software will be installed onto. In order to enforce the installation limit, one or more metrics of the computer system must be fingerprinted to validate that the user did not attempt to impermissibly transfer the software from one computer to another. Together, these collected metrics form what is called a " | Software licenses are usually tied to both a user of the software, and some number of computer systems that the software will be installed onto. In order to enforce the installation limit, one or more metrics of the computer system must be fingerprinted to validate that the user did not attempt to impermissibly transfer the software from one computer to another. Together, these collected metrics form what is called a " | ||
+ | |||
+ | Some metrics can change over the lifetime of a single installation. For example, the operating system version, processor, motherboard, | ||
Here are some of the fingerprint-able metrics you can access from AutoHotkey: | Here are some of the fingerprint-able metrics you can access from AutoHotkey: | ||
Line 57: | Line 59: | ||
<code autohotkey> | <code autohotkey> | ||
MsgBox ComObjGet(" | MsgBox ComObjGet(" | ||
+ | </ | ||
+ | |||
+ | Operating System Version: | ||
+ | <code autohotkey> | ||
+ | MsgBox A_OSVersion | ||
</ | </ | ||
Line 82: | Line 89: | ||
</ | </ | ||
+ | Storage volume identifiers: | ||
+ | |||
+ | Network card MAC addresses: '' | ||
+ | |||
+ | Computer System Product UUID (This is used to identify an OEM PC, it may be generic for custom built PCs or VMs): | ||
+ | <code autohotkey> | ||
+ | MsgBox ComObjGet(" | ||
+ | </ | ||
+ | |||
+ | MachineGuid (This is used to identify a Windows installation, | ||
+ | <code autohotkey> | ||
+ | MsgBox RegRead(" | ||
+ | </ | ||
===== Oracle Free VPS ===== | ===== Oracle Free VPS ===== | ||