Post List
逆向笔记
# 1. 查看汇编代码
objdump -t XXX : 查看程序中使用到的函数
objdump -d XXX :查看程序中函数的汇编代码
objdump -d -j .plt XXX : 查看 plt 表
-j 的参数有:.text - 代码段
.const - 只读数据段(有些编译器不使用此段,将只读数据并入.data 段
.data - 读写数据段
.bss -bss 段
objdump -d -M intel 程序名 |grep 函数名:查看某程序内某函数地址
objdump -d -j .plt ./filename |grep system : 查找程序中 plt...
more...
Hello World
Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub.
# Quick Start
# Create a new post
1$ hexo new "My New Post"
More info: Writing
# Run...
more...