ctf-tools/peda/install

30 lines
501 B
Text
Raw Normal View History

2015-05-07 11:02:00 +00:00
#!/bin/bash
set -eu -o pipefail
2015-05-07 11:02:00 +00:00
git clone --depth 1 https://github.com/longld/peda.git
mkdir bin
cat > bin/gdb-peda <<EOF
#!/bin/sh
exec gdb -q -ex init-peda "\$@"
EOF
chmod +rx bin/gdb-peda
cd peda
#echo "source $PWD/peda.py" >> ~/.gdbinit
if ! grep "init-peda" ~/.gdbinit; then
cat >> ~/.gdbinit <<EOF
####
# added by ctf-tools
define init-peda
source $PWD/peda.py
end
document init-peda
Initializes the PEDA (Python Exploit Development Assistant for GDB) framework
end
####
EOF
fi