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 = os.popen("c:\hwid.exe").read().strip()
if out not in lic:
sys.exit(1)
except:
sys.exit(1)
HWID_LIC()
I want to include hwid.exe in my application and need the solution all in one file. Is possible to do this in Python? hwid.exe has 30 kb.
This is possible. You need to search your hwid.exe in sys._MEIPASS
Example spec file:
and create the onefile exe whith
When executing test.exe you see: