From 4af1be995dcb6c53a555b0bfb1bc0d9d893dbdc3 Mon Sep 17 00:00:00 2001 From: d3vyce Date: Tue, 28 Mar 2023 21:52:24 +0200 Subject: [PATCH] Fix rockyou download --- pentools.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pentools.sh b/pentools.sh index 61cb67b..03f49d3 100755 --- a/pentools.sh +++ b/pentools.sh @@ -13,7 +13,7 @@ wordlist() { mkdir $TARGET/wordlist >/dev/null 2>&1 printf ${GREEN}"[+] rockyou.txt\n" - curl https://github.com/brannondorsey/naive-hashcat/releases/download/data/rockyou.txt > $TARGET/wordlist/rockyou.txt 2>&1 + wget -q -O - https://github.com/brannondorsey/naive-hashcat/releases/download/data/rockyou.txt > $TARGET/wordlist/rockyou.txt 2>&1 printf ${GREEN}"[+] common.txt\n" curl http://ffuf.me/wordlist/common.txt > $TARGET/wordlist/common.txt 2>&1