Add new go software

This commit is contained in:
d3vyce 2023-02-11 05:36:17 -05:00
parent ac7e898f8b
commit 4a722df494

View File

@ -90,6 +90,22 @@ software() {
else else
printf ${ITALIC_LIGHT_CYAN}"[~] ffuf is already installed, skipping...\n" printf ${ITALIC_LIGHT_CYAN}"[~] ffuf is already installed, skipping...\n"
fi fi
if ! command -v chisel &> /dev/null
then
printf ${GREEN}"[+] chisel\n"
go install github.com/jpillora/chisel@latest >/dev/null 2>&1
else
printf ${ITALIC_LIGHT_CYAN}"[~] chisel is already installed, skipping...\n"
fi
if ! command -v nuclei &> /dev/null
then
printf ${GREEN}"[+] nuclei\n"
go install -v github.com/projectdiscovery/nuclei/v2/cmd/nuclei@latest >/dev/null 2>&1
else
printf ${ITALIC_LIGHT_CYAN}"[~] nuclei is already installed, skipping...\n"
fi
fi fi
if ! command -v pip &> /dev/null if ! command -v pip &> /dev/null