0%

通过检测是否存在q盾反沙箱

通过检测是否存在q盾反沙箱

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 * 是沙箱")

image-20221112145727789****