Advertisement
Guest User

Untitled

a guest
Oct 18th, 2019
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. import os
  2. import thread
  3. import time
  4.  
  5. def procesoss():
  6. try:
  7. while 1 == 1:
  8. Black_List = ["inyector.exe","cheatengine-x86_64.exe","ollydbg.exe","cheatengine-x86.exe"]
  9. for p in os.popen("tasklist"):
  10. procesos = p.lower()
  11. for sema in Black_List:
  12. if procesos.find(sema) != -1:
  13. p = procesos.split()
  14. os.popen("taskkill /im %s /f" % p[0])
  15. time.sleep(3)
  16. except:
  17. time.sleep(3)
  18.  
  19. thread.start_new_thread(procesoss, ())
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement