From 4e67ec5a2ba7c7a22b75090c8e6d868ac969a1cc Mon Sep 17 00:00:00 2001 From: d3vyce Date: Sat, 11 Feb 2023 05:33:17 -0500 Subject: [PATCH] Add wordlist --- pentools.sh | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/pentools.sh b/pentools.sh index 30a70d6..bc3d49d 100755 --- a/pentools.sh +++ b/pentools.sh @@ -20,6 +20,15 @@ wordlist() { printf ${GREEN}"[+] subdomains.txt\n" curl http://ffuf.me/wordlist/subdomains.txt > $TARGET/wordlist/subdomains.txt 2>&1 + + printf ${GREEN}"[+] directory-list-2.3-medium.txt\n" + curl https://raw.githubusercontent.com/daviddias/node-dirbuster/master/lists/directory-list-2.3-medium.txt > $TARGET/wordlist/directory-list-2.3-medium.txt 2>&1 + + printf ${GREEN}"[+] password.lst\n" + curl https://raw.githubusercontent.com/piyushcse29/john-the-ripper/master/run/password.lst > $TARGET/wordlist/password.lst 2>&1 + + printf ${GREEN}"[+] nmap.lst\n" + curl https://raw.githubusercontent.com/drtychai/wordlists/master/nmap.lst > $TARGET/wordlist/nmap.lst 2>&1 } software() {