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