- 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.
- Visual Basic 6.0程序設(shè)計(jì)計(jì)算機(jī)組裝與維修
- Microsoft Dynamics 365 Extensions Cookbook
- Spring Boot+Spring Cloud+Vue+Element項(xiàng)目實(shí)戰(zhàn):手把手教你開發(fā)權(quán)限管理系統(tǒng)
- Mastering Python Scripting for System Administrators
- JavaScript前端開發(fā)與實(shí)例教程(微課視頻版)
- GameMaker Programming By Example
- 精通Python自然語言處理
- AppInventor實(shí)踐教程:Android智能應(yīng)用開發(fā)前傳
- 微信小程序開發(fā)實(shí)戰(zhàn):設(shè)計(jì)·運(yùn)營·變現(xiàn)(圖解案例版)
- Mastering Docker
- Zabbix Performance Tuning
- Mastering OAuth 2.0
- Learning D3.js 5 Mapping(Second Edition)
- Google Maps JavaScript API Cookbook
- 軟件開發(fā)中的決策:權(quán)衡與取舍