mirror of
https://github.com/zardus/ctf-tools
synced 2024-12-13 14:32:34 +00:00
Merge pull request #66 from LosFuzzys/fixes
Fixed missing escaping of $@ in the gdb extension install scripts
This commit is contained in:
commit
c4eded5c29
3 changed files with 3 additions and 3 deletions
|
@ -6,7 +6,7 @@ git clone --depth 1 https://github.com/hugsy/gef.git
|
|||
mkdir bin
|
||||
cat > bin/gdb-gef <<EOF
|
||||
#!/bin/sh
|
||||
exec gdb -q -ex init-gef "$@"
|
||||
exec gdb -q -ex init-gef "\$@"
|
||||
EOF
|
||||
chmod +rx bin/gdb-gef
|
||||
|
||||
|
|
|
@ -6,7 +6,7 @@ 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 "$@"
|
||||
exec gdb -q -ex init-peda "\$@"
|
||||
EOF
|
||||
chmod +rx bin/gdb-peda
|
||||
|
||||
|
|
|
@ -6,7 +6,7 @@ git clone --depth 1 git clone https://github.com/zachriggle/pwndbg
|
|||
mkdir bin
|
||||
cat >> bin/pwndbg <<EOF
|
||||
#!/bin/sh
|
||||
exec gdb -q -ex init-pwndbg "$@"
|
||||
exec gdb -q -ex init-pwndbg "\$@"
|
||||
EOF
|
||||
chmod +rx bin/pwndbg
|
||||
|
||||
|
|
Loading…
Reference in a new issue