Passwords
History
Files containing passwords
check config files
Whatever server there is check its database to find stored credentials
If there is a web server then maybe check the database
grep --color=auto -rnw '/' -ie "PASSWORD" --color=always 2> /dev/null
find . -type f -exec grep -i -I "PASSWORD" {} /dev/null \;
Last updated