我正在寻找二进制加密代码生成的选项,并找到两个可用的PIC和PIE选项.我试图找到两者之间的差异,但没有找到合适的文章.如果有人可以通过例子与专业人士和玉米来解释差异,或者提供好文章的链接将是很好的学习.
我的基本动机是保护已编译的代码,因为ELF / PE格式可能受到病毒的攻击,或者可能被黑客入侵,或者在反向技术的帮助下可以重新生成代码.还要提供任何其他方法来保护编译代码免受攻击和d-compling.
我正在使用GCC Compiler通过Cygwin构建跨平台应用程序.
解决方法
从
gcc documentation:
-fpic
Generate position-independent code (PIC) suitable for use in a shared library…
-fpie
These options are similar to -fpic and -fPIC,but generated position independent code can be only linked into executables….