创建新的 ELF 可执行文件
是否可以使用汇编创建新的 ELF 可执行文件?我想制作一个“空”可执行文件,然后填充其代码部分。
Is it possible to create a new ELF executable file by using assembly? I want to make an 'empty' executable file and fill its code section after.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是一篇有趣的文章,您会发现它很有用:创建真正青少年的旋风教程Linux 的 ELF 可执行文件
它首先分析基于 C 的小型可执行文件的大小,然后通过使用汇编程序来使其尽可能小。他通过一系列越来越复杂的分析和技巧将其从 3998 字节减少到只有 45 字节。
我相信如果您阅读并遵循它,您将比您可能需要的更多地了解 ELF!
Here's an interesting article which you'll find useful: A Whirlwind Tutorial on Creating Really Teensy ELF Executables for Linux
It starts off by analysing the size of a tiny C-based executable, and then seeks to make it small as possible by using assembler instead. He gets it from 3998 bytes down to just 45 bytes with a series of increasingly more involved analyses and tricks.
I'm sure if you read and follow along with it, you'll know more about ELF than you likely needed!