Executable compression
From Just Solve the File Format Problem
(Difference between revisions)
Line 4: | Line 4: | ||
|thiscat=Executable compression | |thiscat=Executable compression | ||
}} | }} | ||
− | '''Executable compression''' takes an [[Executables|executable]] file, and makes it smaller. | + | '''Executable compression''' takes an [[Executables|executable]] file, and makes it smaller, without changing its functionality. One way to do this 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. | 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. | ||
Line 14: | Line 14: | ||
* [[DIET (compression)|DIET]] | * [[DIET (compression)|DIET]] | ||
* ICE (Keith P. Graham) | * ICE (Keith P. Graham) | ||
− | * EXEPACK | + | * [[EXEPACK]] |
* LEXEM | * LEXEM | ||
* LGLZ (George Lyapko) | * LGLZ (George Lyapko) |
Revision as of 19:38, 19 September 2019
Executable compression takes an executable file, and makes it smaller, without changing its functionality. One way to do this 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[hide] |
List of formats
- AXE (System Enhancement Associates)
- COMPACK (Prominence Computer Services)
- DIET
- ICE (Keith P. Graham)
- EXEPACK
- LEXEM
- LGLZ (George Lyapko)
- LZEXE
- PGMPak (Todor Todorov)
- PKLITE
- PROPACKER (Rob Northern Computing)
- SCRNCH
- SHRINK
- TINYPROG
- UPX
- WWPACK (Piotr Warezak and Rafal Wierzbicki)
- XPACK (JauMing Tseng)
Software
- [1] - A collection of some compression and decompression utilities for DOS