GDB useful addons or plugins

Helpful GDB Plugins:

PEDA

PEDA – Python Exploit Development Assistance for GDB

https://github.com/longld/peda

GEF

GDB Enhanced Features

https://github.com/hugsy/gef Lisa.py

 LLDB

Lisa.py: An Exploit Dev Swiss Army Knife.

https://github.com/ant4g0nist/lisa.py

Voltron

Voltron is an extensible debugger UI toolkit written in Python.

https://github.com/snare/voltron

 

How to use GDB debug:

http://heather.cs.ucdavis.edu/~matloff/UnixAndC/CLanguage/Debug.html

gdb命令笔记

gdb peda常用指令

最近的文章

GDB 调试dumped core文件

在调试堆栈溢出的时候,用gdb加载文件运行的时候的地址会和直接运行的地址有出入,这个时候我们需要先在没有gdb的情况下运行程序,程序崩溃会生成core文件然后我们用gdb filename core进行调试我在ubuntu上测试的时候会发现当前目录里面并没有生成core文件,在研究一番后发现需要修改/proc/sys/kernel/core_pattern 文件然后我们用root来执行下面命令:$> mkdir -p /tmp/cores$> chmod a+rwx /tmp/...…

core dump gdb gdb调试继续阅读
更早的文章

Algorithm study notes

Tree:https://www.cs.cmu.edu/~adamchik/15-121/lectures/Trees/trees.html Backtrack:A general recursive template for backtracking:helper (parameters of given data and current recursive level) { // Handle base cases, i.e. the last level of recu...…

algorithm study study notes tree继续阅读