From 1f76727629bf6a387dcc98f646e34cd79e205394 Mon Sep 17 00:00:00 2001 From: 00100001 <108012988+dei0ces@users.noreply.github.com> Date: Thu, 20 Apr 2023 22:39:09 +0300 Subject: [PATCH] Update bypass.py final fix --- bypass.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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...")