Is there a security issue for a web system that uses sessionStorage
to store temporary data for a user? In practice, is using sessionStorage
good practice?
In my application, instead of always performing a request to the database to acquire information, I load several pertinent data once and save them in sessionStorage
to be able to manipulate in several areas of the application. Does this practice imply possible application security issues in general?