mirror of
https://github.com/The-Art-of-Hacking/h4cker
synced 2024-11-10 05:34:12 +00:00
Update SecLists.md
This commit is contained in:
parent
308c7e3715
commit
09a23aba5c
1 changed files with 25 additions and 1 deletions
|
@ -1,5 +1,29 @@
|
|||
# Daniel Miessler's SecLists is the Bomb!
|
||||
|
||||
https://github.com/danielmiessler/SecLists
|
||||
[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
|
||||
```
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue