I am developing an Android app that makes use of Firebase Storage with Security Rules.
Currently my only Firebase Security Rules are auth != null
on both read and write, a 5 MB max file size on write, and a 1 hr period max before users can no longer read the file.
My question is: how safe is this? How hard would it be for a malicious user to upload multiple files repeatedly, so as to kill my storage space?