Covers the cellar core (the Flutter front door has its own policy at whuppi/cellar_flutter).
Report privately via GitHub Security Advisories. Do not open a public issue.
-
The encryption seam misbehaving — cellar ships no cryptography, but it routes bytes through the caller's
FileEncryptor. If the pipeline ever writes plaintext where the configuration said encrypt, returns ciphertext as if it were plaintext instead of throwingEncryptionKeyMissingError, or skips chunk-MAC verification on a read path, that's a security report. -
Tenant scoping leaks —
keyPrefixis a tenant boundary. Any operation that lets one scoped cellar read, list, or overwrite another scope's objects (other than the documentedwipePartitioncross-tenant wipe) is a security issue. -
Key-grammar bypass — the key validator exists to make path traversal impossible. A key or prefix that reaches the filesystem with
.., absolute segments, or Windows-reserved names got past a security control.
-
Crashes or hangs from corrupted stored data — these are bugs, not vulnerabilities. Report them as regular issues.
-
The strength of your crypto — cellar is bring-your-own-encryption; the cipher, key management, and key storage are the caller's. A weak
FileEncryptorimplementation is not a cellar vulnerability. -
OS-level access to the storage directories — cellar stores app-private data where the caller points it. An attacker with filesystem access to those directories is outside the model; at-rest protection is what the encryption seam is for.
-
Network attacks — cellar makes no network requests; a remote backend you implement owns its own transport security.
-
CI runs Chrome with
--no-sandbox— standard for CI runners (no SUID sandbox available); only the repo's own test suites are ever loaded, and the runner is ephemeral. -
Same-key concurrent writes are the caller's to serialize — cellar takes no locks by design; a data race on one key corrupts that object only, and the atomic-write rule keeps crash-safety intact.
Valid reports are fixed and shipped as patch versions.