Basic AntiVM
a basic antivm
7
7kz
Project Author
1 views
0 likes
about 1 month ago
#AntiVM
#FuckVM
#SexVM
Project Files
python
main.pyimport os
class Detection:
@staticmethod
def antivm():
if os.cpu_count() is not None and os.cpu_count() < 2:
return 1
else:
print("no vm")
return 0
Detection.antivm()