forked from raspiblitz/raspiblitz
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* raspiblitz#2221 change hdmi mode (raspiblitz#2224) * unlock LND after Bitcoin Core install if ready (raspiblitz#2214) * unlock LND after Bitcoin Core install if ready * bitcoin.update: improve output and comments * show nginx systemd logs (raspiblitz#2220) This is important, normally nginx fails and this is not shown. * Update stacking-sats-kraken version (raspiblitz#2216) * small ux thing - bigger dialog box * raspiblitz#2070 checking version & resetting password c (raspiblitz#2226) * Table of options on how to have blitz (raspiblitz#2219) * Create SECURITY.md (raspiblitz#2212) * raspiblitz#2151 Update Documentation for v1.7 (raspiblitz#2227) * upload of raspiblitz-v1.7.0-2021-04-24.img.gz * update version 1.7.0 * upload image raspiblitz-v1.7.0-2021-04-25.img.gz * correct signature link for v1.7.0 * SECURITY.md typos (raspiblitz#2229) please correct this before v1.7 @rootzoll * raspiblitz#2151 adding torrent download for v1.7.0 * fix torrent link label * update README for v1.7.0 * fix typo Co-authored-by: /rootzoll <christian@geektank.de> Co-authored-by: openoms <43343391+openoms@users.noreply.github.com> Co-authored-by: d11n <mail@dennisreimann.de>
- Loading branch information
1 parent
40e554c
commit 1f11960
Showing
24 changed files
with
365 additions
and
249 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
# Security Policy | ||
|
||
*NOTE: This document is just a first draft and still under contruction.* | ||
|
||
Only use this software with funds you could afford to lose. Especially a lightning wallet that is a hot wallet, which has constant connection to the internet and can be target of exploitation. | ||
|
||
Just because the software is OpenSource does not mean its free of errors. Especially if you run additional apps, the RaspiBlitz team cannot review all the code of those external projects. | ||
|
||
The software is provided "AS IS", without warrenty of any kind. In no event shall the | ||
authors or copyright holders be liable for any claim, damages or other | ||
liability. [details on legal license](LICENSE.md) | ||
|
||
## Supported Versions | ||
|
||
Updates are made only for the latest version. | ||
|
||
Security patches can be done with `MAINMENU > UPDATE > PATCH` for the current branch in the case of a high risk issue before next release. | ||
|
||
The latest version always have the `latest` tag. To make sure you are using the lastest version, run: | ||
``` | ||
curl -s https://api.github.com/repos/rootzoll/raspiblitz/releases/latest|grep tag_name|head -1|cut -d '"' -f4 | ||
``` | ||
|
||
## Reporting a Vulnerability | ||
|
||
To report security issues send an email to christian@rotzoll.de (not for support). | ||
|
||
The following keys may be used to communicate sensitive information to developers: | ||
|
||
| Name | Fingerprint | 64-bit | | ||
|------|-------------|--------| | ||
|Rootzoll|92A7 46AE 33A3 C186 D014 BF5C 1C73 060C 7C17 6461|1C73 060C 7C17 6461| | ||
|Openoms|13C6 88DB 5B9C 745D E4D2 E454 5BFB 7760 9B08 1B65|5BFB 7760 9B08 1B65| | ||
|
||
You can import a key by running the following command with that individual’s fingerprint: | ||
``` | ||
curl https://keybase.io/rootzoll/pgp_keys.asc | gpg --import | ||
curl https://keybase.io/oms/pgp_keys.asc | gpg --import | ||
``` | ||
Ensure that you put quotes around fingerprints containing spaces if importing with other methods. | ||
|
||
# Online Security | ||
|
||
* Wi-fi and Bluetooth is disabled by default in the build script. | ||
* UFW is active and only specific ports are open, closing ports and removing hidden services when services are uninstalled. | ||
* Fail-2-Ban is protecting the SSH login against brute-force-attacks. | ||
* Admin (and Joinmarket [optional]) users have passwordless sudo access to be able to perform installations and read password without much user interaction. | ||
|
||
# Physical Security | ||
|
||
* The lightning wallet and user interfaces are password protected by default so this has more privacy implications (in the case of physical theft) than security. | ||
* Optional log in through SSH using a hardware wallet. | ||
* LUKS encryption would be welcome in the future. | ||
|
||
# On-chain Funds | ||
|
||
Please keep in mind that there can be two different on-chain wallets on the RaspiBlitz: | ||
|
||
## Lightning Wallet (default) | ||
|
||
The default is the on-chain lightning wallet - that's the wallet where you normally send your funds before opening a channel & where your funds return to when you close a channel. With the initial word seed you get during RaspiBlitz setup, you can get access again to this on-chain wallet. Keep the seed words secure in a off-line location. | ||
|
||
## Bitcoin Core Wallet (deactivated by default) | ||
|
||
Beside lightning you have a bitcoin core installed. Normally, bitcoin core acts just as a blockchain informational service to the lightning wallet and its internal seperate on-chain wallet is deactivated. | ||
|
||
Some apps (like Fully Noded or JoinMarket) activate the bitcoin core wallet and use it for their own needs. This on-chain balance will not be reflected in the rest of the RaspiBlitz software and is NOT backuped by the seed words from the RaspiBlitz setup. If you make use of the bitcoin core wallet please take care of these funds. | ||
|
||
# Off-chain Funds (Lightning Channels) | ||
|
||
Please note that there is no perfect backup concept for the funds in your lightning channels yet. We strongly recommend using the `Static Channel Backup` provided by LND and consider off-line location backup of that file to have the best chances to recover Lightning funds in a case of recoverying from a disaster. | ||
|
||
For more practical information on this topic see: [Backup Channel Funds](README.md#backup-for-on-chain---channel-funds) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
# RaspiBlitz Version - always [major].[main].[sub] (sub can be a string like '2rc1') | ||
codeVersion="1.7.0RC3" | ||
codeVersion="1.7.0" |
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.