#!/usr/bin/env bash BASE_URL=https://github.com/epi052/feroxbuster/releases/latest/download MAC_ZIP=x86_64-macos-feroxbuster.zip MAC_URL="$BASE_URL/$MAC_ZIP" LIN32_ZIP=x86-linux-feroxbuster.zip LIN32_URL="$BASE_URL/$LIN32_ZIP" LIN64_ZIP=x86_64-linux-feroxbuster.zip LIN64_URL="$BASE_URL/$LIN64_ZIP" EMOJI_URL=https://gist.github.com/epi052/8196b550ea51d0907ad4b93751b1b57d/raw/6112c9f32ae07922983fdc549c54fd3fb9a38e4c/NotoColorEmoji.ttf echo "[+] Installing feroxbuster!" which unzip &>/dev/null if [ "$?" = "0" ]; then echo "[+] unzip found" else echo "[ ] unzip not found, exiting. " exit -1 fi if [[ "$(uname)" == "Darwin" ]]; then echo "[=] Found MacOS, downloading from $MAC_URL" curl -sLO "$MAC_URL" unzip -o "$MAC_ZIP" >/dev/null rm "$MAC_ZIP" elif [[ "$(expr substr $(uname -s) 1 5)" == "Linux" ]]; then if [[ $(getconf LONG_BIT) == 32 ]]; then echo "[=] Found 32-bit Linux, downloading from $LIN32_URL" curl -sLO "$LIN32_URL" unzip -o "$LIN32_ZIP" >/dev/null rm "$LIN32_ZIP" else echo "[=] Found 64-bit Linux, downloading from $LIN64_URL" curl -sLO "$LIN64_URL" unzip -o "$LIN64_ZIP" >/dev/null rm "$LIN64_ZIP" fi if [[ -e ~/.fonts/NotoColorEmoji.ttf ]]; then echo "[=] Found Noto Emoji Font, skipping install" else echo "[=] Installing Noto Emoji Font" mkdir -p ~/.fonts pushd ~/.fonts 2>&1 >/dev/null curl -sLO "$EMOJI_URL" fc-cache -f -v >/dev/null popd 2>&1 >/dev/null echo "[+] Noto Emoji Font installed" fi fi chmod +x ./feroxbuster echo "[+] Installed feroxbuster version $(./feroxbuster -V)"