Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

now itrs working. #5

Open
fernstedt opened this issue Dec 21, 2023 · 0 comments
Open

now itrs working. #5

fernstedt opened this issue Dec 21, 2023 · 0 comments

Comments

@fernstedt
Copy link

#!/bin/bash -i

Author: drak3hft7

Date: 08/09/2021

Check if the script is executed with root privileges

if [ "$(id -u)" -eq 0 ]; then
echo ""; echo -e "\e[32m\e[1mOK. The script will install the tools.\e[0m\e[39m"; echo "";
else
echo ""; echo -e "\e[91m\e[1mRoot privileges are required\e[0m\e[39m"; echo "";
exit
fi

Other installation commands...

Truncated for brevity...

Replacing 'go get' with 'go install' for Go tools

#Naabu
echo -e "\e[93m\e[1m----> Installing Naabu";
go install -v github.com/projectdiscovery/naabu/v2/cmd/naabu@latest > /dev/null 2>&1 && ln -s ~/go/bin/naabu /usr/local/bin/;
echo -e "\e[32mDone! Naabu installed."; echo "";
sleep 1.5

#Subfinder
echo -e "\e[93m\e[1m----> Installing Subfinder";
go install -v github.com/projectdiscovery/subfinder/v2/cmd/subfinder@latest > /dev/null 2>&1 && ln -s ~/go/bin/subfinder /usr/local/bin/;
echo -e "\e[32mDone! Subfinder installed."; echo "";
sleep 1.5

#Github-subdomains
echo -e "\e[93m\e[1m----> Installing Github-subdomains";
go install github.com/gwen001/github-subdomains@latest > /dev/null 2>&1 && ln -s ~/go/bin/github-subdomains /usr/local/bin/;
echo -e "\e[32mDone! Github-subdomains installed."; echo "";
sleep 1.5

#Assetfinder
echo -e "\e[93m\e[1m----> Installing Assetfinder";
go install github.com/tomnomnom/assetfinder@latest > /dev/null 2>&1 && ln -s ~/go/bin/assetfinder /usr/local/bin/;
echo -e "\e[32mDone! Assetfinder installed."; echo "";
sleep 1.5

#dnsx
echo -e "\e[93m\e[1m----> Installing Dnsx";
go install github.com/projectdiscovery/dnsx/cmd/dnsx@latest > /dev/null 2>&1 && ln -s ~/go/bin/dnsx /usr/bin/;
echo -e "\e[32mDone! Dnsx installed."; echo "";
sleep 1.5

Other installation commands...

Truncated for brevity...

echo -e "\e[92mDone! Operation Completed\e[0m\e[39m"; echo "";

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant