Skip to content
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

install-core issues #73

Open
git-sgmoore opened this issue Jul 30, 2023 · 6 comments · May be fixed by #162
Open

install-core issues #73

git-sgmoore opened this issue Jul 30, 2023 · 6 comments · May be fixed by #162
Assignees
Labels
enhancement New feature or request help wanted Extra attention is needed invalid This doesn't seem right priority: high issues raised or encountered by 2 or more testers question Further information is requested
Milestone

Comments

@git-sgmoore
Copy link

  1. Hardcoded URLs and file paths: The script uses hardcoded URLs for downloading Bitcoin Core and its checksums. If the URLs change or the files are moved, the script will break. Similarly, the script assumes a certain directory structure. If this structure changes, the script could behave unpredictably.

  2. No verification of the GPG keys: Although the script checks the GPG signatures of the downloaded files, it doesn't check the authenticity of the GPG keys used to sign the files. An attacker who can intercept the download could replace the files and the GPG keys with their own, and the script wouldn't be able to tell the difference.

  3. No error handling: The script doesn't handle errors in many places. If a command fails, the script may continue running with potentially inconsistent or incorrect data.

  4. Use of HTTP instead of HTTPS: The script tries to download files over HTTP before falling back to HTTPS. Downloading files over HTTP is insecure because the data is not encrypted in transit.

  5. Unsecured temporary files: The script creates temporary files without using any measures to secure them. This could potentially expose sensitive data.

  6. Kill command: At the end of the script, it uses a pkill command to kill the terminal, which can be seen as a risky command.

@BenWestgate
Copy link
Owner

Hello git-sgmoore, your code review is greatly appreciated.

  1. I will use variables to store the URLs for downloading Bitcoin Core and its checksums. This way, if the URLs change in the future, we can easily modify the script without breaking it.
  2. I actually do check the authenticity of the GPG keys from two sources: openpgp.org onion service and guix.sigs/builder-keys repository on bitcoin's github, if it cannot find the signer's public key in both these locations it will NOT import that gpg key nor count it as a valid signature towards the threshold 2 good_sigs. Were the signature file faked, they'd also need to fake guix.sigs/builder-keys and upload fraudulent keys to the key server. The last line of defense in that case is the user manually verifying the fingerprint displayed matches the name of the person they are choosing to trust. Let me know if there's anything more I should do or if you want me to explain the check_sigs() function, it probably needs better documentation if it indeed does what I said and that was not clear.
  3. I can experiment with using set -e to make the script exit immediately if any command exits with a non-zero status. I've run it hundreds of times and it's generally pretty stable, can you give me some commands in particular that are likely to fail, it handles the downloads and checkums failing.
  4. http://6hasakffvppilxgehrswmffqurlcjjjhd76jgvaqmsg6ul25s7t3rzyd.onion/en/download/ this is an .onion hidden service url for bitcoincore.org. It's also commented out and not used because the onion service has been down this month. I'm unsure if https was ever available with this service but I'll make sure to use it if they ever fix it.
  5. There is no unencrypted sensitive data stored in temporary files, they're created with mktemp and delete themselves after the script exits
  6. You'd prefer the terminal stay open? I agree it could be risky if someone was working in another terminal simultaneously and lost their work. The only purpose of that command was to clean up the user's desktop after installation. Let me know if you see any other risks besides what I've mentioned. My target user does not even know how to use the terminal so I find this unlikely, but expert users are finding all kinds of edge cases.

@BenWestgate BenWestgate added enhancement New feature or request help wanted Extra attention is needed invalid This doesn't seem right question Further information is requested priority: medium Issues raised by 1 tester labels Jul 30, 2023
@bitcoin-tools
Copy link

bitcoin-tools commented Mar 24, 2024

For Question 1, I agree the wget commands shouldn't have the URLs directly in the command. The URLs should be variables at the top of the script.

@git-sgmoore does that address your concern here? If not, how do you suggest Bails would handle a change in the bitcoincore [dot] org directory structure?

BenWestgate added a commit that referenced this issue Mar 24, 2024
@BenWestgate BenWestgate self-assigned this Mar 25, 2024
@BenWestgate BenWestgate added this to the L1 (BETA) milestone Mar 25, 2024
@BenWestgate BenWestgate added priority: high issues raised or encountered by 2 or more testers and removed priority: medium Issues raised by 1 tester labels Mar 26, 2024
@BenWestgate
Copy link
Owner

BenWestgate commented Mar 26, 2024

@epiccurious you've seemed to have satisfied 1 and 3.
I'm fixing 2 with #17.
4 appears to be invalid and irrelevant since the onion service is still down.

Is 5 invalid? In my bash scripts install-core and setup-persistence what temporary files are leaving sensitive data exposed to other processes on the machine? If none, we can ignore and just remove them after use or process killed.

This solves 6 by only closing the calling terminal

PARENT_PID=$(ps -o ppid= -p $$)
echo "Parent PID: $PARENT_PID"
sleep 2
kill -9 $PARENT_PID

End of install-core will say "Closing terminal window in 10 seconds, press any key to abort", count down then issue the kill command.

We should have this important issue closed early this week!

@BenWestgate
Copy link
Owner

Part 6 resolved by 69d5039.

epiccurious pushed a commit to epiccurious/Bails that referenced this issue May 9, 2024
@BenWestgate
Copy link
Owner

BenWestgate commented May 15, 2024

Part 5

$XDG_RUNTIME_DIR defines the base directory relative to which user-specific non-essential runtime files and other file objects (such as sockets, named pipes, ...) should be stored. The directory MUST be owned by the user, and he MUST be the only one having read and write access to it. Its Unix access mode MUST be 0700.

This is where we should be making our temporary files. That way other processes on the machine cannot read our files.

Done in f006701

@BenWestgate
Copy link
Owner

  1. Hardcoded URLs and file paths: The script uses hardcoded URLs for downloading Bitcoin Core and its checksums. If the URLs change or the files are moved, the script will break. Similarly, the script assumes a certain directory structure. If this structure changes, the script could behave unpredictably.

@epiccurious: has a branch that resolved this. PR it again at your leisure.

  1. No verification of the GPG keys: Although the script checks the GPG signatures of the downloaded files, it doesn't check the authenticity of the GPG keys used to sign the files. An attacker who can intercept the download could replace the files and the GPG keys with their own, and the script wouldn't be able to tell the difference.

I have assigned myself to this. He is right that I trust the download source to get the GPG keys and my only verification is the user and key server searching the fingerprints are correct. The key server could be faked and 99% of users will not verify fingerprints from another source.

Instead we should download the keys from github.com/bitcoin/bitcoin since we're already trusting GitHub in the install instructions, and use those keys plus some I hardcore into this project repo. Verify by default with a few of these. Then change the option to "Additional Verification" where the user can trust and untrust the current signatures in the file until they reach the threshold of 2.

  1. No error handling: The script doesn't handle errors in many places. If a command fails, the script may continue running with potentially inconsistent or incorrect data.

@epiccurious handled this as well in his branch, at least where it mattered.

  1. Use of HTTP instead of HTTPS: The script tries to download files over HTTP before falling back to HTTPS. Downloading files over HTTP is insecure because the data is not encrypted in transit.

This is currently irrelevant, bitcoincore dot org doesn't seem to have intentions of fixing their onion service any time soon. So we start with https clearnet.

  1. Unsecured temporary files: The script creates temporary files without using any measures to secure them. This could potentially expose sensitive data.

The $TMP_DIR was changed to $XDG_RUNTIME_DIR which is restricted only to the current user, preventing other users from reading the data. Although nothing sensitive was stored in install-core.

  1. Kill command: At the end of the script, it uses a pkill command to kill the terminal, which can be seen as a risky command.

This was changed to query the actual PID of the executing terminal and kill only that terminal and only after a 30 second delay. We no longer kill every terminal.

@epiccurious: we can close this issue now when you PR your 1 & 3. Good to see our first security review addressed completely.

@BenWestgate BenWestgate linked a pull request May 24, 2024 that will close this issue
@BenWestgate BenWestgate linked a pull request May 24, 2024 that will close this issue
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request help wanted Extra attention is needed invalid This doesn't seem right priority: high issues raised or encountered by 2 or more testers question Further information is requested
Projects
None yet
Development

Successfully merging a pull request may close this issue.

5 participants
@git-sgmoore @BenWestgate @epiccurious @bitcoin-tools and others