forked from apogiatzis/gdb-peda-pwndbg-gef
-
Notifications
You must be signed in to change notification settings - Fork 0
/
install.sh
executable file
·90 lines (74 loc) · 2.07 KB
/
install.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
#!/bin/sh
# This script is a modified fork
# of https://github.com/apogiatzis/gdb-peda-pwndbg-gef
installer_path=$PWD
echo "[+] Checking for required dependencies..."
if command -v git >/dev/null 2>&1 ; then
echo "[-] Git found!"
else
echo "[-] Git not found! Aborting..."
echo "[-] Please install git and try again."
fi
if [ -f ~/.gdbinit ] || [ -h ~/.gdbinit ]; then
echo "[+] backing up gdbinit file"
cp ~/.gdbinit ~/.gdbinit.back_up
fi
# download peda and decide whether to overwrite if exists
if [ -d ~/peda ] || [ -h ~/.peda ]; then
echo "[-] PEDA found"
read -p "skip download to continue? (enter 'y' or 'n') " skip_peda
if [ $skip_peda = 'n' ]; then
rm -rf ~/peda
git clone https://github.com/longld/peda.git ~/peda
else
echo "PEDA skipped"
fi
else
echo "[+] Downloading PEDA..."
git clone https://github.com/longld/peda.git ~/peda
fi
# download pwndbg
if [ -d ~/pwndbg ] || [ -h ~/.pwndbg ]; then
echo "[-] Pwndbg found"
read -p "skip download to continue? (enter 'y' or 'n') " skip_pwndbg
if [ $skip_pwndbg = 'n' ]; then
rm -rf ~/pwndbg
git clone https://github.com/pwndbg/pwndbg.git ~/pwndbg
cd ~/pwndbg
./setup.sh
else
echo "Pwndbg skipped"
fi
else
echo "[+] Downloading Pwndbg..."
git clone https://github.com/pwndbg/pwndbg.git ~/pwndbg
cd ~/pwndbg
./setup.sh
fi
# download gef
echo "[+] Downloading GEF..."
# This script uses a forked version of GEF with
# added features
# git clone https://github.com/hugsy/gef.git ~/gef
git clone https://github.com/bata24/gef.git ~/gef
cd $installer_path
echo "[+] Setting .gdbinit..."
cp gdbinit ~/.gdbinit
{
echo "[+] Creating files..."
sudo cp gdb-peda /usr/bin/gdb-peda &&\
sudo cp gdb-peda-intel /usr/bin/gdb-peda-intel &&\
sudo cp gdb-pwndbg /usr/bin/gdb-pwndbg &&\
sudo cp gdb-gef /usr/bin/gdb-gef
} || {
echo "[-] Permission denied"
exit
}
{
echo "[+] Setting permissions..."
sudo chmod +x /usr/bin/gdb-*
} || {
echo "[-] Permission denied"
exit
}
echo "[+] Done"