File tree Expand file tree Collapse file tree 2 files changed +23
-0
lines changed
BinaryObjectScanner/Packer Expand file tree Collapse file tree 2 files changed +23
-0
lines changed Original file line number Diff line number Diff line change
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
+ }
Original file line number Diff line number Diff line change @@ -180,6 +180,7 @@ Below is a list of executable packers detected by BinaryObjectScanner. The three
180
180
| WinRAR SFX | Yes | No | Yes | |
181
181
| WinZip SFX | Yes | No | Yes | |
182
182
| WISE Installer | Yes | No | Yes | |
183
+ | Zylom Wrapper | Yes | No | No | |
183
184
184
185
## Game Engines Detected
185
186
You can’t perform that action at this time.
0 commit comments