From 2701a9e8f0afe8a98702aa72a7d23c91f5513a6b Mon Sep 17 00:00:00 2001 From: David Tomaschik Date: Fri, 3 Feb 2017 17:29:21 -0800 Subject: [PATCH] Wordlist script. --- bin/install_tool | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/bin/install_tool b/bin/install_tool index c2059c8..984bfc5 100755 --- a/bin/install_tool +++ b/bin/install_tool @@ -67,6 +67,18 @@ case ${TOOL} in touch ${HOME}/.john/john.pot ln -sf ${HOME}/.john/* ${DESTDIR} ;; + wordlists) + mkdir -p ${DESTDIR} + wget -q -O ${DESTDIR}/rockyou.txt.bz2 \ + http://downloads.skullsecurity.org/passwords/rockyou.txt.bz2 + bunzip2 ${DESTDIR}/rockyou.txt.bz2 + wget -q -O ${DESTDIR}/phpbb.txt.bz2 \ + http://downloads.skullsecurity.org/passwords/phpbb.txt.bz2 + bunzip2 ${DESTDIR}/phpbb.txt.bz2 + wget -q -O ${DESTDIR}/hak5.txt.bz2 \ + http://downloads.skullsecurity.org/passwords/hak5.txt.bz2 + bunzip2 ${DESTDIR}/hak5.txt.bz2 + ;; *) echo "Unknown tool: ${TOOL}" >/dev/stderr exit 1