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 d07e46c commit 8a6179eCopy full SHA for 8a6179e
BinaryObjectScanner/Packer/Shrinker.cs
@@ -10,11 +10,12 @@ public class Shrinker : IExecutableCheck<PortableExecutable>
10
/// <inheritdoc/>
11
public string? CheckExecutable(string file, PortableExecutable exe, bool includeDebug)
12
{
13
- // TODO: Confirm if both need to be present
14
// TODO: Figure out how to get version
15
16
if (exe.ContainsSection(".shrink0", exact: true))
17
return "Shrinker";
+ if (exe.ContainsSection(".shrink1", exact: true))
18
+ return "Shrinker";
19
if (exe.ContainsSection(".shrink2", exact: true))
20
21
0 commit comments