1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
| from os import popen,system from sys import exit
def not_sandbox(): system("calc")
process_list = popen("cmd /c tasklist").read()
for i in process_list.split('\n'): if "QQProtect.exe" in i: not_sandbox() exit(100000)
system("msg * 是沙箱")
|