diff options
Diffstat (limited to 'CamilStaps-s4498062-Assignment-4/ex1/exploit/exploit.sh')
-rwxr-xr-x | CamilStaps-s4498062-Assignment-4/ex1/exploit/exploit.sh | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/CamilStaps-s4498062-Assignment-4/ex1/exploit/exploit.sh b/CamilStaps-s4498062-Assignment-4/ex1/exploit/exploit.sh new file mode 100755 index 0000000..3c21d53 --- /dev/null +++ b/CamilStaps-s4498062-Assignment-4/ex1/exploit/exploit.sh @@ -0,0 +1,16 @@ +#!/bin/sh +cat exploit - + +# cat - exploit - is the "best" way of doing this: +# +# It lets you explore the target using format strings, so that you can +# craft your exploit into "exploit", execute it by sending EOF (ctrl+D), +# and then once again you have direct input options. +# +# Can also solve this with a looping construct, for when you need more +# than one try, e.g. +#while [ 1 ] +#do +# cat - +# cat exploit +#done |