GDBpeda与pwngdb、gef等插件的正确切换方式

原理:
我们将gdb的插件放入到一个文件夹,方便系统读取文件路径

git clone https://gitee.com/hongsofwing/GDB-Plugins.git

在 pwndbg 文件夹中 git init 初始化一下,然后运行 ./setup.sh 安装
想用 peda:

echo "source ~/GDB-Plugins/peda/peda.py" > ~/.gdbinit

想用 peda-heap:

echo "source ~/GDB-Plugins/peda-heap/peda.py" > ~/.gdbinit

想用 gef:

echo "source ~/GDB-Plugins/gef/gef.py" > ~/.gdbinit

想用 pwndbg:

echo "source ~/GDB-Plugins/pwndbg/gdbinit.py" > ~/.gdbinit

GDBpeda与pwngdb、gef等插件的正确切换方式_第1张图片

你可能感兴趣的:(PWN,Linux,Mac,linux,shell,git,pwn,安全漏洞)