Anti-Debug was made by
Love
๐
ใปWhat it checks for
ใป Kills tools that can be used to debug your file
ใป Exits if ran in vm (supports different vms like oracle, sandbox, windows sandbox etc...)
ใป Checks if the Username, Pc name, hwid (uuid), ip and gpu are any known vm's like virustotal
ใป Checks the registery
ใป Checks for vm dll's and known vm folders
ใป Checks the specs (ram, hardrive space and cpu count) to see if they are suspicious which could give away the vm
๐
ใปCode example
Example of how you can use Anti-Debug
import os
from anti_debug import AntiDebug
if AntiDebug().inVM:
os._exit(0)
else:
#we are not in a vm, run your malicious code or whatever