cyber-security-resources/cracking_passwords/SecLists.md

30 lines
814 B
Markdown
Raw Normal View History

2020-11-15 01:48:28 +00:00
# Daniel Miessler's SecLists is the Bomb!
2021-01-11 20:50:41 +00:00
[SecLists](https://github.com/danielmiessler/SecLists) include numerous wordlists that can be used for web application discovery, fuzzing, password cracking with millions of passwords from breaches, default passwords, pattern-matching, payloads, usernames, web-shells, and more.
You can install it using the following methods:
**Zip**
```
wget -c https://github.com/danielmiessler/SecLists/archive/master.zip -O SecList.zip \
&& unzip SecList.zip \
&& rm -f SecList.zip
```
**Git (Small)**
```
git clone --depth 1 https://github.com/danielmiessler/SecLists.git
```
**Git (Complete)**
```
git clone https://github.com/danielmiessler/SecLists.git
```
**Kali Linux** ([Tool Page](https://tools.kali.org/password-attacks/seclists))
```
apt -y install seclists
```
2020-11-15 01:48:28 +00:00