-
Notifications
You must be signed in to change notification settings - Fork 912
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
plugins/bcli: load RPC password from stdin instead of an argument #5509
plugins/bcli: load RPC password from stdin instead of an argument #5509
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Minor changes only...
078fdba
to
da47e8e
Compare
Everything should be fixed now, thanks for your review! |
Hmm can you add a Thanks! |
da47e8e
to
af4335c
Compare
Sure, I've added the changelog info to commit message and I've fixed the order of includes. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ACK af4335c
We can add the magic keyword Fixes #3984 to avoid to leave the issue open? |
I've added the |
Changelog-Fixed: bcli: don't expose bitcoin RPC password on commandline
af4335c
to
be29c1f
Compare
Trivial rebase, should kick CI. Ack be29c1f |
Passing a RPC password via cli argument (
-rpcpassword
) can leak auth secrets to other users on a system (at least on Linux). This PR tries to pass the RPC password through a stdin using a-stdinrpcpass
Refs.:
Fixes #3984