Skip to content
This repository has been archived by the owner on Jul 11, 2023. It is now read-only.

Commit

Permalink
Update uscanner.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
TrollSkull authored Nov 14, 2021
1 parent 90aa755 commit ae1e69a
Showing 1 changed file with 30 additions and 16 deletions.
46 changes: 30 additions & 16 deletions uscanner.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# Name: uScanner (Username Scanner Tool)
# GitHub: https://github.com/TrollSkull/uScanner
# Version: v0.3-20211020
# Version: v0.4-20211114

# Scanning up to 25 social networks!

Expand All @@ -15,7 +15,7 @@ function print_banner() {
echo -e ${B}" ____ "
echo -e ${B}" __ __/ __/______ ____ ___ ___ ____ "
echo -e ${B}"/ // /\ \/ __/ _ / _ \/ _ \/ -_) __/ "
echo -e ${B}"\_,_/___/\__/\_,_/_//_/_//_/\__/_/ ${W}v0.3-20211020"
echo -e ${B}"\_,_/___/\__/\_,_/_//_/_//_/\__/_/ ${W}v0.4-20211114"
echo
}

Expand All @@ -27,7 +27,7 @@ function stop_session() {
echo -e ${B}" ____ "
echo -e ${B}" __ __/ __/______ ____ ___ ___ ____ "
echo -e ${B}"/ // /\ \/ __/ _ / _ \/ _ \/ -_) __/ "
echo -e ${B}"\_,_/___/\__/\_,_/_//_/_//_/\__/_/ ${W}v0.3-20211020"
echo -e ${B}"\_,_/___/\__/\_,_/_//_/_//_/\__/_/ ${W}v0.4-20211114"
echo
echo -e ${GRE}"[+] ${W}uScanner: Session closed."
echo
Expand Down Expand Up @@ -67,7 +67,7 @@ function check_wifi_connection() {
python wifi.py
source $HOME/uScanner/core/wifi_connection.sh

if [ $wifi == "0" ]; then
if [ $wifi == "false" ]; then
echo -e ${R}"[!] ${W}Please, check your internet connection."
echo
exit
Expand Down Expand Up @@ -182,7 +182,22 @@ elif [ "$1" == "--update" ]||[ "$1" == "-u" ]; then
git clone https://github.com/TrollSkull/uScanner
cd uScanner
chmod 777 uscanner.sh
bash uscanner.sh
print_banner
echo -e "[+] uScanner: The tool has been successfully updated."
exit

elif [ "$1" == "--about" ]||[ "$1" == "-a" ]; then

# About the program.

print_banner
echo "Name: uScanner"
echo "Author: TrollSkull"
echo "Version: v0.4-20211114"
echo
echo "Contact: trollskull.contact@gmail.com"
echo "Follow me: https://github.com/TrollSkull"
echo
exit

elif [ "$1" == "--uninstall" ]; then
Expand All @@ -206,22 +221,21 @@ elif [ "$1" == "--uninstall" ]; then
echo
exit

elif [ "$1" == "--about" ]||[ "$1" == "-a" ]; then

# About the program.
else
# Help menu.

print_banner
echo "Name: uScanner"
echo "Author: TrollSkull"
echo "Version: v0.3-20211020"
echo "Usage: uscanner [username] or [-h] [-s] [-a] [-u]"
echo
echo "Contact: trollskull.contact@gmail.com"
echo "Follow me: https://github.com/TrollSkull"
echo " -h, --help Print this help menu"
echo " -s, --save Save the .txt file in the storage"
echo " -a, --about Print information about this program"
echo " -u, --update Update this tool automatically"
echo " --uninstall Uninstall the tool"
echo
echo "Report bugs to (t.me/TrollSkull)"
echo
exit

else
username=$1
fi

function scan_username() {
Expand Down

0 comments on commit ae1e69a

Please sign in to comment.