mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-07-17 06:14:59 +00:00
Add missing SecuROM 8 check
This commit is contained in:
@@ -1,7 +1,6 @@
|
||||
using System;
|
||||
using System.Collections.Concurrent;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using BurnOutSharp.ExecutableType.Microsoft.PE;
|
||||
using BurnOutSharp.Interfaces;
|
||||
@@ -30,6 +29,10 @@ namespace BurnOutSharp.ProtectionType
|
||||
if (matroschSection)
|
||||
return $"SecuROM Matroschka Package";
|
||||
|
||||
bool dsstextSection = pex.ContainsSection(".dsstext", exact: true);
|
||||
if (dsstextSection)
|
||||
return $"SecuROM 8.03.03+";
|
||||
|
||||
// Get the .securom section, if it exists
|
||||
bool securomSection = pex.ContainsSection(".securom", exact: true);
|
||||
if (securomSection)
|
||||
|
||||
Reference in New Issue
Block a user