Skip to content

Commit

Permalink
update_sudomy-1.1.6#dev
Browse files Browse the repository at this point in the history
  • Loading branch information
screetsec committed Jun 6, 2020
1 parent 2fe544c commit 202453e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions sudomy
Original file line number Diff line number Diff line change
Expand Up @@ -353,17 +353,17 @@ echo -e "\n${BOLD}[${LCYAN}⍥${RESET}${BOLD}]${RESET} Perfoming Sud⍥my scans

# pkg httprobe, checking in local system and if not have try setup pkg to local system /usr/local/bin
command -v ${_HTTPROBE} > /dev/null 2>&1 || {
echo -e "${BOLD}${PADDING}${PADDING}- ${YELLOW}Warning: ${RESET}require ${RED}${_HTTPROBE}${RESET} but it's is not installed.${GREEN}Trying to setup${RESET} pkg_${_HTTPROBE} " >&2; cp -r ${PKG_HTTPROBE} /usr/local/bin/; }
echo -e "${BOLD}${PADDING}${PADDING}- ${YELLOW}Warning: ${RESET}require ${RED}${_HTTPROBE}${RESET} but it's is not installed.${GREEN}Trying to setup${RESET} pkg_${_HTTPROBE} " >&2; chmod +x ${PKG_HTTPROBE}; cp -r ${PKG_HTTPROBE} /usr/local/bin/; }
# pkg httpx, checking in local system and if not have try setup pkg to local system /usr/local/bin
command -v ${_HTTPX} > /dev/null 2>&1 || {
echo -e "${BOLD}${PADDING}${PADDING}- ${YELLOW}Warning: ${RESET}require ${RED}${_HTTPX}${RESET} but it's is not installed.${GREEN}Trying to setup${RESET} pkg_${_HTTPX} " >&2; cp -r ${PKG_HTTPX} /usr/local/bin/; }
echo -e "${BOLD}${PADDING}${PADDING}- ${YELLOW}Warning: ${RESET}require ${RED}${_HTTPX}${RESET} but it's is not installed.${GREEN}Trying to setup${RESET} pkg_${_HTTPX} " >&2; chmod +x ${PKG_HTTPX}; cp -r ${PKG_HTTPX} /usr/local/bin/; }
# pkg dnsprobe, checking in local system and if not have try setup pkg to local system /usr/local/bin
command -v ${_DNSPROBE} > /dev/null 2>&1 || {
echo -e "${BOLD}${PADDING}${PADDING}- ${YELLOW}Warning: ${RESET}require ${RED}${_DNSPROBE}${RESET} but it's is not installed.${GREEN}Trying to setup${RESET} pkg_${_HTTPX} " >&2; cp -r ${PKG_DNSPROBE} /usr/local/bin/; }
echo -e "${BOLD}${PADDING}${PADDING}- ${YELLOW}Warning: ${RESET}require ${RED}${_DNSPROBE}${RESET} but it's is not installed.${GREEN}Trying to setup${RESET} pkg_${_HTTPX} " >&2; chmod +x ${PKG_DNSPROBE}; cp -r ${PKG_DNSPROBE} /usr/local/bin/; }

# pkg gobuster, checking in local system and if not have try setup pkg to local system /usr/local/bin
command -v ${_GOBUSTER} > /dev/null 2>&1 || {
echo -e "${BOLD}${PADDING}${PADDING}- ${YELLOW}Warning: ${RESET}require ${RED}${_GOBUSTER}${RESET} but it's is not installed.${GREEN}Trying to setup${RESET} pkg_${_GOBUSTER} " >&2; cp -r ${PKG_GOBUSTER} /usr/local/bin/; }
echo -e "${BOLD}${PADDING}${PADDING}- ${YELLOW}Warning: ${RESET}require ${RED}${_GOBUSTER}${RESET} but it's is not installed.${GREEN}Trying to setup${RESET} pkg_${_GOBUSTER} " >&2; chmod +x ${PKG_GOBUSTER}: cp -r ${PKG_GOBUSTER} /usr/local/bin/; }


echo -e "\n${BOLD}[${LBLUE}*${RESET}${BOLD}]${RESET} Load target domain: ${LGREEN}${DOMAIN}${RESET} "
Expand Down

0 comments on commit 202453e

Please sign in to comment.