diff --git a/Dockerfile b/Dockerfile index 1fb4f7f..2348cdc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -68,7 +68,8 @@ RUN cp /home/kali/resources/tmux.conf /home/kali/.tmux.conf \ && cp -r /home/kali/resources/bloodhound /home/kali/.config/bloodhound \ && cp -r /home/kali/resources/shell-upgrade.sh /home/kali/tools/shell-upgrade.sh \ && cp -r /home/kali/resources/recon.sh /home/kali/.local/bin/recon.sh && chmod +x /home/kali/.local/bin/recon.sh \ - && cp -r /home/kali/resources/proxychains.conf /home/kali/.proxychains/proxychains.conf + && cp -r /home/kali/resources/proxychains.conf /home/kali/.proxychains/proxychains.conf \ + && cp -r /home/kali/resources/kerbrute /home/kali/.local/bin/kerbrute && chmod +x /home/kali/.local/bin/kerbrute RUN git clone https://github.com/samratashok/nishang.git diff --git a/resources/kerbrute b/resources/kerbrute new file mode 100755 index 0000000..a54f5a9 Binary files /dev/null and b/resources/kerbrute differ diff --git a/sources/3-wordlists.sh b/sources/3-wordlists.sh index 5b26a2b..d8e2de6 100644 --- a/sources/3-wordlists.sh +++ b/sources/3-wordlists.sh @@ -25,3 +25,5 @@ wget "https://raw.githubusercontent.com/danielmiessler/SecLists/master/Fuzzing/S wget "https://raw.githubusercontent.com/danielmiessler/SecLists/master/Discovery/DNS/subdomains-top1million-20000.txt" -q -O $HOME/.wordlists/dns.txt wget "https://raw.githubusercontent.com/danielmiessler/SecLists/master/Discovery/DNS/bitquark-subdomains-top100000.txt" -q -O $HOME/.wordlists/dns-1.txt + +wget "https://raw.githubusercontent.com/jeanphorn/wordlist/master/usernames.txt" -q -O $HOME/.wordlists/usernames.txt