Skip to content
This repository has been archived by the owner on Nov 13, 2023. It is now read-only.

Commit

Permalink
Release v3.2 (#12)
Browse files Browse the repository at this point in the history
* Added --hwmon-disable flag

* Added Polish wordlist

* Update VERSION

* Added OneRuleToRuleThemStill

* Replaced ORTRTA with ORTRTS

* Fixed hashcat-utils

* Removed old scripts

* Split requirements into two files

* Fixed fingerprint attack

* Rename

* Update VERSION

* Added CeWL

* Update VERSION

* Fix issue with fingerprint.sh

* Text adjustment

* Fix issue

* Fix cewl depth + lenght
  • Loading branch information
crypt0rr authored Feb 1, 2023
1 parent e0191dd commit a4718ae
Show file tree
Hide file tree
Showing 122 changed files with 4,126,339 additions and 9,294 deletions.
9 changes: 9 additions & 0 deletions VERSION.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Version log

## v3.2 - Custom Word List Generator

* Added Polish [wordlist](https://raw.githubusercontent.com/sigo/polish-dictionary/master/dist/pl.txt)
* Added missing `--hwmon-disable` flag to `markov-generator.sh`
* Replaced OneRuleToRuleThemAll with [OneRuleToRuleThemStill](https://github.com/stealthsploit/OneRuleToRuleThemStill)
* Split `requirements.sh` into two files `mandatory` and `optional`
* Enabled Fingerprint attack - was disabled due to incompatibility with Apple Silicon
* Added Custom Word List Generator - [CeWL](https://github.com/digininja/CeWL/)

## v3.1 - To speed or not to speed #kernels

* Optimized kernels are used by default but can be disabled with the `-n` or `--no-limit` flag
Expand Down
17 changes: 11 additions & 6 deletions hash-cracker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,10 @@
# Copyright crypt0rr

function hash-cracker () {
echo "Checking if requirements are met:"
source scripts/requirements.sh
echo -e "Mandatory modules:"
source scripts/mandatory-checks.sh
echo -e "\nOptional modules:"
source scripts/optional-checks.sh
menu
}

Expand All @@ -22,10 +24,11 @@ function menu () {
echo "11. Common substring (advise: first run steps above)"
echo "12. Currently not working - PACK rulegen"
echo "13. PACK mask"
echo "14. Currently not working - Fingerprint attack"
echo "14. Fingerprint attack"
echo "15. Directory of wordlists plain and then with OneRuleToRuleThemAll"
echo "16. Username iteration (only complete NTDS)"
echo -e "17. Markov-chain passwords generator\n"
echo "17. Markov-chain passwords generator"
echo -e "18. CeWL wordlist generator\n"

read -p "Please enter job number: " START
if [[ "$START" = "0" ]] || [[ "$START" = "exit" ]]; then
Expand Down Expand Up @@ -56,21 +59,23 @@ function menu () {
source scripts/processors/pack-rule.sh
elif [[ $START = '13' ]]; then
source scripts/processors/pack-mask.sh
elif [[ $START = '-' ]]; then
elif [[ $START = '14' ]]; then
source scripts/processors/fingerprint.sh
elif [[ $START = '15' ]]; then
source scripts/processors/multiple-wordlists.sh
elif [[ $START = '16' ]]; then
source scripts/processors/usernameaspassword.sh
elif [[ $START = '17' ]]; then
source scripts/processors/markov-generator.sh
elif [[ $START = '18' ]]; then
source scripts/processors/cewl.sh
else
echo -e "Not valid, try again\n"; menu
fi
hash-cracker
}

echo -e "hash-cracker v3.1 Apple Silicon Edition by crypt0rr (https://github.com/crypt0rr)\n"
echo -e "hash-cracker v3.2 Apple Silicon Edition by crypt0rr (https://github.com/crypt0rr)\n"

NOP=$1

Expand Down
Loading

0 comments on commit a4718ae

Please sign in to comment.