Claus F. Strasburger
Claus F. Strasburger
Same here!
There's a more active fork at https://github.com/librtlsdr/librtlsdr . This repo has last been updated 4 months ago.
Looks like that fix already has made it into `master` (the file I have generated locally from the build instructions already has it applied). The homebrew bottle does not run...
Here's my manually compiled version (`jq-1.6-145-ga9f97e9-dirty`) versus the 1.6 release on amd. ```bash ➜ hyperfine --warmup 2 "./jq-arm length jeopardy.json" Benchmark 1: ./jq-arm length jeopardy.json Time (mean ± σ): 492.8...
Welp, I guess there's some error handling that's not being done. Looks like one of your passwords can't be decrypted and is throwing an error. Since I don't have a...
https://docs.microsoft.com/en-us/windows/win32/api/dpapi/nf-dpapi-cryptunprotectdata might be helpful as well
@Txoka the encryption or database format probably changed. I don't have a windows PC on hand to test, so you'll have to debug the new format yourself. If you're willing,...
Hm... seems like there is some data in there alright. The decoding happens here: https://github.com/cfstras/chromecsv/blob/master/crypt_windows.go Basically, it just calls `CryptUnprotectData()` from Crypt32.dll. It could be that chrome changed the way...
Looking at the current chromium source... https://source.chromium.org/chromium/chromium/src/+/master:components/os_crypt/os_crypt_win.cc;drc=8e721d89fb9dbf5ed62cfa43f44d3d27ee1776de;bpv=1;bpt=1;l=33?originalUrl=https:%2F%2Fcs.chromium.org%2F It seems there is a new format. Your data has the prefix "v10" in which case the function `OSCrypt::DecryptString` does not use the...
`encryption_key` is a static pointer in `GetEncryptionKeyFactory` -- and Init() sets it. This is filled into `local_state` https://source.chromium.org/chromium/chromium/src/+/master:components/os_crypt/os_crypt_win.cc;l=230;drc=977a73777133c13d83cd5d6179497534db0a98b3;bpv=1;bpt=1?originalUrl=https:%2F%2Fcs.chromium.org%2F and then written into a `prefStore` but I can't seem to figure...