What does the IMAP banner alone show regarding security (STARTTLS, hashing, information disclosure)?

I encountered an open TCP/143 IMAP port which responded with this banner:
* OK [CAPABILITY IMAP4rev1 SASL-IR LOGIN-REFERRALS ID ENABLE IDLE LITERAL+ STARTTLS AUTH=PLAIN AUTH=LOGIN AUTH=DIGEST-MD5 AUTH=CRAM-MD5] Dovecot ready.

From this I … Continue reading What does the IMAP banner alone show regarding security (STARTTLS, hashing, information disclosure)?

Is it possible to check for pwned/common passwords using salted hashes of the passwords?

If I administer a webpage that allows users to create accounts, and assuming I don’t keep or even ever have access to plaintext passwords, is it possible for me to detect that one of my users is using a known bad password?
I am guessing th… Continue reading Is it possible to check for pwned/common passwords using salted hashes of the passwords?

Is there any benefit to use different salt for different encryption algorithms for same user

There is two different passwords for a single user.
I’m hashing both for future validation. I’m currently using a single unique salt for the user, but each is hashed with a different algorithms (PBKDF2 with different algorithm and differen… Continue reading Is there any benefit to use different salt for different encryption algorithms for same user