mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-04-18 20:22:42 +00:00
Make CEG actually work (#407)
I wrote the original line wrong without realizing somehow.
This commit is contained in:
committed by
GitHub
parent
6cc6f66c95
commit
8df070ad3d
@@ -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")))
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user