1

我想在 android 中使用 HWID 保护我的 python 脚本

我希望只有拥有 HWID 的人才能访问我的脚本

例子 :

HWID = {
"63e2xxx57d94",
"87g5xxxh6388",
"6634xxx65h9f"
}
#How To Check This ?
XHWID = 'some id'  
if HWID == XHWID:
     print("Success")
else:
     print("Failed")
exit()
4

0 回答 0