As you know, IndexedDB and Cookie are both used for persistent storage on web browser.
Cookie-related security task has some aspects, which are Session Fixation or Session Hijacking. Attackers often use the below methods to achieve these.
I've been doing some research about IndexedDB security. However, there are not so many documents about this stuff.
My questions are:
- When I use IndexedDB instead of cookie, will I face the same security tasks? Why?
- How can I make IndexedDB more secure?