Skip to content

Commit 7784e0c

Browse files
committed
Add Zylom Wrapper detection
1 parent a55e490 commit 7784e0c

File tree

2 files changed

+23
-0
lines changed

2 files changed

+23
-0
lines changed
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
using BinaryObjectScanner.Interfaces;
2+
using SabreTools.Serialization.Wrappers;
3+
4+
namespace BinaryObjectScanner.Packer
5+
{
6+
/// <summary>
7+
/// Zylom Wrapper
8+
/// </summary>
9+
public class ZylomWrapper : IExecutableCheck<PortableExecutable>
10+
{
11+
/// <inheritdoc/>
12+
public string? CheckExecutable(string file, PortableExecutable exe, bool includeDebug)
13+
{
14+
// Get the .zylmix section, if it exists
15+
// Found in "f126309095_Zylom_Games"
16+
if (exe.ContainsSection(".zylmix", exact: true))
17+
return "Zylom Wrapper";
18+
19+
return null;
20+
}
21+
}
22+
}

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -180,6 +180,7 @@ Below is a list of executable packers detected by BinaryObjectScanner. The three
180180
| WinRAR SFX | Yes | No | Yes | |
181181
| WinZip SFX | Yes | No | Yes | |
182182
| WISE Installer | Yes | No | Yes | |
183+
| Zylom Wrapper | Yes | No | No | |
183184

184185
## Game Engines Detected
185186

0 commit comments

Comments
 (0)