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

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