Wallet passphrases silently ignore everything after a null character #27067

issue john-moffett openend this issue on February 9, 2023
  1. john-moffett commented at 6:44 pm on February 9, 2023: contributor

    Problem

    Encrypting a wallet through JSON RPC or Qt appears to allow a user to include null characters in the passphrase, but silently ignores everything including and after the first null character.

    For instance (on regtest), trying to set a passphrase of “a{null character}b”:

    curl --user __cookie__ --data-binary '{"jsonrpc": "1.0", "id":"curltest", "method": "encryptwallet", "params": ["a\u0000b"]}' -H 'content-type: text/plain;' http://127.0.0.1:18443/

    This will succeed, but allow the user to unlock with the passphrase “a”, instead of the expected full passphrase (which also works):

    curl --user __cookie__ --data-binary '{"jsonrpc": "1.0", "id":"curltest", "method": "walletpassphrase", "params": ["a",10]}' -H 'content-type: text/plain;' http://127.0.0.1:18443/

    I am also able to replicate it in Qt on my macOS machine by running printf 'a\0b' | pbcopy and pasting the result into the passphrase dialog.

    My main concern is a user thinking that they’re generating, say, 32 random bytes as a passphrase, and if they’re unlucky and get a zero in the first few bytes, it unexpectedly cuts their security down to almost nothing.

    Root Cause

    The reason is due to our SecureString type. SecureString is a std::string specialization with a secure allocator. However, when assigned, it’s treated like a C- string (no explicit length and null-terminated). See the original PR for more details.

    Potential Solutions

    I think there are two plausible approaches to take. The first (and my preference) is to allow and support null characters, and I will submit a PR that enables that (by making SecureString use the entire string). The second is to explicitly reject any passphrases that contain null characters.

    One significant complication may be that, if anyone is already using a passphrase with a null, then my first solution would stop their wallet from unlocking. However, it would still be unlockable just by trimming the null and any subsequent characters.

  2. john-moffett added the label Bug on Feb 9, 2023
  3. maflcko added the label Wallet on Feb 10, 2023
  4. bitcoin deleted a comment on Feb 13, 2023
  5. RazvanML commented at 1:27 pm on February 17, 2023: none
    How about starting with a warning that the string contains a zero and only NN characters will be used? IMHO the backward compatibility issue is the major concern.
  6. achow101 closed this on Feb 22, 2023

  7. sidhujag referenced this in commit df24a357d3 on Feb 25, 2023
  8. bitcoin locked this on Feb 22, 2024

github-metadata-mirror

This is a metadata mirror of the GitHub repository bitcoin/bitcoin. This site is not affiliated with GitHub. Content is generated from a GitHub metadata backup.
generated: 2024-06-29 07:13 UTC

This site is hosted by @0xB10C
More mirrored repositories can be found on mirror.b10c.me