A blog about Linux, Debian, Ubuntu, Raspberry Pi and Python.
msfconsole search gather use auxiliary/gather/search_email_collector set domain (e.g. xyz.com) run
Great tutorial!! Just wondering if there was any way I could pull specefic emails from a domain. For example lets say I wanted to find the CFO of canons email Canon.com. Any help is decapitated. I tried jigsaw but it is unreliable.
echo "Running the harvest..." while read line do ruby /opt/metasploit-framework/msfcli auxiliary/gather/search_email_collector DOMAIN=$line OUTFILE=$line.html E w3m -dump $line.html > emails.tmp rm $line.html grep @ emails.tmp >> emails.txt done < $1 echo "Finishing... E-mail Results:" echo sort -u emails.txt > emails.tmp mv emails.tmp email.txt
First make you have both youtube-dl and ffmpeg installed: sudo apt install youtube-dl ffmpeg Then download a portion of your desired...
Great tutorial!! Just wondering if there was any way I could pull specefic emails from a domain. For example lets say I wanted to find the CFO of canons email Canon.com. Any help is decapitated. I tried jigsaw but it is unreliable.
ReplyDeleteecho "Running the harvest..."
ReplyDeletewhile read line
do
ruby /opt/metasploit-framework/msfcli auxiliary/gather/search_email_collector DOMAIN=$line OUTFILE=$line.html E
w3m -dump $line.html > emails.tmp
rm $line.html
grep @ emails.tmp >> emails.txt
done < $1
echo "Finishing... E-mail Results:"
echo
sort -u emails.txt > emails.tmp
mv emails.tmp email.txt