Added script to create the wordlist (automation is good!)

This commit is contained in:
Douglas Muth 2016-07-10 19:04:23 -04:00
parent b45ecf1715
commit ee0be8ba2d

24
wordlist/go-create-wordlist.sh Executable file
View file

@ -0,0 +1,24 @@
#!/bin/bash
#
# Wrapper to create our wordlist from any directory
#
# Errors fatal
set -e
pushd $(dirname $0) > /dev/null
JS="wordlist.js"
echo "# "
echo "# Creating wordlist Javascript..."
echo "# "
./create-wordlist.php > ${JS}
echo "# "
echo "# Done! List created at ${JS}"
echo "# "