This post describes methods to transform/obfuscate/minimize Linux ELF files.
sstrip
The sections are used for debugging and not neccessary for a program’s execution. The command sstrip removes all sections from the file.
sstrip bin.elf
After the command, it can be verified with readelf --sections bin.elf that there are not sections are in the file.
Leave a Reply
You must be logged in to post a comment.