- Learning Firefox OS Application Development
- Tanay Pant
- 352字
- 2021-07-09 21:45:45
The security model of Firefox OS
In Firefox OS, each application runs in an iframe with superpowers; hence, apps that run on Gecko run on a separate process that is a child process of the B2G system process. Due to this, a malicious application cannot disturb Gaia or other applications. Access to the underlying hardware is available only via the WebAPIs, which themselves are divided into different levels of permissions: Hosted (Web), Privileged, and Certified.
Each Firefox OS application has a manifest file that contains the details of the application. The developer has to declare the permissions for the use of the WebAPIs in the manifest file. Every application that runs in Firefox OS runs in a sandboxed environment. This means that the data generated by the application is sandboxed as well, and hence the data of one application cannot be accessed by another application. The following illustration will help you grasp the preceding discussion of application sandboxing:

Even permissions from different websites are sandboxed on Firefox OS. For example, if an application uses OAuth to authenticate its users, then another app which uses a similar OAuth mechanism will ask for the login credentials again, even when you have used the login credentials in one application. This is because both applications are running in different sandboxes separately from one another, and the cookies of one application cannot be accessed by another application.
Don't worry if the concepts of the manifest file and the permissions levels are not clear yet; we will cover these topics in depth in Chapter 3, Getting Your Hands Dirty: Firefox OS Apps. Right now, you can just think of them as features that contribute to the application security in Firefox OS.
Firefox OS pays great attention to the user's data security as well. There is a setting called Do Not Track that helps to protect a user's privacy when browsing the Internet. The apps run in a sandboxed mode as described earlier, and once a user uninstalls an application, all the data associated with the application, such as cookies, AppCache, Local Storage, and IndexedDB, is also permanently deleted.
- Vue.js 2 and Bootstrap 4 Web Development
- 單片機C語言程序設計實訓100例:基于STC8051+Proteus仿真與實戰
- 面向STEM的Scratch創新課程
- NativeScript for Angular Mobile Development
- Apache Mahout Clustering Designs
- Mastering Data Mining with Python:Find patterns hidden in your data
- Spring+Spring MVC+MyBatis從零開始學
- INSTANT Silverlight 5 Animation
- Arduino電子設計實戰指南:零基礎篇
- WebStorm Essentials
- Spark技術內幕:深入解析Spark內核架構設計與實現原理
- 高性能MVVM框架的設計與實現:San
- Natural Language Processing with Python Cookbook
- Unity虛擬現實開發圣典
- 軟件測試項目實戰之功能測試篇