├── .gitignore ├── .screenshot.png ├── LICENSE ├── README.md ├── client ├── index.html └── src │ ├── hashcatJS.js │ ├── main.js │ ├── rule.js │ └── worker.js ├── data ├── hashes.txt └── passwords.txt ├── package.json ├── server.js ├── src ├── Node.js ├── PasswordDelegator.js └── utils.js └── www ├── cats ├── index.html ├── lib │ ├── hashcatJS.js │ ├── rule.js │ └── spark-md5.min.js ├── main.js └── src │ ├── utils.js │ └── worker.js ├── embed ├── index.html ├── lib │ ├── hashcatJS.js │ ├── rule.js │ └── spark-md5.min.js ├── main.js └── src │ ├── utils.js │ └── worker.js ├── graph.js ├── index.html ├── lib ├── smoothie.js └── vue.js └── main.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brannondorsey/distributed-password-cracking/HEAD/.gitignore -------------------------------------------------------------------------------- /.screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brannondorsey/distributed-password-cracking/HEAD/.screenshot.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brannondorsey/distributed-password-cracking/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brannondorsey/distributed-password-cracking/HEAD/README.md -------------------------------------------------------------------------------- /client/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brannondorsey/distributed-password-cracking/HEAD/client/index.html -------------------------------------------------------------------------------- /client/src/hashcatJS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brannondorsey/distributed-password-cracking/HEAD/client/src/hashcatJS.js -------------------------------------------------------------------------------- /client/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brannondorsey/distributed-password-cracking/HEAD/client/src/main.js -------------------------------------------------------------------------------- /client/src/rule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brannondorsey/distributed-password-cracking/HEAD/client/src/rule.js -------------------------------------------------------------------------------- /client/src/worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brannondorsey/distributed-password-cracking/HEAD/client/src/worker.js -------------------------------------------------------------------------------- /data/hashes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brannondorsey/distributed-password-cracking/HEAD/data/hashes.txt -------------------------------------------------------------------------------- /data/passwords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brannondorsey/distributed-password-cracking/HEAD/data/passwords.txt -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brannondorsey/distributed-password-cracking/HEAD/package.json -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brannondorsey/distributed-password-cracking/HEAD/server.js -------------------------------------------------------------------------------- /src/Node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brannondorsey/distributed-password-cracking/HEAD/src/Node.js -------------------------------------------------------------------------------- /src/PasswordDelegator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brannondorsey/distributed-password-cracking/HEAD/src/PasswordDelegator.js -------------------------------------------------------------------------------- /src/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brannondorsey/distributed-password-cracking/HEAD/src/utils.js -------------------------------------------------------------------------------- /www/cats/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brannondorsey/distributed-password-cracking/HEAD/www/cats/index.html -------------------------------------------------------------------------------- /www/cats/lib/hashcatJS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brannondorsey/distributed-password-cracking/HEAD/www/cats/lib/hashcatJS.js -------------------------------------------------------------------------------- /www/cats/lib/rule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brannondorsey/distributed-password-cracking/HEAD/www/cats/lib/rule.js -------------------------------------------------------------------------------- /www/cats/lib/spark-md5.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brannondorsey/distributed-password-cracking/HEAD/www/cats/lib/spark-md5.min.js -------------------------------------------------------------------------------- /www/cats/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brannondorsey/distributed-password-cracking/HEAD/www/cats/main.js -------------------------------------------------------------------------------- /www/cats/src/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brannondorsey/distributed-password-cracking/HEAD/www/cats/src/utils.js -------------------------------------------------------------------------------- /www/cats/src/worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brannondorsey/distributed-password-cracking/HEAD/www/cats/src/worker.js -------------------------------------------------------------------------------- /www/embed/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brannondorsey/distributed-password-cracking/HEAD/www/embed/index.html -------------------------------------------------------------------------------- /www/embed/lib/hashcatJS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brannondorsey/distributed-password-cracking/HEAD/www/embed/lib/hashcatJS.js -------------------------------------------------------------------------------- /www/embed/lib/rule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brannondorsey/distributed-password-cracking/HEAD/www/embed/lib/rule.js -------------------------------------------------------------------------------- /www/embed/lib/spark-md5.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brannondorsey/distributed-password-cracking/HEAD/www/embed/lib/spark-md5.min.js -------------------------------------------------------------------------------- /www/embed/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brannondorsey/distributed-password-cracking/HEAD/www/embed/main.js -------------------------------------------------------------------------------- /www/embed/src/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brannondorsey/distributed-password-cracking/HEAD/www/embed/src/utils.js -------------------------------------------------------------------------------- /www/embed/src/worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brannondorsey/distributed-password-cracking/HEAD/www/embed/src/worker.js -------------------------------------------------------------------------------- /www/graph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brannondorsey/distributed-password-cracking/HEAD/www/graph.js -------------------------------------------------------------------------------- /www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brannondorsey/distributed-password-cracking/HEAD/www/index.html -------------------------------------------------------------------------------- /www/lib/smoothie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brannondorsey/distributed-password-cracking/HEAD/www/lib/smoothie.js -------------------------------------------------------------------------------- /www/lib/vue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brannondorsey/distributed-password-cracking/HEAD/www/lib/vue.js -------------------------------------------------------------------------------- /www/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brannondorsey/distributed-password-cracking/HEAD/www/main.js --------------------------------------------------------------------------------