mirror of
https://github.com/a0rtega/pafish
synced 2024-11-21 22:01:56 +03:00
Submitted v024 (signed executable)
This commit is contained in:
parent
a5f129bb3a
commit
774ac2b76d
@ -1,4 +1,9 @@
|
||||
|
||||
v024
|
||||
|
||||
- From now, official pafish executables will be signed, readme for
|
||||
more information
|
||||
|
||||
v023
|
||||
|
||||
- Added two new detections for generic sandboxes (username, file path)
|
||||
|
@ -13,6 +13,10 @@ The objective of this project is to collect usual tricks seen in malware samples
|
||||
|
||||
Example of [execution](http://malwr.com/analysis/99f7c1358e1f488a32b8919083a9b25b/) (v02).
|
||||
|
||||
# Executable certificate
|
||||
|
||||
All releases from v024 will be shipped signed by the original development team. Consider everything without our certificate as unofficial, you can check it against the certificates present in the binaries from this repository.
|
||||
|
||||
# Build
|
||||
|
||||
Pafish is written in C and developed with [wxDev-C++](http://wxdsgn.sourceforge.net/).
|
||||
|
BIN
pafish.exe
BIN
pafish.exe
Binary file not shown.
@ -1,7 +1,7 @@
|
||||
# Project: pafish
|
||||
# Compiler: Default GCC compiler
|
||||
# Compiler Type: MingW 3
|
||||
# Makefile created by wxDev-C++ IDE 7.4.2.569 on 10/02/13 19:56
|
||||
# Makefile created by wxDev-C++ IDE 7.4.2.569 on 23/02/13 19:55
|
||||
|
||||
WXLIBNAME = wxmsw29u
|
||||
CPP = g++.exe
|
||||
|
@ -7,10 +7,10 @@
|
||||
#define PAFISH_PRIVATE_H
|
||||
|
||||
/* VERSION DEFINITIONS */
|
||||
#define VER_STRING "0.2.3.1"
|
||||
#define VER_STRING "0.2.4.1"
|
||||
#define VER_MAJOR 0
|
||||
#define VER_MINOR 2
|
||||
#define VER_RELEASE 3
|
||||
#define VER_RELEASE 4
|
||||
#define VER_BUILD 1
|
||||
#define COMPANY_NAME ""
|
||||
#define FILE_VERSION ""
|
||||
|
@ -8,8 +8,8 @@ A ICON MOVEABLE PURE LOADONCALL DISCARDABLE "pafish.ico"
|
||||
// This section contains the executable version information. Go to
|
||||
// Project > Project Options to edit these values.
|
||||
1 VERSIONINFO
|
||||
FILEVERSION 0,2,3,1
|
||||
PRODUCTVERSION 0,2,3,1
|
||||
FILEVERSION 0,2,4,1
|
||||
PRODUCTVERSION 0,2,4,1
|
||||
FILETYPE VFT_APP
|
||||
BEGIN
|
||||
BLOCK "StringFileInfo"
|
||||
|
@ -23,7 +23,7 @@ BuildCmd=
|
||||
[VersionInfo]
|
||||
Major=0
|
||||
Minor=2
|
||||
Release=3
|
||||
Release=4
|
||||
Build=1
|
||||
LanguageID=1033
|
||||
CharsetID=1252
|
||||
|
Loading…
Reference in New Issue
Block a user