Passwords
Check the history first
history
cat .bash_historyCheck for passwords
Right in front of us

history
cat .bash_history
grep --color=auto -rnw '/' -ie "PASSWORD" --color=always 2> /dev/nullf
find . -type f -exec grep -i -I "PASSWORD" {} /dev/null \;