Skip to content

Latest commit

 

History

History
7 lines (5 loc) · 298 Bytes

7.2 Password.md

File metadata and controls

7 lines (5 loc) · 298 Bytes

Search for password with at least one upper/lower and between 8-12 characters.

grep '[[:upper:]]' /usr/share/wordlists/rockyou.txt | grep '[[:lower:]]' | grep -E '^.{8,12}$'

grep '^[[:upper:]]' /usr/share/wordlists/rockyou.txt | grep '.*[[:punct:]].*' | grep '[0-9]$' | grep '^.\{21,\}$'