Skip to content
This repository has been archived by the owner on Aug 1, 2024. It is now read-only.

Commit

Permalink
minor changes
Browse files Browse the repository at this point in the history
  • Loading branch information
countervolts authored May 21, 2024
1 parent 1025432 commit c133f3e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -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:
Expand Down
4 changes: 2 additions & 2 deletions utils/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -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():
Expand Down Expand Up @@ -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)

0 comments on commit c133f3e

Please sign in to comment.