I am working on an app that encrypts user's data with user's password on the client side without sending/sharing the password to the server.
User needs to encrypt data across pages and I don't want to ask user password each time that he needs to encrypt his data.
One option I have to make my application a single-page application but it's a lot overhead.
Another option is to use sessionStorage which stores data across pages for a session but I am not sure if it's as secure as an in-memory variable in a single-page app.
Javascript store client-side password across pages in memory
384 Views Asked by iman At
0
There are 0 best solutions below
Related Questions in JAVASCRIPT
- Angular Show All When No Filter Is Supplied
- Why does a function show up as not defined
- I count the time the user takes to solve my quiz using Javascript but I want the same time displayed on another page
- Set "More" "Less" font size
- Using pagination on a table in AngularJS
- How to sort these using Javascript or Jquery Most effectively
- how to fill out the table with next values in array with one button
- State with different subviews
- Ajax jQuery firing multiple time display event for the same result
- Getting and passing MVC Model data to AngularJS controller
- Disable variable in eval
- javascript nested loops waiting for user input
- .hover() seems to overwrite .click()
- How to sort a multi-dimensional array by the second array in descending order?
- How do I find the fonts that are not loading in a CORS situation ( MoovWeb )?
Related Questions in ENCRYPTION
- How to customize the output of the Postgres Pseudo Encrypt function?
- encrypted email with entrust certificate is not opening with MS Outlook
- Encrypting with Crypto Node.js and decrypt with window.crypto in Service-Worker
- How to decrypt identity section in web config?
- An exception of type 'System.Security.Cryptography.CryptographicException': keyset does not exist
- IBM DB2 native encryption applied on live database
- crypto.BadPaddingException: data hash wrong (EKYC-Response)
- searchable row level encryption using java?
- AES 256 and Base64 Encrypted string works on iOS 8 but truncated on iOS 7
- Decrypted string returns "Length of the data to decrypt is invalid"
- Storing Encryption Key in Application
- Decryption password Encrypted using Encryptbypassphrase of SQL Server in Java
- Using HTTPS or encrypt response myself
- Encrypting (large) files in PHP with openSSL
- Writing a code to decrypt message from a text file
Related Questions in JAVASCRIPT-SECURITY
- Is Angular Js Code Visible On Browser In Mean Stack Development?
- Javascript store client-side password across pages in memory
- Google OpenID Connect for Authentication without using any Google APIs
- File Upload and knowing the directory structure
- How to access screen resolution information from Facebook Page Tab application (inside iframe)
- Articles about Javascript security
- diff authentication/ authorization mechanism
- Why same origin policy for XMLHttpRequest
- Showing a secure password dialog on a web page
- how do i securely update a remote database from inside a chrome extension?
- How to initialize firestore without exposing the config?
- running a html/script/css in an isolated space like iframe but without iframe
- securing data used in java script file
- Preventing Client Potential Code Injection in Javascript
- Is there a javascript library to obtain authentication token with Windows Azure Active Directory
Related Questions in CLIENT-SIDE-DATA
- Javascript store client-side password across pages in memory
- Simple, standalone (i.e., no external files), offline, client-based solution for selecting file and displaying contents in HTML with Javascript
- Exposing server-side state through client-side controls in ASP.net
- What is the best practice for passing large amounts of client side data to the server?
- In a classic ASP application, is it better to use a session or cookie for cross-page data persistence?
- IDBKeyRange querying by key, where key is String
- Communication between a .Net desktop application and a Silverlight application in browser
- Chrome Extension and a Client-Side Database
- How can I filter a string field in a dataset with a like clause and an umlaut?
- ASP.NET Hidden fields data only available in a postback? why?
- How to control or edit text that is copied from a web page (for good, not evil reasons)
- Store raw data in cookies - good idea or a bad idea?
- How to track users without authentication on nodeJS
- Best way for cross platform client storage?
- how to get data filled in pdf application dispalyed in angular 5 client side?
Related Questions in CLIENT-SIDE-ATTACKS
- Javascript store client-side password across pages in memory
- Avoid remote website inclusion
- Client side securing token vulnerability circular dilemma
- How to prevent hackers from modifying the product price in e-commerce
- How to abuse XSS with specific criteria or filters?
- Making a Chrome plug-in of Suricata/Snort for intrusion detection on client side
- How to prevent "billion laughs" DoS attack in Python's xlrd?
- How to trigger xss with html encoded xss attack vector inside script tags?
- What are the things that need to be considered while deleting a resource through api
- XSS PoC: Hide Rendered Characters in DOM
- Does somebody knows about this: repo1.criticalnumeric.tech
- Ways to secure API that do not require authentication, to be called only from one pre-defined consumer
- Why a well anti flood protection for my website redirects in strange cases?
- Cross site attack warning each time I open Firefox
- How to protect AJAX or javascript web application
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?