Skip to content

Instantly share code, notes, and snippets.

@iGh0st
Created June 18, 2014 18:19
Show Gist options
  • Save iGh0st/34f1aa6fd185d8337879 to your computer and use it in GitHub Desktop.
Save iGh0st/34f1aa6fd185d8337879 to your computer and use it in GitHub Desktop.
Dragon_Tables.sh Rainbow Table Creator
#!/bin/bash
echo "+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+"
echo "+- @@@@@@@ @@@@@@@ @@@@@@ @@@@@@@ @@@@@@ @@@ @@@-+"
echo "+- @@! @@@ @@! @@@ @@! @@@ !@@ @@! @@@ @@!@!@@@-+"
echo "+- @!@ !@! @!@!!@! @!@!@!@! !@! @!@!@ @!@ !@! @!@@!!@!-+"
echo "+- !!: !!! !!: :!! !!: !!! :!! !!: !!: !!! !!: !!!-+"
echo "+- :: : : : : : : : : :: :: : : :. : :: : -+"
echo "+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+"
echo "+- @@@@@@@ @@@@@@ @@@@@@@ @@@ @@@@@@@@ @@@@@@ -+"
echo "+- @@! @@! @@@ @@! @@@ @@! @@! !@@ -+"
echo "+- @!! @!@!@!@! @!@!@!@ @!! @!!!:! !@@!! -+"
echo "+- !!: !!: !!! !!: !!! !!: !!: !:! -+"
echo "+- : : : : :: : :: : ::.: : : :: ::: ::.: : -+"
echo "+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+"
echo " BY "
echo " +-+-+ +-+-+ +-+-+ "
echo " |W|W| |o|f| |0|z| "
echo " +-+-+ +-+-+ +-+-+ "
echo " "
echo ""
echo "*************************************************************"
echo "** This script will assist you with creating rainbow tables**"
echo "** for the use of WPA/WPA2 cracking. Remember you MUST have**"
echo "** a WORDLIST already! **"
echo "*************************************************************"
echo "**Special Thanks to: n1tr0g3n for some know how help and to**"
echo "**www.Top-Hat-Sec.com and the Admin for help & inserpation **"
echo "**every step of the way. **"
echo "** -- WW of 0z -- **"
echo "*************************************************************"
echo ""
sleep 6
echo ""
echo "*************************************************************"
echo "**Please ensure that the wordlist you would like to use is **"
echo "**located on your Desktop. It will need to be there for the**"
echo "**this script to work properly. Thank you. **"
echo "** **"
echo "*************************************************************"
sleep 5
echo ""
echo "Before the magic happens please tell the dragon your username?";
read USER;
sleep 2
cd /$USER/Desktop/
ls
echo""
echo "Thank you, now tell the dragon what wordlist to use from the output above.";
read WORDLIST;
echo ""
echo "Thank you, now tell the dragon what is the target ESSID?";
sleep 2
echo ""
read ESSID;
echo ""
echo "Thank you, now tell the dragon the output name of the hash file you would like it to be?";
sleep 1
echo ""
read HASH;
echo ""
echo "Thank you, the dragon will now generate you the requested rainbow talble"
echo "This could take some time please be patient."
echo ""
echo ""
read -p "PLEASE PRESS ENTER TO START THE RAINBOWTABLE CREATION PROCESS"
sleep 1
echo ""
echo ""
genpmk -f $WORDLIST -s $ESSID -d $HASH
echo ""
sleep 1
echo ""
echo "Thank you fo using Dragon Tables. For questions or comments please Email me at"
echo "DragonClockSec@gmail.com"
echo ""
echo "WW of 0z made"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment