diff --git a/BinaryObjectScanner/Packer/NSIS.cs b/BinaryObjectScanner/Packer/NSIS.cs index fe4ef3a6..192a6bc3 100644 --- a/BinaryObjectScanner/Packer/NSIS.cs +++ b/BinaryObjectScanner/Packer/NSIS.cs @@ -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; } }