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 f1d7ee8 commit 7fcdfceCopy full SHA for 7fcdfce
BinaryObjectScanner/Packer/ApecSoft.cs
@@ -0,0 +1,18 @@
1
+namespace BinaryObjectScanner.Packer
2
+{
3
+ // TODO: Implement
4
+ public class ApecSoft
5
+ {
6
+ // The overlay data starts with the string "CWS\7" [43 57 53 07]
7
+ // Data is likely compressed with zlib based on some clues from
8
+ // the executable content.
9
+
10
+ // The executable has a ".CRT" section that may contain clues of
11
+ // how to process. The section appears mostly empty. The sample
12
+ // I have has a value of [80 95 46 00] (4625792). This does not
13
+ // appear to be an offset, relative or otherwise.
14
15
+ // On initial research, there is no obvious file table or directory
16
+ // visible in any of the sections.
17
+ }
18
+}
0 commit comments