From c0621a83cb2fb0c1bb3fa08ec173b55ff91346f8 Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Wed, 28 Oct 2020 22:51:14 -0700 Subject: [PATCH] Enable 21Studios scan --- BurnOutSharp/FileType/Executable.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/BurnOutSharp/FileType/Executable.cs b/BurnOutSharp/FileType/Executable.cs index 20c8dcd7..79893fb7 100644 --- a/BurnOutSharp/FileType/Executable.cs +++ b/BurnOutSharp/FileType/Executable.cs @@ -63,6 +63,11 @@ namespace BurnOutSharp.FileType if (!string.IsNullOrWhiteSpace(protection)) protections.Add(protection); + // 21Studios Online Activation + protection = TwentyOneStudios.CheckContents(fileContent, includePosition); + if (!string.IsNullOrWhiteSpace(protection)) + protections.Add(protection); + // ActiveMARK protection = ActiveMARK.CheckContents(fileContent, includePosition); if (!string.IsNullOrWhiteSpace(protection))