-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Added --hwmon-disable flag * Added Polish wordlist * Update VERSION * Added OneRuleToRuleThemStill * Replaced ORTRTA with ORTRTS * Rename * Added CeWL * Fix CeWL check * Typo * Consistency * Consistency * Typo * Fix issue * Fix length + depth
- Loading branch information
Showing
16 changed files
with
4,124,974 additions
and
59 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
#!/bin/bash | ||
# Copyright crypt0rr | ||
|
||
# Requirements | ||
HASHCAT=$(command -v hashcat) | ||
POTFILE=(hash-cracker.pot) | ||
|
||
# Logic | ||
if ! [ -x "$(command -v $HASHCAT)" ]; then | ||
echo '[-] Hashcat is not available/executable'; ((COUNTER=COUNTER + 1)) | ||
else | ||
echo '[+] Hashcat is executable' | ||
fi | ||
if test -f "$POTFILE"; then | ||
echo '[+] Potfile "hash-cracker.pot" present' | ||
else | ||
echo '[-] Potfile not present, will create "hash-cracker.pot"' | ||
touch hash-cracker.pot | ||
fi | ||
if [ "$COUNTER" \> 0 ]; then | ||
echo -e "\nNot all mandatory requirements are met. Please fix and try again."; exit 1 | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
#!/bin/bash | ||
# Copyright crypt0rr | ||
|
||
# Logic | ||
if [[ -x "scripts/extensions/common-substr" ]]; then | ||
echo '[+] Common-substr is executable' | ||
else | ||
echo '[-] Common-substr is not available/executable (option 10 / 11)' | ||
fi | ||
if [[ -x "$(command -v python2)" ]]; then | ||
echo '[+] Python2 is executable' | ||
else | ||
echo '[-] Python2 is not available/executable (option 12 / 13)' | ||
fi | ||
if [[ -x "scripts/extensions/hashcat-utils/bin/expander.bin" ]]; then | ||
echo '[+] Expander is executable' | ||
else | ||
echo '[-] Expander is not available/executable (option 14)' | ||
fi | ||
if [[ -x "$(command -v cewl)" ]]; then | ||
echo '[+] CeWL is executable' | ||
CEWL=$(command -v cewl) | ||
else | ||
echo '[-] CeWL is not available/executable (option 18)' | ||
fi | ||
|
||
echo -e "\nKernel mode:" | ||
if [ "$NOP" == '-n' ] || [ "$NOP" == '--no-limit' ]; then | ||
echo "[-] Optimised kernels disabled" | ||
KERNEL='' | ||
else | ||
echo "[+] Optimised kernels enabled" | ||
KERNEL='-O' | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
#!/bin/bash | ||
# Copyright crypt0rr | ||
|
||
# Logic | ||
read -p "Please enter the full URL to spider (e.g. https://kb.offsec.nl): " URL | ||
read -p "Output name for the CeWL wordlist: " CEWLLIST | ||
|
||
read -p "Depth to spider to (0-9): " DEPTH | ||
until [[ $DEPTH = [0-9] || [0-9][0-9] ]]; do | ||
echo "Please only use 0-99." | ||
read -p "Depth to spider to (0-99): " DEPTH | ||
done | ||
|
||
read -p "Minimum word length (1-9): " LENGTH | ||
until [[ $LENGTH = [1-9] || [1-9][0-9] ]]; do | ||
echo "Please only use 1-99." | ||
read -p "Minimum word length (1-99): " LENGTH | ||
done | ||
|
||
echo -e "\nCeWL is going to start, this will take some time..." | ||
echo -e "\nNOTE: If it takes to long, use CTRL+C to stop where CeWL is currently at, this will result in an output file.\n" | ||
|
||
$CEWL -d $DEPTH -m $LENGTH -w $CEWLLIST $URL -u "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36" | ||
|
||
echo -e "\nCeWL created a wordlist named:" $CEWLLIST "\n" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.