ELF 学习笔记

主要参考手册:《程序员的自我修养》

 

 

 

相关工具:

readelf

objdump

nm

objcopy

ldd

 

 

 

参考资料:

elf文件格式实例解析  

http://codeprac.iteye.com/blog/1236387

只是只讲解了文件格式部分,对地址的重定位讲解不多。

它的参考资料也很全:

System V application binary interface

ELF Formatmirror txt format )

Hello,world in less than 20 bytes

Tutorial on creating teensy ELF file on linux中文翻译版本 ,also see (smallest elf32 hello,world ))

Introduction to reverse engineering on linux   (also see crackz reverse engineering page(windows),resources )

Deconstructing an ELF file

The ELF virus writing howto

Playing with binary format

ELF hackery (many links)

ELF or assembly reference (on skyeye)

linkers and loaders

linkers(part 1 ,part 2 , part 3 , part 4 , part 5 , part 6 , part 7 , part 8 ,part 9 ,part 10

      part 11 ,part 12 , part 13 , part 14 , part 15 , part 16 , part 17 , part 18 , part 19 , part 20 )

hacker's wisdom

 

还可用百度搜索"ELF site:ibm.com",能搜索到很多关于ELF中文翻译教程,其中文后的参考文献也很值得看。

pe(window下的库文件和可执行文件格式)相关链接可以在wikipedia上找到

 

各种小巧的Hello World

http://blog.csdn.net/shallwake/article/details/5390380

你可能感兴趣的:(学习笔记)