我想保护我的python文件+ py2exe whit DmiDecode for Windows(link) ,bat我想创建独立文件!
是否可以在python代码中包含DmiDecode(在ram内存中运行以获取uuid)而不在hdd上写入?
我的实际代码是:
def lic():
try:
if hashlib.md5(open('c:\dmidecode.exe', 'rb').read()).hexdigest() != 'bca173dc4758676dd812c7632017d0ae':
sys.exit(1)
out = os.popen("c:\dmidecode.exe -s system-uuid").read().strip()
if out not in licente_valide:
sys.exit(1)
except:
sys.exit(1)
lic()