slurdge

Results 48 comments of slurdge

@mvdan I'm currently trying to write an exporter from bw to kdbx and your repository has come useful. Now, for this issue, I believe I've read somewhere that old keys...

Found it: https://github.com/bitwarden/jslib/blob/f30d6f8027055507abfdefd1eeb5d9aab25cc601/src/services/crypto.service.ts#L133 ```golang let decEncKey: ArrayBuffer; const encKeyCipher = new CipherString(encKey); if (encKeyCipher.encryptionType === EncryptionType.AesCbc256_B64) { decEncKey = await this.decryptToBytes(encKeyCipher, key); } else if (encKeyCipher.encryptionType === EncryptionType.AesCbc256_HmacSha256_B64) { const...

I think that's difficult because probably the old keys are like this. So if someone wanted to have a dummy secret/password, they would change their current password and make it...

Hello, I believe this issue is still present. I hit it with https://github.com/slurdge/goeland/issues/3 and while I can provide a flag to have explicit SSL, I believe it wouldn't work with...

This is related to doegox/proxmark-internal#243. I'm quite sure if we touch it something will break.

Yeah, my guesstimate was the stack before was around 12K because we increased bigbuf from 40->48K. However the commands still should work because we didn't reorder much. I started looking...

That's awesome! I'm not too worried about the lf_*.c stuff, from a quick glance, this is more of the same, so replacing one should mean replacing all pretty easily. The...

proxmark3+jupyter=💖💖💖

For Python & LUA, shouldn't the API give an "object" that is a proxmark instance? Like this: ```python import pm3 with pm3.open("/dev/ttyACM0") as p: p.console("hw status") ``` I guess this...

I hit this exact problem quite often. Right now my solution is: - Use pm3 for all read/hack operations; - Some script to convert it to the right format; -...