From 8df070ad3d49458ab2ae485505bfacedc9e63b27 Mon Sep 17 00:00:00 2001 From: HeroponRikiBestest <50224630+HeroponRikiBestest@users.noreply.github.com> Date: Mon, 9 Feb 2026 09:25:01 -0500 Subject: [PATCH] Make CEG actually work (#407) I wrote the original line wrong without realizing somehow. --- BinaryObjectScanner/Protection/CEG.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BinaryObjectScanner/Protection/CEG.cs b/BinaryObjectScanner/Protection/CEG.cs index 479bd2f2..c566b9a0 100644 --- a/BinaryObjectScanner/Protection/CEG.cs +++ b/BinaryObjectScanner/Protection/CEG.cs @@ -16,7 +16,7 @@ namespace BinaryObjectScanner.Protection var strs = exe.GetFirstSectionStrings(".rdata"); if (strs is not null) { - if (strs.Exists(s => s.Contains("STEAMSTART") && s.Contains("STEAM_DRM_IPC"))) + if (strs.Exists(s => s.Contains("STEAMSTART")) && strs.Exists(s => s.Contains("STEAM_DRM_IPC"))) { if (strs.Exists(s => s.Contains("This file has been stripped"))) {