-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Andres Hermosilla
committed
Aug 24, 2017
1 parent
a461646
commit a3500d5
Showing
1 changed file
with
29 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# Security - Bruteforce | ||
|
||
## Wordlist Generating | ||
- https://charlesreid1.com/wiki/John_the_Ripper/Password_Generation | ||
- https://www.lanmaster53.com/2011/02/creating-complex-password-lists-with-john-the-ripper/ | ||
- https://github.com/crunchsec/crunch | ||
- https://github.com/hashcat/maskprocessor/ | ||
- https://github.com/crunchsec/cewl | ||
- https://qntm.org/l33t | ||
|
||
```shell | ||
# Generate a dictionary from username `elly` | ||
python pydictor.py -extend elly --level 1 --len 4 16 -o elly-wordlist.lst | ||
|
||
# Using `john` generate a dictionary | ||
echo elly > user.txt; john --wordlist='user.txt' --rules --stdout | ||
|
||
|
||
# Hashcat sometimes comes bundled with maskprocessor ... or you may have to download it | ||
cd /opt | ||
wget https://github.com/hashcat/maskprocessor/releases/download/v0.73/maskprocessor-0.73.7z | ||
7za x maskprocessor-0.73.7z | ||
# From a set of strings generate a dictionary 4-12 chars in length using the chars specified | ||
./mp64.bin -i 4:12 -1 'elyj1!123' ?1?1?1?1?1?1 | ||
``` | ||
|
||
|
||
## Protection | ||
https://jerrygamblin.com/2017/08/24/disallow-million-most-common-passwords/ |