Three common software for reducing the size of executable programs
Under Linux, use the Strip command directly
#:strip xxxCan remove compile debugging information and various symbol tables, can greatly reduce the executable program size
Windows under this kind of EXE compression tool is a lot, do crack, reverse research more
- UPX, http://upx.sourceforge.net/, most commonly used
- Aspack Home http://www.aspack.com, this I used, after compression, is the original size of about 30%, very useful
- All have free version, Baidu's
- After the compression results are EXE files, click can be performed, decompression is loader in memory
- EXE compression, commonly called shell, except to reduce memory consumption, but also the machine code is disguised, to single-step tracking must first shelled
Three common software for reducing the size of executable programs