Advertisement
Baneee

HWID Lock Codded By Baneee#0011

Mar 10th, 2020
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. HWID Lock | Codded By Baneee#0011
  2.  
  3. import subprocess
  4. import requests
  5. import time
  6. import sys
  7. import os
  8.  
  9. hwid = str(str(subprocess.check_output('wmic csproduct get uuid')).strip().replace(r"\r", "").split(r"\n")[1].strip())
  10. r = requests.get("https://pastebin.com/raw/YourLinkHere")
  11.  
  12.  
  13. def printSlow(text):
  14. for char in text:
  15. print(char, end="")
  16. sys.stdout.flush()
  17. time.sleep(.1)
  18.  
  19. def Main_Program():
  20. if hwid in r.text:
  21. printSlow("Access granted..")
  22. else:
  23. print("Error! HWID not verified!")
  24. print("Please contact a admin for help. HWID: " + hwid)
  25. os.system('pause >NUL')
  26.  
  27. if __name__ == "__main__":
  28. Main_Program()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement