From 4a722df49420543e0465008f241617c3e4144051 Mon Sep 17 00:00:00 2001 From: d3vyce Date: Sat, 11 Feb 2023 05:36:17 -0500 Subject: [PATCH] Add new go software --- pentools.sh | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/pentools.sh b/pentools.sh index 6c1eeb1..0fe5831 100755 --- a/pentools.sh +++ b/pentools.sh @@ -90,6 +90,22 @@ software() { else printf ${ITALIC_LIGHT_CYAN}"[~] ffuf is already installed, skipping...\n" 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 if ! command -v pip &> /dev/null