From 06f84db0920b4e42202ee222b0796c4b2bbd0e04 Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Sun, 7 Sep 2025 12:39:06 -0400 Subject: [PATCH] Add a couple more Uniloc filenames --- BinaryObjectScanner/Protection/UnilocSoftAnchor.cs | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/BinaryObjectScanner/Protection/UnilocSoftAnchor.cs b/BinaryObjectScanner/Protection/UnilocSoftAnchor.cs index 12f6aae8..fea312ca 100644 --- a/BinaryObjectScanner/Protection/UnilocSoftAnchor.cs +++ b/BinaryObjectScanner/Protection/UnilocSoftAnchor.cs @@ -65,6 +65,10 @@ namespace BinaryObjectScanner.Protection // Found in Redump entry 114428 new(new FilePathMatch("saAuditMD.dll"), "Uniloc SoftAnchor"), + + // Found in Alpha Protocol -- TODO: Get Redump ID(s) + new(new FilePathMatch("saAudit2005MD.dll"), "Uniloc SoftAnchor"), + new(new FilePathMatch("SANativeUIDLL.dll"), "Uniloc SoftAnchor"), }; return MatchUtil.GetAllMatches(files, matchers, any: true); @@ -82,6 +86,10 @@ namespace BinaryObjectScanner.Protection // Found in Redump entry 114428 new(new FilePathMatch("saAuditMD.dll"), "Uniloc SoftAnchor"), + + // Found in Alpha Protocol -- TODO: Get Redump ID(s) + new(new FilePathMatch("saAudit2005MD.dll"), "Uniloc SoftAnchor"), + new(new FilePathMatch("SANativeUIDLL.dll"), "Uniloc SoftAnchor"), }; return MatchUtil.GetFirstMatch(path, matchers, any: true);