We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 454bfa9 commit 8abdaa4Copy full SHA for 8abdaa4
BinaryObjectScanner/Packer/NSIS.cs
@@ -5,12 +5,14 @@
5
namespace BinaryObjectScanner.Packer
6
{
7
// TODO: Add extraction
8
+ // <see href="https://github.com/mcmilk/7-Zip/tree/master/CPP/7zip/Archive/Nsis"/>
9
public class NSIS : IExecutableCheck<PortableExecutable>
10
11
/// <inheritdoc/>
12
public string? CheckExecutable(string file, PortableExecutable exe, bool includeDebug)
13
14
// Investigate the ".ndata" section
15
+ // NSIS is state-machine based, similar to Wise scripts
16
17
string? name = exe.AssemblyDescription;
18
0 commit comments