Add missing SecuROM 8 check

This commit is contained in:
Matt Nadareski
2022-06-22 09:35:41 -07:00
parent b521df2ad4
commit 35c15d0ff8

View File

@@ -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)