Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is it safe to upload a project with Firebase Database on Github?

I'm currently working on an app with a Firebase Database for it's backend.

I want to upload it to the Github to show on my LinkedIn what I'm currently working on. Is it safe to upload through Github without anyone else accessing my Firebase database or any other security issues?

like image 503
Mochi Avatar asked Jan 05 '23 23:01

Mochi


1 Answers

So long as you've written thorough Security Rules for your database, this should be totally safe! The whole idea of the Firebase Realtime Database is to be able to provide direct access from untrusted clients.

If you aren't confident in your security rules, I'd encourage you to look into making them robust. Just because you aren't sharing your source code doesn't mean someone isn't looking for vulnerabilities.

like image 188
Michael Bleigh Avatar answered Jan 13 '23 16:01

Michael Bleigh