From 09a23aba5c4d478dc71999b0599192a49e1a3bc1 Mon Sep 17 00:00:00 2001 From: Omar Santos Date: Mon, 11 Jan 2021 15:50:41 -0500 Subject: [PATCH] Update SecLists.md --- cracking_passwords/SecLists.md | 26 +++++++++++++++++++++++++- 1 file changed, 25 insertions(+), 1 deletion(-) diff --git a/cracking_passwords/SecLists.md b/cracking_passwords/SecLists.md index 4d32ca7..d67b8ef 100644 --- a/cracking_passwords/SecLists.md +++ b/cracking_passwords/SecLists.md @@ -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 +```