Executable compression
(→List of formats) |
|||
Line 18: | Line 18: | ||
* AINEXE - See [[AIN#AINEXE]] | * AINEXE - See [[AIN#AINEXE]] | ||
* [[aPACK]] | * [[aPACK]] | ||
+ | * [[ASPack]] | ||
* [[AVPACK]] (Andrei Volkov) | * [[AVPACK]] (Andrei Volkov) | ||
* [[AXE (executable compression)|AXE]] | * [[AXE (executable compression)|AXE]] | ||
Line 25: | Line 26: | ||
* [[ICE (executable compression)|ICE]] | * [[ICE (executable compression)|ICE]] | ||
* [[JAM (executable compression)|JAM]] | * [[JAM (executable compression)|JAM]] | ||
− | * [[The JAM Packer]] | + | * [[The JAM Packer|JAM Packer, The]] |
* [[LZEXE]] | * [[LZEXE]] | ||
+ | * [[PECompact]] | ||
* [[Petite]] | * [[Petite]] | ||
* [[PGMPak]] (Todor Todorov) | * [[PGMPak]] (Todor Todorov) | ||
Line 34: | Line 36: | ||
* [[SHRINK (executable compression)|SHRINK]] | * [[SHRINK (executable compression)|SHRINK]] | ||
* [[TINYPROG]] | * [[TINYPROG]] | ||
− | * [[UCEXE]] | + | * [[UCEXE]] |
* [[UPX]] | * [[UPX]] | ||
* [[WWPACK]] | * [[WWPACK]] |
Revision as of 19:30, 20 April 2021
Executable compression takes an executable file, and makes it smaller, without changing its functionality. One way to do that is to compress the file and bundle it with a small decompression routine, which decompresses the file, in memory, every time it is executed.
It is usually possible to identify a particular kind of compressed executable as such, and decompress it to its original form. Another possibility is to let the program decompress itself, then try to capture it in memory. However, some developers have used various tricks to try to make these things difficult.
Contents |
Security information
Executable compression frequently involves techniques, such as self-modifying code, that are also used by viruses and other malware. Compounding the problem, a compressed executable can't be properly scanned by anti-malware software unless it knows how to decompress it.
Don't be surprised if your anti-malware software thinks some compressed executable files look suspicious. Research into this topic should be considered NSFW.
List of formats
- 624
- AINEXE - See AIN#AINEXE
- aPACK
- ASPack
- AVPACK (Andrei Volkov)
- AXE
- COMPACK
- DIET
- EXEPACK
- ICE
- JAM
- JAM Packer, The
- LZEXE
- PECompact
- Petite
- PGMPak (Todor Todorov)
- PKLITE
- PRO-PACK
- SCRNCH
- SHRINK
- TINYPROG
- UCEXE
- UPX
- WWPACK
- XPACK
- X-pack for Executable
Software
- SAC FTP collection → PACK (also at [1], [2], [3])
- ANORMAL's DOSEXE collections → Executable Tools Pack → packers/, unpackers/
- [4] - A collection of some compression and decompression utilities for DOS