GDB-Gef使用方法
简介
PEDA(Python Exploit Development Assistance for GDB)是一个强大的GDB插件。它提供了更多功能,如高亮显示反汇编代码、寄存器等信息。PEDA提供了一些实用新的命令,比如checksec、aslr等
https://blog.csdn.net/SmalOSnail/article/details/53149426
一键安装:
安装GDB插件
- Peda: https://github.com/longld/peda
- Gef: https://github.com/hugsy/gef
- pwndgb:
peda
1 | git clone https://github.com/longld/peda.git ~/peda |
gef
官方文档地址
1 | wget -O ~/.gdbinit-gef.py -q https://github.com/hugsy/gef/raw/master/gef.py |
如果主机/vm连接到互联网,你可以轻松地更新 GEF
到最新版本( 即使没有安装 git
)。
1 | python/path/to/gef.py --update |
如果没有可用的更新,GEF
将响应 No update
。
1 | gef> elf-info |
Reference
- Post title:GDB-Gef使用方法
- Post author:ssooking
- Create time:2019-12-31 17:35:00
- Post link:https://ssooking.github.io/2019/12/gdb-gef使用方法/
- Copyright Notice:All articles in this blog are licensed under BY-NC-SA unless stating additionally.