diff --git a/bypass.py b/bypass.py index 9339dbb..1007b96 100644 --- a/bypass.py +++ b/bypass.py @@ -6,11 +6,11 @@ with open(file_path, "r") as file: file_text = file.read() -if "SMBIOS.reflectHost = "True" in file_text: +if 'SMBIOS.reflectHost = "True"' in file_text: print("You have run the bypass before, you do not need to run it again.") else: with open(file_path, "a") as file: - file.write("\nSMBIOS.reflectHost = "True") - print("SEB vm detection bypassed successfully.") + file.write('\nSMBIOS.reflectHost = "True"') + print("bypass completed successfully.") input("Press any key to close the program...")