Warning from firebase realtime database regarding rules, but I have updated - firebase-realtime-database

{
"rules": {
".read": "true",
".write": "true",
}
}
Even after updating my rules with this, still I'm receiving warnings that I should update my firebase realtime database and also, I have also received that if I have modified rules in last 24 hours, those changes are not accounted for, what do I do now?

The rules in your question allow anyone in the world to read and write whatever they want in your database. If they know the URL of your database, they can steal and/or wipe all of your data with a single call.
That's what the Firebase email is warning you about. I highly recommend studying it carefully, and then following up with:
the Firebase documentation on its server-side security rules
the Realtime Database specific documentation for the rules, including the video in there
Firebase email saying my realtime database has insecure rules

Related

Can Firebase Storage rules validate against Realtime Database data?

I've seen from this post (https://firebase.blog/posts/2022/09/announcing-cross-service-security-rules) that you can validate Storage rules against Firestore data, however, I can't find any information if you can do it for Realtime Database.
Riiight at the bottom of the post, the last paragraph says:
So there you have it. That’s our shiny new feature. Try it out and let
us know what you think. For the next milestone, we plan to support
cross-service rules queries to the Realtime database! Stay tuned!
So.. not yet :)

What do these default security rules for the Firebase Realtime Database mean?

I've created a new project on Firebase, and created a Realtime Database in there. When asked about the security rules for my database, I selected to Start in test mode.
Now the security rules of my database in the Firebase console show up as:
{
"rules": {
".read": "now < 1622790000000", // 2021-6-4
".write": "now < 1622790000000", // 2021-6-4
}
}
What do these rules mean? And how can I change them to be more secure?
It's been a month since I created my Firebase Realtime Database, and I now got a message:
Your project's Realtime Database '' will start denying client requests unless you update your security rules
These default test mode rules are a simple catch-all that allows everyone in the world to read from and write to your database until a given date.
Let's break the rules down to see exactly how they work:
The ".read" and ".write" nodes immediately under "rules" determine who can read/write the data in the entire database.
The now variable is automatically set by Firebase to be the current time on the server. This value is in milliseconds since the epoch, which is the recommended value to also store timestamps in Firebase.
The 1622790000000 value in the rules is the timestamp of some point in the future. Let's see what this value is in a more readable date format:
console.log(new Date(1622790000000))
"2021-06-04T07:00:00.000Z"
So anyone can read of write all data in our database until June 4th, 2021. After that date nobody can access the data anymore with the client-side SDKs. The Firebase Admin SDKs bypass these rules altogether, so they are not affected.
Can I extend the time period?
You may have gotten a message like this from Firebase:
You chose to start developing in Test Mode, which leaves your Realtime Database instance completely open to the Internet. Because this choice makes your app vulnerable to attackers, your database security rules were configured to stop allowing requests after the first 30 days. In 5 day(s), all client requests to your Realtime Database instance will be denied.
This message means that access to your data is about to expire, due to timestamp that is in your security rules.
It's actually pretty easy to extend the test mode to another deadline. All you need to do is change that 1622790000000 value. For example, for extend it to July 4th, I can set the value to 1625382000000.
To determine the value to use, I run this tiny JavaScript snippet:
console.log(new Date("2021-07-04T07:00:00.000Z").getTime())
Run this snippet to get the timestamp exactly one month from now:
console.log(new Date(Date.now()+30*24*60*60*1000).getTime())
Here's another tool to calculate these values.
By using 1625382000000 we've extended test mode for a month and everyone can read/write the entire database until July 4, 2021.
How can I better protect the data?
At some point you should come up with a better way to protect your (user's) data than just opening it until a specific date. I typically do this right when I start a project, but it's also fine if you start it a bit later.
The important thing is that you should treat the server-side security rules the same as the client-side source code of your app.
I develop my code and rules in tandem. So:
I start with a fully closed off database, since there is no code yet that needs access to any data.
I add some data manually to the database, and write code to read it. At this point, I write security rules that only allow read-access to that specific data. So it may be ".read": true, but it'll be much deeper in my JSON structure. Even such simple rules will already block many bad actors.
The first time I want the app to write to the database is also when I add authentication. Typically I start with anonymous auth, since it does not require me to enter any credentials.
I then include the hard-coded UID in my security rules, to ensure only I can write data. You'll often still find this top-level ".write": "auth.uid === 'hardcodedUidOfPufsAnonymousUser'" in my rules much later, after I added proper data ownership.
When using Firestore I sometimes evolve that as explained here: User conflict when using same Auth method for Admin and Normal users | Firebase Auth
At any point when I add (typically lists of) data, I think through who "owns" this data, and who can read it. I then expand my rules to allow exactly that access, and nothing more.
This need to update my security rules as I write code slows down the pace at which I code, but I'll gladly do it anyway. Keeping the data in my database secure at every step, allows me to give people access to the app/database with confidence. I recommend you do the same.
For more information, I recommend reading:
The Firebase documentation on security rules, which contains examples of these common use-cases:
Content-owner only access
Public read, private write access
Attribute and role based access
All authenticated users can read/write all datsa

Firebase Realtime Database Setting Rules

I have a simple app I am trudging through learning how to make, it only displays a list of data that I upload periodically for discounts and coupon deals. There is no user data gathered, so I don't see a need for authentication or to log in. However as I learn and read about about storing and retrieving data, it seems I might have to. Specifically when it comes to my firebase realtime database. It is telling me my rules are insecure having both read and write set to true for public. I understand the "write" being unsafe, but is there a problem with letting the "read" function be set to true for anyone if I'm not storing any personal data? Is there any way for me to say "anyone can read, but only I can write, but I don't want everyone to have to create usernames and passwords" or is that illogical thinking and I should just make a login screen? Thank you for any insight.
Edit: I currently put my coupon data into the database via a short standalone javascript program I wrote that takes a csv file I write and writes it to the database. If I change write to false for all, I'm afraid that will prevent my program from writing. So I guess in order to keep using my program to write the data I'd have to have SOME kind of authentication, right? Very good to know I can leave the read to true for the public, thank you.
"rules": {
".read": true,
".write": true,
"deals": {
".indexOn": ["indexStore", "promoCode"]
},
}
Yes! Here is how you can do it:
Just change the ".write": true to ".write": false. That will do it

Link between user and the database in firebase

Swift 3.0 iOS 11.x
So link my swift app to a firebase using the standard
FirebaseApp.configure()
I log into it with a user I have created, authentication registers good and I create a database on it. All good.
I take a different device and try log in with a user who doesn't exist, authentication fails and I am unable to access the database. All good.
But wait, I create another user; and given I know the path of the database I find I have access to it. Which would seem reasonable, and yet it isn't.
Imagine I have 10 different app users, they all have their own databases; and yet as long as they are authenticating to firebase, they potentially mess each other up since everyone seem to have access to everyone else's database as long as they have authenticated. Indeed I look at this post...
How to link between Authenticated users and Database in Firebase? which seems to suggest things are a little tighter, and yet evidently their not.
I'v missed something fundamental here haven't I?
This is secured through Firebase Rules. You can check out the documentation for full detailed information about the topic.
The structure you are looking for would look something like this:
{
rules: {
$uid: {
".read" = "auth.uid == $uid",
".write" = "auth.uid == $uid"
}
}
}
You have to be careful with this one because this does not apply to every database structure. This one would work, if you create a node for every user in the root of your database and specify the users authentication id as the key. A user could only access the data in the node with his Firebase Authentication id, although in that node all data, also every child node of it.
Check out the docs for more information. You can find your rules in the Firebase Console in the Database tab.

Parse to Firebase Database Migration

Still my app uses Parse for storing user details for my existing application, since Parse announced that shutdown date for their service, we planned to use Firebase,
Shall we import parse users into my Firebase framework, if yes please suggest way to migrate parse to Firebase.
This question is not easy to answer on stack overflow completely since it highly depends on what your data is like and what your source code is like. The first question I would have is why are you not using the suggested migration path which is using open source parse-server and mongodb?
If you do actually switch to firebase, then Frank's link is a great place to start. Switching from parse to firebase will not be a 5 minute process however, since the backends are completely different (although they seem very similar on the surface).
You can retrieve all your data from parse, including the user collection by going to the parse dashboard - App Settings - Export App Data. This will export JSON files of all your classes. You can find a way to import this into Firebase, but this will be done offline and then (if your app is live), the data will not be synchronized between the 2 backends.
The link suggests 2 approaches for this:
Migrate Your Data
After you decide how to structure your data in Firebase, you need to
plan how to handle the period during which your app needs to write to
both databases. Your choices are:
Background Sync
In this scenario, you have two versions of the app: the old version
that uses Parse and a new version that uses Firebase. Syncs between
the two databases are handled by Parse Cloud Code (Parse to Firebase),
with your code listening to changes on Firebase and syncing those
changes with Parse. Before you can start using the new version, you
must:
Convert your existing Parse Data to the new Firebase structure, and
write it to the Firebase Realtime Database. Write Parse Cloud Code
functions that use the Firebase REST API to write to the Firebase
Realtime Database changes made in the Parse Data by old clients. Write
and deploy code that listens to changes on Firebase and syncs them to
the Parse database. This scenario ensures a clean separation of old
and new code, and keeps the clients simple. The challenges of this
scenario are handling big datasets in the initial export, and ensuring
that the bidirectional sync doesn't generate infinite recursion.
Double Write
In this scenario, you write a new version of the app that uses both
Firebase and Parse, using Parse Cloud Code to sync changes made by old
clients from the Parse Data to the Firebase Realtime Database. When
enough people have migrated from the Parse-only version of the app,
you can remove the Parse code from the double write version.
This scenario doesn't require any server side code. Its disadvantages
are that data that is not accessed is not migrated, and that the size
of your app is increased by the usage of both SDKs.

Resources