Check overlay for NSIS

This commit is contained in:
Matt Nadareski
2025-09-26 21:31:59 -04:00
parent 8534cda9c5
commit 454bfa9f4f

View File

@@ -25,6 +25,14 @@ namespace BinaryObjectScanner.Packer
return "NSIS";
}
// Get the overlay strings, if they exist
strs = exe.OverlayStrings;
if (strs != null)
{
if (strs.Exists(s => s.Contains("NullsoftInst")))
return "NSIS";
}
return null;
}
}