How to clear sensitive memory in JavaScript?

后端 未结 3 1027
情话喂你
情话喂你 2021-01-06 02:59

I have a login form for a user to type his/her password. This form is bound to an AngularJS model. Suppose that in the corresponding controller the user-given password is av

3条回答
  •  暖寄归人
    2021-01-06 03:32

    As nothing in the various web browser related scenarios makes commitments about the contents of browser memory, you can never be sure that you are clearing memory.

    Consider the simple JS code:

    x=1234;
    x=5678;
    

    Even in such a simple snippet you have no guarantee that you've actually removed 1234 from memory. All you know is that when you reference x its value will be 5678. You don't know if 5678 overwrote 1234 or was written to a new memory location.

    Similarly, once the user has entered their password in response to a form containing:

    
    

    You have no guarantee that you can ever erase the memory holding their password; even if you run the form again.

    The only way around these limitations is to write a fat client that is run as a desktop app or browser plugin.

    Note that none of the above is meant to state that browsers are sloppy with secrets in their memory. They generally try to prevent memory examination vulnerabilities. It's just that you have no insight into what they do and how you can leverage it. Even if you did, it would be specific to each browser version.

    So, unless you feel that you need to protect the password more than, for example, your bank, get use to the fact that you must put your users' passwords into the (hopefully) trustworthy hands of the browser.

提交回复
热议问题