You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A proof-of-concept packer for .NET executables, designed to provide a starting point to explain the basic principles of runtime packing.
It is a full implementation of a simple .NET PE file packer, which doesn't use native code, and with (almost) no noticeable delay during the unpacking phase of the application.
It can perform the following tasks:
pack itself
packing files packed by itself (up to four layers of packing are tested)
automagically resolve dependencies of the packed EXE
A sample GUI has been created in the SimplePacker project to demonstrate this principle.
Sample files
In the /sample firectory you can find two files: input.exe and output.exe. The naming should indicate which one is packed and which one is not.
Warning
This is a proof-of-concept code sample; it is possible that it will not work on your set up or does not work at all on your system.
This packer is also considered to be highly insecure (as with all obfuscators/packers which provide security by obscurity), since an unpacker can be easily constructed.