From c133f3e594f3928ba52b6049a9547d00587e75a1 Mon Sep 17 00:00:00 2001 From: ayo <93222141+countervolts@users.noreply.github.com> Date: Mon, 20 May 2024 21:35:52 -0400 Subject: [PATCH] minor changes --- main.py | 8 ++++---- utils/utils.py | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/main.py b/main.py index 414891a..5a47447 100644 --- a/main.py +++ b/main.py @@ -49,7 +49,7 @@ run_as_admin() sys.exit() else: - check_for_updates('2.1.1') + check_for_updates('2.1.2') hosted_network_info = subprocess.check_output('netsh wlan show hostednetwork', shell=True).decode() status = re.search(r'Status\s+:\s+(\w+)', hosted_network_info) @@ -83,15 +83,15 @@ key = winreg.OpenKey(winreg.HKEY_LOCAL_MACHINE, key_path, 0, winreg.KEY_READ) network_address = search_registry_for_network_address(key) if network_address is None: - create_option = input("NetworkAddress not found. do you want to create one? (THIS IS THE BYPASS DO Y IF YOU WANT IT TO WORK) (y/n): ").lower() + create_option = input("Bypass not found. do you want to bypass (if you are running the spoofer turn your internet off now) (y/n): ").lower() if create_option == 'y': create_network_address(instance[1]) else: - change_option = input("NetworkAddress found. do you want to change it? (y/n): ").lower() + change_option = input("Bypass found. do you want to change it? (if you are running the spoofer turn your internet off now) (y/n): ").lower() if change_option == 'y': create_network_address(instance[1]) else: - print(f"NetworkAddress: {network_address}\n") + print(f"NetworkAddress (enter this in the spoofer): {network_address}\n after entering that into the spoofer turn it on and turn your wifi/ethernet back on") winreg.CloseKey(key) else: diff --git a/utils/utils.py b/utils/utils.py index 7f6aa2c..1adecd3 100644 --- a/utils/utils.py +++ b/utils/utils.py @@ -8,7 +8,7 @@ def set_window_title(): random_title = ''.join(random.choices(string.ascii_letters + string.digits, k=32)) - random_title += " - created by countervolts (v2.1.1)" + random_title += " - created by countervolts (v2.1.2)" ctypes.windll.kernel32.SetConsoleTitleW(random_title) def is_admin(): @@ -60,5 +60,5 @@ def check_for_updates(current_version): else: print("You're running the latest version.") -current_version = '2.1.1' +current_version = '2.1.2' check_for_updates(current_version)