Reputation: 2850
Where are sessionStorage and localStorage stored on the client's computer?
Could you tell me the path?
Upvotes: 84
Views: 96276
Reputation: 2237
Firefox stores localstorage in webappsstore.sqlite
file in the profile folder.
C:\Documents and Settings\<Windows login/user name>\Application Data\Mozilla\Firefox\Profiles\<profile folder>\webappsstore.sqlite
C:\Users\<Windows login/user name>\AppData\Roaming\Mozilla\Firefox\Profiles\<profile folder>\webappsstore.sqlite
or:
%APPDATA%\Mozilla\Firefox\Profiles\<profile folder>\webappsstore.sqlite
~/.mozilla/firefox/<profile folder>/webappsstore.sqlite
~/Library/Application Support/Firefox/Profiles/<profile folder>/webappsstore.sqlite
or:
~/Library/Mozilla/Firefox/Profiles/<profile folder>/webappsstore.sqlite
Chrome stores in separate files inside the Local Storage
directory.
%LocalAppData%\Google\Chrome\User Data\Default\Local Storage\
~/.config/google-chrome/Default/Local Storage/
~/Library/Application Support/Google/Chrome/<Profile>/Local Storage/
commonly:
~/Library/Application Support/Google/Chrome/Default/Local Storage/
I am a bit unsure, but think this will do the trick
%userprofile%\AppData\LocalLow\Microsoft\Internet Explorer\DOMStorage
As said by OammieR:
C:\Users\Administrator\AppData\Roaming\Opera\Opera\sessions\autosave.win
or as said by Kevin Hakanson:
C:\Users\Administrator\AppData\Local\Opera\Opera\pstorage\
https://superuser.com/questions/507536/where-does-google-chrome-save-localstorage-from-extensions
My own computer ubuntu 14.10 with Firefox and Chrome
Upvotes: 112
Reputation: 2850
I found this (Opera)
C:\Users\Administrator\AppData\Roaming\Opera\Opera\sessions\autosave.win
and another from
Where does Firefox store javascript/HTML localStorage?
Upvotes: 1
Reputation: 42200
The data for Opera (version 12.14 on Windows 7) was located under
C:\Users\Administrator\AppData\Local\Opera\Opera\pstorage\
A psindex.dat
contained the index to the actual data files. I visited TodoMVC and the quirksmode HTML5 Test - storage to get data saved.
<?xml version="1.0" encoding="utf-8"?>
<preferences>
<section id="BA27342AD231CFCE350305FA85EB6ED1D2C57ABC">
<value id="Type" xml:space="preserve">localstorage</value>
<value id="Origin" xml:space="preserve">http://todomvc.com</value>
<value id="DataFile" xml:space="preserve">pstorage\00\07\00000000</value>
</section>
<section id="DAA00EFF4F10589343DE5A9AD5C47BD8F28FFFD4">
<value id="Type" xml:space="preserve">localstorage</value>
<value id="Origin" xml:space="preserve">http://www.quirksmode.org</value>
<value id="DataFile" xml:space="preserve">pstorage\00\0F\00000000</value>
</section>
</preferences>
The quirksmode test page let you interactively use the localstorage APIs, so I effectively executed the following code:
localStorage.setItem('Name','Value');
For Firefox see Where does firefox store javascript/HTML localStorage? and for Chrome see How is HTML5 WebStorage data physically stored?.
Opera seems to base64 encode the JavaScript unicode strings in the pstorage\00\0F\00000000
file.
<ws>
<e><k>TgBhAG0AZQA=</k>
<v>VgBhAGwAdQBlAA==</v></e>
</ws>
Below are the Base64 values above, also encoded as hex and as a string (where \0
represents String.fromCharCode(0)
).
Base64: TgBhAG0AZQA=
Hex: 4E0061006D006500
String: N\0a\0m\0e
Base64: VgBhAGwAdQBlAA==
Hex: 560061006C0075006500
String: V\0a\0l\0u\0e\0
Upvotes: 1
Reputation: 50732
LcalStorage and Session storage are stored as per the browser specific paths (like we have for Cookies)....Also it is kind of limited to the Sandboxed environment of the application. So, only the domain which sets them can read or access it.
Again also remember that only the user has control over expiry of these storage.
Upvotes: 1