How bad is it really to keep account credentials in a password-protected spreadsheet?
A team I work with keeps shared account credentials in a spreadsheet with a password on the file. The file itself lives somewhere reasonably controlled, so an attacker would need to get at the file and then the file password.
The recommendation is always to use a proper password manager, and I do not disagree in principle. But I would like to understand the concrete difference rather than repeating advice. Two layers sounds superficially reasonable.
What specifically does the spreadsheet fail to do that a password manager does?
@appsec_amara · 4d ago
The first thing to establish is which spreadsheet feature is in use, because two very different things share the word "password".
Sheet or workbook protection — the option that stops editing or hides structure — provides essentially nothing. The contents are not encrypted; it is an instruction to the application, and the underlying file can be read without it.
File encryption on open — where the file cannot be opened at all without the password — is real cryptography in current versions of the major office suites, and it is not trivially broken if the password is strong.
So the answer depends entirely on which one your team is using, and a lot of people believe they have the second when they have the first. That is worth checking before anything else, because if it is the first, this is not a debate about degrees of protection.
Reply
Report