I have created one script with shell scripting and the output of the script is :
htp://kevinrimer.com/admin/ [Not Found]
htp://kevinrimer.com/admincp/ [Not Found]
htp://kevinrimer.com/wp-admin/ [Not Found]
htp://kevinrimer.com/wp-login.php [Found]
htp://kevinrimer.com/wp-login/ [Not Found]
htp://kevinrimer.com/login/ [Not Found]
htp://kevinrimer.com/login.php [Not Found]
but i want to be the output is like this :
htp://kevinrimer.com/admin/ [Not Found]
htp://kevinrimer.com/admincp/ [Not Found]
htp://kevinrimer.com/wp-admin/ [Not Found]
htp://kevinrimer.com/wp-login.php [Found]
htp://kevinrimer.com/wp-login/ [Not Found]
htp://kevinrimer.com/login/ [Not Found]
htp://kevinrimer.com/login.php [Not Found]
and the code is :
if [ $CS == 0 ]; then
printf $BLUE
echo "$url$i [Found]"
else
printf $RED
echo "$url$i [Not Found]"
fi
Thanks , good Bye ^_^