What info is stored in the webappsstore.sqlite

User Help for Mozilla Firefox
Post Reply
kurt2121
Posts: 30
Joined: May 10th, 2016, 10:44 am

What info is stored in the webappsstore.sqlite

Post by kurt2121 »

So this file stores DOM files..

For the life of me, I cannot figure out what exactly are DOMs and what they do. Do they contain the entire content of a webpage? Search terms? Similar to cookies? I don't get it.

Anybody know what these are all about?
User avatar
Grumpus
Posts: 13246
Joined: October 19th, 2007, 4:23 am
Location: ... Da' Swamp

Re: What info is stored in the webappsstore.sqlite

Post by Grumpus »

Doesn't matter what you say, it's wrong for a toaster to walk around the house and talk to you
morat
Posts: 6421
Joined: February 3rd, 2009, 6:29 pm

Re: What info is stored in the webappsstore.sqlite

Post by morat »

The web storage data is stored in the webappsstore.sqlite file.

http://en.wikipedia.org/wiki/Web_storage
kreemoweet
Posts: 778
Joined: December 30th, 2009, 11:25 pm

Re: What info is stored in the webappsstore.sqlite

Post by kreemoweet »

There are no "DOM" files. DOM storage is whatever the webpage decides to store on your computer. Ostensibly, it consists of Key:Value text pairs, but no doubt a clever
programmer could use that to put anything, even something like child porn, on your storage drive. You can require all webpages to ask permission to use this storage by checking a box
on the Firefox Preferences (Options) > Advanced > Network tab.
kurt2121
Posts: 30
Joined: May 10th, 2016, 10:44 am

Re: What info is stored in the webappsstore.sqlite

Post by kurt2121 »

Grumpus wrote:DOM events

So a site like Youtube could essentially store keystrokes or search terms in the browser with this?
kurt2121
Posts: 30
Joined: May 10th, 2016, 10:44 am

Re: What info is stored in the webappsstore.sqlite

Post by kurt2121 »

kreemoweet wrote:There are no "DOM" files. DOM storage is whatever the webpage decides to store on your computer. Ostensibly, it consists of Key:Value text pairs, but no doubt a clever
programmer could use that to put anything, even something like child porn, on your storage drive. You can require all webpages to ask permission to use this storage by checking a box
on the Firefox Preferences (Options) > Advanced > Network tab.

I'm surprised I have never heard of this before. What would a site like Youtube do with DOMs, just for an example? Firefox has a way to view DOMs, doesn't it?
kreemoweet
Posts: 778
Joined: December 30th, 2009, 11:25 pm

Re: What info is stored in the webappsstore.sqlite

Post by kreemoweet »

kurt2121 wrote: Firefox has a way to view DOMs, doesn't it?
Yes indeed. Firefox's builtin Developer Tools > Web Console > Storage tab can show you what's in the various forms of storage maintained by the currently displayed webpage (or at least there's several
categories of storage there, but I've never personally seen anything except cookies, because I have everything else disabled AFAIK).

As far as what use it might be: well, if I ran an e-commerce site, I might prefer to have the users store their shopping cart info on their own machines, rather than burden my own server.
Post Reply