From 3caf7ce8cf682621cbf94050b2d21f99623217f6 Mon Sep 17 00:00:00 2001 From: HeroponRikiBestest <50224630+HeroponRikiBestest@users.noreply.github.com> Date: Mon, 9 Feb 2026 09:21:27 -0500 Subject: [PATCH] Make CEG actually work 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 @@ public partial class CEG : IExecutableCheck 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"))) {