Skip to content

Password List Generate quick list

TheGetch edited this page Jan 5, 2021 · 1 revision

Password List - Generate quick list

Password List - Generate quick list

Say you have a simple list of passwords:

January
February
March
April
May
June
July
August
September
October
November
December
Password
P@ssw0rd
htb
Secret
Autumn
Fall
Spring
Winter
Summer

You can use the following to add the years to all of them:

$ for i in $(cat pwlist.txt); do echo $i; echo ${i}2019; echo ${i}2020; echo ${i}\!; done > updated_pwlist.txt

You can then use hashcat to mutate the password list:

$ hashcat --force --stdout updated_pwlist.txt -r /usr/share/hashcat/rules/best64.rule -r /usr/share/hashcat/rules/toggles1.rule | sort -u | awk 'length($0) > 8'

_Sidebar

1. Recon

Ping Sweep

CIDR to IP

2. Enumeration

Services

05. HTTP (80,443,8080,8443,etc.)

3. Exploitation

4. Post Exploiation

5. High Value Information

Hashes

6. Reporting

7. Random Notes/Useful Tidbits

Clone this wiki locally