Skip to content

Commit

Permalink
Merge pull request #889 from 0xAW/dev
Browse files Browse the repository at this point in the history
Adding Metafinder & Whois to installed tools check.
  • Loading branch information
six2dez authored Jul 17, 2024
2 parents 7da7643 + 2b436f0 commit b2b1897
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 b2b1897

Please sign in to comment.