From 04f04e45afede2c3535f0a564c7923ca600ace86 Mon Sep 17 00:00:00 2001 From: Ayoub Faouzi Date: Mon, 26 Jan 2026 18:44:33 +0100 Subject: [PATCH] fix: Qemu ACPI firmware string check logic is backwards --- al-khaser/AntiVM/Qemu.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/al-khaser/AntiVM/Qemu.cpp b/al-khaser/AntiVM/Qemu.cpp index ae114b6..efa45c5 100644 --- a/al-khaser/AntiVM/Qemu.cpp +++ b/al-khaser/AntiVM/Qemu.cpp @@ -179,7 +179,7 @@ BOOL qemu_firmware_ACPI() for (DWORD j = 0; j < sizeof(strings) / sizeof(char*); j++) { - if (!find_str_in_data((PBYTE)strings[j], strlen(strings[j]), table, tableSize)) + if (find_str_in_data((PBYTE)strings[j], strlen(strings[j]), table, tableSize)) { free(table); result = TRUE;