Squadcast Docs
Terraform
Visit Terraform on GitHub
Set theme to dark (⇧+D)

Wordlist - .txt

Get-Content .\input.txt -Raw | -split '\W+' | Sort-Object -Unique | Out-File wordlist.txt Generate wordlists based on character sets and length.

cat textfile.txt | tr ' ' '\n' | sort -u > wordlist.txt wordlist .txt

john --wordlist=base.txt --rules=best --stdout > mutated.txt Get-Content

msfvenom -p payload -o wordlist.txt -a x86 --platform windows -e x86/shikata_ga_nai (Not for password lists — more for payload generation) | Name | Description | Size | |------|-------------|------| | rockyou.txt | Classic breach password list (from RockYou) | ~14M lines | | SecLists/Passwords | Common passwords + real-world breaches | Large | | CrackStation | Includes word + mutation rules | ~20GB | | Openwall wordlists | English dictionary + passwords | ~500MB | wordlist .txt

hashcat --stdout -r rules/best64.rule base_wordlist.txt > mutated.txt