GDB实用插件(peda, gef, gdbinit)全解
GDB插件配置与实用.gdbinit
当 GDB
(即 GNU Project Debugger
)启动时, 它在当前用户的主目录中寻找一个名为 .gdbinit
的文件; 如果该文件存在, 则 GDB
就执行该文件中的所有命令. 通常, 该文件用于简单的配置命令, 如设置所需的缺省汇编程序格式(Intel®
或 Motorola
) 或用于显示输入和输出数据的缺省基数(十进制或十六进制). 它还可以读取宏编码语言, 从而允许实现更强大的自定义. 该语言遵循如下基本格式:
define <command>
<code>
end
document <command>
<help text>
end
- 本文并不详细说明 .gdbinit 的语法, 我们只是提供一些从各路大神摘来的配置信息.
.gdbinit
的配置繁琐, 因此某些大神想到了用插件的方式来实现, 通过 Python 的脚本可以很方便的实现我们需要的功能
gdb 插件和配置信息
peda
- 项目地址: https://github.com/longld/peda
- 安装:
git clone https://github.com/longld/peda.git ~/peda
echo "source ~/peda/peda.py" >> ~/.gdbinit
gef
- 项目地址: https://github.com/hugsy/gef
- 安装:
# via the install script
#下载 `gef.sh` 并执行
wget -q -O- https://github.com/hugsy/gef/raw/master/gef.sh | sh
# manually
# 下载 `gef.py`, 并将其 `source` 写入 `.gdbinit`
wget -q -O ~/.gdbinit-gef.py https://github.com/hugsy/gef/raw/master/gef.py
echo source ~/.gdbinit-gef.py >> ~/.gdbinit
gdbinit
- 我们也可以从网上或自己编写
.gdbinit
配置文件, 我们从网上找到一份配置 - 项目地址: https://github.com/gdbinit/Gdbinit
- 安装
git clone git@github.com:gdbinit/Gdbinit.git
cp Gdbinit/gdbinit ~/.gdbinit
总结
- 我把前面三个项目组合在一起
- 项目地址 : https://github.com/gatieme/GdbPlugins
git clone git@github.com:gatieme/GdbPlugins.git ~/.GdbPlugins
使用
# 使用 peda
echo "source ~/.GdbPlugins/peda/peda.py" > ~/.gdbinit
# 使用 gef
echo "source ~/.GdbPlugins/gef/gef.py" > ~/.gdbinit
#使用 gdbinit
echo "source ~/.GdbPlugins/gdbinit/gdbinit" > ~/.gdbinit