-
Notifications
You must be signed in to change notification settings - Fork 77
Expand file tree
/
Copy pathmal_unpack_res.rc
More file actions
53 lines (42 loc) · 1.8 KB
/
mal_unpack_res.rc
File metadata and controls
53 lines (42 loc) · 1.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#include "mal_unpack_ver.h"
#include <windows.h>
/////////////////////////////////////////////////////////////////////////////
//
// Application Manifest
//
CREATEPROCESS_MANIFEST_RESOURCE_ID RT_MANIFEST "mal_unpack.manifest"
/////////////////////////////////////////////////////////////////////////////
//
// Application Version
//
#define VER_COMPANYNAME_STR "Hashereware (hashereware.com)"
#define VER_FILETYPE VFT_APP
#define VER_FILESUBTYPE VFT2_UNKNOWN
#define VER_FILEOS VOS_NT_WINDOWS32
#define VER_FILEDESCRIPTION_STR "MalUnpack: dynamic malware unpacker based on PE-sieve."
#define VER_INTERNALNAME_STR "mal_unpack.exe"
#define VER_ORIGINALFILENAME_STR "mal_unpack.exe"
#define VER_LEGALCOPYRIGHT_STR "Copyright © 2018-2025 Hasherezade"
#define VER_PRODUCTNAME_STR "MalUnpack"
#define VER_PRODUCTVERSION_STR VER_FILEVERSION_STR
#define VER_FILEVERSION MALUNP_MAJOR_VERSION,MALUNP_MINOR_VERSION,MALUNP_MICRO_VERSION,MALUNP_PATCH_VERSION
#define VER_PRODUCTVERSION_STR MALUNP_VERSION_STR
#define VER_FILEFLAGSMASK (VS_FF_DEBUG | VS_FF_PRERELEASE)
#ifdef DEBUG
#define VER_FILEFLAGS (VS_FF_DEBUG)
#else
#define VER_FILEFLAGS (0)
#endif
#include "common.ver"
/////////////////////////////////////////////////////////////////////////////
//
// Icon
//
// Icon with lowest ID value placed first to ensure application icon
// remains consistent on all systems.
IDI_ICON1 ICON "logo/favicon.ico"
/////////////////////////////////////////////////////////////////////////////
#ifndef APSTUDIO_INVOKED
/////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////
#endif // not APSTUDIO_INVOKED