The MASM Forum

General => The Campus => Topic started by: LordAdef on May 15, 2017, 07:35:22 PM

Title: PECompact
Post by: LordAdef on May 15, 2017, 07:35:22 PM
Good Morning from South America Masm32!

It's Monday morning, a new week in Masm32..

I'd like to learn a bit about the "Pros/Cons" of using a tool such as PECompact. It's an interesting topic I guess for the week kick off.

Any opinions?

Cheers, Alex
Title: Re: PECompact
Post by: jj2007 on May 15, 2017, 08:09:27 PM
http://stackoverflow.com/questions/353634/are-there-any-downsides-to-using-upx-to-compress-a-windows-executable

Full of half correct and half wrong information, but a fairly good read, too.
Title: Re: PECompact
Post by: Siekmanski on May 15, 2017, 08:22:27 PM
One of the best exe packers, no false positives from anti-virus software, as far as I know.
Title: Re: PECompact
Post by: mineiro on May 15, 2017, 10:40:48 PM
These tools envelope an exe file in a hope that reverse engineering will not be done. They are called packers.
pros:
they try to compress executable file, so final size is less than original, also string search on exe file will not be show, they hidde functions being called from your program.
cons:
Because they have been created to try to secure final program they can have malicious code that will be hard to find. Virus writers (persons that write programs with malicious intentions instead of good intentions) use this tool, not only business guys.
Understand that virus are not bad programs, they are just programs that replicate itself like happens on normal life. Programmer that have created virus yes, they are bad, they inserted malicious code on a program. Computer viruses have been born from one thesis university, create artificial life inside device, if my memory is good the thesis guy is from Europe.
Title: Re: PECompact
Post by: hutch-- on May 16, 2017, 12:36:26 AM
I can recommend it, Jeremy Collake is an old friend of mine and a very clever guy. I have used PECompact for many years with all of my 32 bit MASM and PB software as it improves load time. Have never had any problems with AV using it where UPX is garanteed to drop AV alerts as its the virus writers favourite.
Title: Re: PECompact
Post by: LordAdef on May 16, 2017, 08:18:14 AM
thanks guys,

concerning image size, is it still worth compressing my images, or I can rely on PECompact for the job?
Title: Re: PECompact
Post by: Siekmanski on May 16, 2017, 08:49:47 AM
Some packers don't recognize image types like jpg and make them even bigger.
I don't have PECompact to test, but I bet Jeremy Collake takes care of pre-compressed parts in the exe files.

There is also an exe packer called Crinkler, this one is unbelievably good in crunching small apps such as intros.

www.crinkler.net
Title: Re: PECompact
Post by: jj2007 on May 16, 2017, 10:11:10 AM
Quote from: Siekmanski on May 16, 2017, 08:49:47 AMThere is also an exe packer called Crinkler, this one is unbelievably good in crunching small apps such as intros.

Looks interesting but...TMP_FILE.OBJ: error LNK: Cannot find symbol '_InitCommonControls@0'
TMP_FILE.OBJ: error LNK: Cannot find symbol '_HtmlHelpA@16'
MASMBASIC.LIB: error LNK: Cannot find symbol '_SysFreeString@4'


withOPT_DebugL /entry:start \masm32\lib\kernel32.lib \masm32\lib\user32.lib \masm32\lib\gdi32.lib \masm32\lib\ComDlg32.lib \masm32\lib\msvcrt.lib \masm32\lib\HtmlHelp.lib \masm32\lib\PsApi.lib \Masm32\MasmBasic\Res\tinf.lib \masm32\lib\Ole32.lib \masm32\lib\Shell32.lib \masm32\lib\Gdiplus.lib \masm32\lib\masm32.lib \Masm32\MasmBasic\MasmBasic.lib
Title: Re: PECompact
Post by: newrobert on May 16, 2017, 11:33:35 AM
good idea
Title: Re: PECompact
Post by: Siekmanski on May 16, 2017, 12:12:59 PM
Try something like this,
crinkler rotatingcube.obj kernel32.lib user32.lib gdi32.lib /SUBSYSTEM:WINDOWS /ENTRY:start