Skip to content

Commit

Permalink
Adding Metafinder & Whois to installed tools check.
Browse files Browse the repository at this point in the history
  • Loading branch information
knuth committed Jul 16, 2024
1 parent 7da7643 commit 2b436f0
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions reconftw.sh
Original file line number Diff line number Diff line change
Expand Up @@ -225,6 +225,14 @@ function tools_installed() {
printf "${bred} [*] dnsvalidator [NO]${reset}\n"
allinstalled=false
}
command -v metafinder &>/dev/null || {
printf "${bred} [*] metafinder [NO]${reset}\n"
allinstalled=false
}
command -v whois &>/dev/null || {
printf "${bred} [*] whois [NO]${reset}\n"
allinstalled=false
}
command -v amass &>/dev/null || {
printf "${bred} [*] Amass [NO]${reset}\n"
allinstalled=false
Expand Down

0 comments on commit 2b436f0

Please sign in to comment.