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

Enabled interpretation of new-line (\n) in multiple instances of echo! #8

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions SpoofThatMail.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ YELLOW='\033[1;33m'
NC='\033[0m' # No Color

help () {
echo "Accepted parameters:\n"
echo -e "Accepted parameters:\n"
echo "Use -d along with a domain name, example sh SpoofThatMail.sh -d domain.com"
echo "Null string will be detected and ignored\n"
echo -e "Null string will be detected and ignored\n"
echo "Use -f along with a file containing domain names, example sh SpoofThatMail.sh -f domains.txt"
echo "Note that the path provided for the file must be a valid one\n"
echo -e "Note that the path provided for the file must be a valid one\n"
}

check_url () {
Expand Down Expand Up @@ -49,7 +49,7 @@ check_file () {
check_url $line
VULNERABLES=$((VULNERABLES=VULNERABLES+$?))
done < $input
echo "\n$VULNERABLES out of $COUNTER domains are ${RED}vulnerable ${NC}"
echo -e "\n$VULNERABLES out of $COUNTER domains are ${RED}vulnerable ${NC}"

}

Expand Down Expand Up @@ -90,7 +90,7 @@ echo "

"
if [ $# != 2 ];then
echo "Wrong execution\n"
echo -e "Wrong execution\n"
help
exit 0
fi
Expand Down