Reece Daniels
Reece Daniels
This is a very old issue, but I see that the `final.copy(decoded, decoded.length - 1)` is still the same in the code base. Here: https://github.com/bertrandom/chrome-cookies-secure/blob/8eeca6d405527327f30d95801ec048d38deaee1e/index.js#L42 It's a long-shot, but do...
chromium tested as working on Linux on the most recent release. Are people using `chrome` here or is the test missing something (only validating types not values?). Could someone pull...
Yeah it would be good to have a way to declare and install "platform dependencies", but I don't think it's possible to declare these in `package.json` even now hence https://github.com/npm/rfcs/discussions/120....
Looks like a separate dependency issue? Presumably electron has a different edge case to the machine operating system? I've got no experience with electron so can't comment much on that....
> `keytar` and `win-dpapi` are required on Windows > > https://github.com/bertrandom/chrome-cookies-secure/blob/8eeca6d405527327f30d95801ec048d38deaee1e/package.json#L38-L41 > > Install via `npm install keytar win-dpapi` `keytar` is actually only required on MacOS https://github.com/bertrandom/chrome-cookies-secure/blob/8eeca6d405527327f30d95801ec048d38deaee1e/index.js#L59
https://github.com/bertrandom/chrome-cookies-secure/pull/60 Could be a solution. Welcome thoughts on it.
Add README guidance in https://github.com/bertrandom/chrome-cookies-secure/pull/61/files
At the moment the use case of retrieving the cookies is pretty focused. I have an unquantifiable feeling that helps keep a more 'least-privilege' style implementation i.e. you need to...
Are you SSH'ing to another macOS server? What command are you using to trigger the script? I've not run it like this before.
You mean in the `getDerivedKey` function there's a case that wasn't handled by the if / else blocks? It already runs `pbkdf2` as you describe it in the `darwin` &...