Firebase benefits Key/Value document (NoSQL) Real time database Hosted URL based Integrated Authentication Firebase NoSQL data design principles: – Don’t treat firebase like a relational database – User Root branches as your primary container – Avoid deep nesting – Duplicating Data (More art than science) – Design around data access – Data design is driver … Continued
System Security
Virtual Function Table Attack
Virtual function table (A.K.A vtable) is the key to manage virtual function which is a key mechanism to support polymorphism in C++ language. VTable is used to support dynamic dispatch or runtime method binding in C++. At the same time it is a popular target of malicious programmers to execute their malicious behavior on the system. Attacker exploits … Continued