Skip to content

Instantly share code, notes, and snippets.

@cquick97
Last active August 29, 2015 14:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cquick97/d54ce8f6c5f649410e9d to your computer and use it in GitHub Desktop.
Save cquick97/d54ce8f6c5f649410e9d to your computer and use it in GitHub Desktop.
##### Installing fmtstr
echo -e "\n\e[01;32m[+]\e[00m Installing fmtstr ~ Format String vuln helper"
# From https://r3v3rs3r.wordpress.com/2014/12/26/i-love-format-string-vulnerabilities/
git clone git://github.com/cquick97/fmtstr.git /usr/share/fmtstr_git/
file=/usr/local/bin/fmtstr
cat <<EOF > $file
#!/bin/bash
python /usr/share/fmtstr_git/fmtstr.py \$@
EOF
chmod +x $file
#### Installing asciinema
echo -e "\n\e[01;32m[+]\e[00m Installing asciinema ~ Terminal recording software"
curl -sL https://asciinema.org/install | sh
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment