Skip to content
/ CreoID Public

A unique and secure HWID generator, made using Python.

Notifications You must be signed in to change notification settings

marl0nx/CreoID

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

📰 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()

Print all security factors of your system

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

Releases

No releases published

Packages

No packages published