ctf-tools/peda/install
2016-05-04 20:01:47 +02:00

29 lines
500 B
Bash
Executable file

#!/bin/bash
set -eu -o pipefail
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