RecapJS: Browser session record/replay without leaking user data
1–10 of 14 posts
Re: RecapJS: Browser session record/replay without leaking user data
#2Re: RecapJS: Browser session record/replay without leaking user data
#3Re: RecapJS: Browser session record/replay without leaking user data
#4Re: RecapJS: Browser session record/replay without leaking user data
#5Since you seem to be using webcrypto, here is the obligatory mention of "browser crypto considered harmful": https://www.nccgroup.trust/us/about-us/newsroom-and-events/b...
The typical critique (including the one you linked to) referring to the presence of scripts from multiple untrusted soutces doesn’t quite apply in this case because the encryption used isn’t really meant to protect against such scripts. Any script active on the page already has access to all the information RecapJS is gathering (and eventually encrypting) so there is no need for RecapJS to worry about them.
The only time RecapJs handles sensitive data that needs to br protected from third party access is during replay/playback. In this case the threat is mitigated by either hosting the player (which is a static web application) in a closed off network in the case of offline replay or by loading an audited piece of js in case of remote full session storage.
Re: RecapJS: Browser session record/replay without leaking user data
#6Is the blurring not reversible though? Even if lossy?
Re: RecapJS: Browser session record/replay without leaking user data
#7Neat! Are you storing the data in localstorage?
Re: RecapJS: Browser session record/replay without leaking user data
#8Re: RecapJS: Browser session record/replay without leaking user data
#9Since you seem to be using webcrypto, here is the obligatory mention of "browser crypto considered harmful": https://www.nccgroup.trust/us/about-us/newsroom-and-events/b...
Thanks for pointing it out. We are indeed using wevcrypto to encrypt the data generated during the recording. This usecase, however, we’d argue is quite well suite for webcrypto. The typical critique (including the one you linked to) referring to the presence of scripts from multiple untrusted soutces doesn’t quite apply in this case because the encryption used isn’t really meant to protect against such scripts. Any…
Re: RecapJS: Browser session record/replay without leaking user data
#10Earlier quoted context omitted.
In the case of offline recording the data is stored in indexedDB. Localstorage limits are typically too small to store a reasonably sized session recording.
How much data is stored on the user's disk per session?
Typically this will be a few MBs for the default 10 minutes of history.