使用 gcc 编译,无需 ELF 图像中的纯文本常量

发布于 2024-10-20 18:32:04 字数 150 浏览 2 评论 0原文

我在 C 代码中有一些字符串常量。当我使用 gcc 编译它时,字符串以纯文本形式存储在 a.out 中。这些可以在 a.out 中手动编辑。我不希望它们以某种格式进行编码,这样就没有人可以通过编辑 a.out 来更改字符串。是否有任何 objcopy 或 gcc 选项可以避免这种情况?

I have some string constants in a C code. when i compile it using gcc, the strings are stored in a.out in plain text. These can be hand-edited in a.out. I wan't them to be encoded in some format so that no one can change the strings by editing a.out. Are there any objcopy or gcc options to avoid this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

面犯桃花 2024-10-27 18:32:04

那么是否至少可以编译代码,以便 elf 仅在完整性自检后才执行?如果失败,则终止并出现错误...

也就是说,它最终可以存储某种 md5sum,并在每次执行时检查它。

我相信 win32 应用程序有这个,&手动编辑 Windows exe ,使其成为无效的 win32 应用程序,因为校验和失败..

这在 GCC/Linux 中可能吗?

is it then atleast possible to compile the code so that the elf executes only after an integrity self-check & terminate with an error if it fails...

that is it can store some kind of md5sum in the end, and check it at each execution..

i believe win32 apps have this, & hand-editing a windows exe , makes it an invalid win32 app, because the checksum fails..

is this possible in GCC/Linux ?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文