CreoID

📰 Follow me here 📰
Discord | YouTube | Github

Header

An unique HWID generator, made using Python.

Why choose CreoID?

CreoID uses multiple secutity factors (Disks, CPU HWID, Mainboard HWID and more) to make sure that it's hard to bypass.

Usage/Examples

Check for updates

from utils import check_for_updates

check_for_updates()
from utils import print_all_security_factors

print_all_security_factors()

Generate a unique HWID based on all security factors

from utils import generate_unique_hwid

hwid = generate_unique_hwid()
print(hwid)

Check if a HWID matches with your system

def example_check_hwid():
    hwid = generate_unique_hwid()
    r = requests.get('https://marl0nx.github.io/CreoID/example_hwid')  # Replace your own URL.
    if r.text == hwid:
        return True
    else:
        return False

print("HWID matches with your system: " + str(example_check_hwid()))

Authors

Support

This HWID generator is windows only!

For support, send me a message on Discord. I am pleased to help.

Username: marl0nx