mirror of
https://github.com/zardus/ctf-tools
synced 2024-12-13 14:32:34 +00:00
29 lines
500 B
Bash
Executable file
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
|