-
Notifications
You must be signed in to change notification settings - Fork 10
feat: add security best practices for use cases RFC #44
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
Merged
pedroferreira1
merged 4 commits into
master
from
feat/use-case-integration-best-practices
Nov 9, 2022
Merged
Changes from 2 commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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,175 @@ | ||
| - Feature Name: use_case_integration_best_practices | ||
| - Status: Draft | ||
| - Start Date: 2022-09-20 | ||
| - RFC PR: (leave this empty) | ||
| - Hathor Issue: (leave this empty) | ||
| - Author: Pedro Ferreira <pedro@hathor.network> | ||
|
|
||
| # Summary | ||
| [summary]: #summary | ||
|
|
||
| This document presents security best practices for use cases that integrate with the Hathor Network, in order to improve the reliability of their operation. | ||
|
|
||
| # Guide-level explanation | ||
| [guide-level-explanation]: #guide-level-explanation | ||
|
|
||
| There are multiple ways that a use case can integrate with Hathor, here is a common architecture compliant to our recommendations | ||
|
|
||
| - The use case has a software that runs operations offchain and is used by its customer. | ||
| - This software connects to a headless wallet which communicates with a full node. The full node is connected to the Hathor's p2p network. | ||
| - The headless wallet will handle all events from the full node to keep its balance and transaction history updated. The headless software have APIs to manage a wallet, e.g. get addresses, create and push transactions to the network, create new tokens, and some other features described in the project [repository](https://github.com/HathorNetwork/hathor-wallet-headless). | ||
|
|
||
| <pre> | ||
| ┌─────────────┐ ┌──────────┐ ┌─────────────┐ ┌─────────────┐ | ||
| │ │ │ │◀────────────────────┤ │ │ │ | ||
| │ Hathor │ │ Headless │ │ Use Case │ │ Customer │ | ||
| │ Full Node 1 │◀────▶│ Wallet │ │ Software │◀──────▶│ │ | ||
| │ │ │ ├────────────────────▶│ │ │ │ | ||
| └────┬────────┘ └──────────┘ └─────────────┘ └─────────────┘ | ||
| │ | ||
| ┌────────────┐ │ | ||
| │ │◀─────────────┘ | ||
| │ Rest of │ | ||
| │ Network │ | ||
| │ │◀─────────────┐ | ||
| └────────────┘ │ | ||
| ┌────┴────────┐ | ||
| │ │ | ||
| │ Hathor │ | ||
| │ Full Node 2 │ | ||
| │ │ | ||
| └─────────────┘ | ||
|
|
||
| </pre> | ||
|
|
||
| ## Run more than one node | ||
|
|
||
| We strongly recommend use cases to run two or more full nodes as a protection to direct attacks to their full nodes. | ||
|
|
||
| Use case's full nodes **should not** be connected among them. This is important to mitigate some attack vectors. Remember that the transactions will be propagate by the p2p network and all use case's full nodes will receive the transactions eventually during normal network activity. | ||
pedroferreira1 marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
| ### Validate new transactions on more than one full node before accepting them | ||
|
|
||
| Let's assume an exchange wants to run nodes to identify deposits in the Hathor network, so a recommended approach for the integration would be to run at least two full nodes (node1 and node2), which are not connected between them (node1 must have node2 in the blacklist and vice versa). In that architecture, if any deposit is identified in node1, then the exchange must check that it's also a valid transaction in node2 and in one of the public nodes. With this approach, if one of the nodes is compromised and with a different consensus/state, an alert must be raised, so we must investigate what happened. | ||
msbrogli marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
| ### Validate all your full nodes have the same best block | ||
|
|
||
| Use cases should regularly check whether the best block is the same on all their full nodes. If full node have different best blocks, the validation must be done again some seconds later because this might happen depending on the network block propagation time. If the differente continue, the nodes might be under attack and the use case should consider blocking deposits. | ||
|
|
||
|
|
||
| ## Peer-id | ||
|
|
||
| The peer-id is a unique identifier of your full node in Hathor's p2p network. You must keep your peer-id secret to prevent attackers from directly targeting your full nodes. Do not tell anyone your peer-ids, and do not publish them on public channels, only in private groups with the Hathor team. If you think your peer-id has been exposed, you should generate a new peer-id and replace the exposed ones. | ||
pedroferreira1 marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
| ## Be alert for weird behavior | ||
msbrogli marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
| ### How to validate a new transaction | ||
|
|
||
| The transactions in the Hathor network have many fields that must be checked to guarantee that a transaction is valid for your use case. For more details about the fields of a transaction, check the [Transaction Anatomy RFC](https://github.com/HathorNetwork/rfcs/blob/master/text/0015-anatomy-of-tx.md). | ||
msbrogli marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
| - [Version](#version) | ||
| - [Voided state](#voided-state) | ||
| - Output | ||
| - [Token](#token) | ||
| - [Value](#value) | ||
| - [Address](#address) | ||
| - [Timelock](#timelock) | ||
|
|
||
| #### Version | ||
|
|
||
| Transactions have `version=1`, blocks have versions `0` or `3`, and token creation transactions have `version=2`. | ||
msbrogli marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
| #### Voided state | ||
|
|
||
| A voided transaction is **not** a valid transaction. You must only accept transactions that have `is_voided=false`. | ||
|
|
||
| #### Outputs | ||
|
|
||
| The outputs contain the fields used to identify that the funds belong to your wallet. | ||
|
|
||
| ##### Token | ||
|
|
||
| The output has the token information, so you can check if it has the expected tokens. For example, exchanges expect the deposits to be of HTR, so `token = '00'` and `token_data=0`. | ||
|
|
||
| ##### Value | ||
|
|
||
| The value of the output is an integer, so `1000` means `10.00`. | ||
|
|
||
| ##### Address | ||
|
|
||
| The output address must be one of your wallet's addresses. | ||
|
|
||
| ##### Timelock | ||
|
|
||
| The output must have a timelock, and if it's bigger than the current timestamp, you won't be able to spend this output until this moment is reached. Because of that, it's essential to validate that `timelock=null` before validating this transaction. | ||
|
|
||
| #### Number of confirmations | ||
|
|
||
| Some use cases might handle transactions with huge amounts, so it's essential to wait for some blocks to confirm the transaction before accepting it as a valid one. The more blocks confirm a transaction, the more guarantee there is that this transaction won't become invalid in the future. As a reference, Bitcoin's use cases usually require a six confirmations before accepting a new deposit. | ||
pedroferreira1 marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
pedroferreira1 marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
| ### Check if an unusual amount of deposits or withdrawals are being made | ||
|
|
||
| Many use cases have withdrawals/deposits in their set of features through blockchain transactions. It's important to check for unusual levels of deposits and withdrawals because this could be caused by an attack. | ||
|
|
||
| For that situation, it's crucial to have an easy way to block specific accounts that have unusual behavior and might be part of an attack. You might also consider to limit the number of operations a user can do in a time window. | ||
|
|
||
| This validation and user block must be done in the use-case software application. | ||
pedroferreira1 marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
| ### Check if one of your full nodes gets out-of-sync | ||
|
|
||
| One other relevant aspect of full node is to always check for weird behavior is the sync among them. We recommend use cases to regularly validate that all their full nodes are in sync among them and in sync with at least one public node as well. | ||
msbrogli marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
| This validation is important to guarantee the node is not isolated from the rest of the network with a fork of the blockchain. | ||
|
|
||
| Besides that, it's also important to validate that the timestamp of the best block of the node is recent, which means that the node's blockchain is not halted in the past. | ||
|
|
||
| # Reference-level explanation | ||
| [reference-level-explanation]: #reference-level-explanation | ||
|
|
||
| ## Run a full node with a blacklist of peer-ids | ||
|
|
||
| Following the recommended architecture, you will need to run more than one full node and they shouldn't be connected among them. To achieve that, each of your nodes must have a blacklist of peer-ids, containing the ids of the other nodes. | ||
|
|
||
| For example, you run node1 (peerid1), node2 (peerid2), and node3 (peerid3). The node1 should have peerid2 and peerid3 in the blacklist, node2 should have peerid1 and peerid3 in the blacklist, and node3 should have peerid1 and peerid2 in the blacklist. | ||
|
|
||
| To create this blacklist in the full node there are some possible approaches: | ||
|
|
||
| ### CLI command | ||
|
|
||
| If you use the full node parameters directly in the command line, then you should add: | ||
|
|
||
| ``` | ||
| --peer-id-blacklist peerid1 peerid2 | ||
| ``` | ||
|
|
||
| ### Environment variables | ||
|
|
||
| If you use the full node parameters using env vars, then you should add: | ||
|
|
||
| ``` | ||
| export HATHOR_PEER_ID_BLACKLIST=[peerid1, peerid2] | ||
| ``` | ||
|
|
||
| ### API | ||
|
|
||
| There is also an API to add a peer-id to the blacklist while the node is running, however this is not recommended because if you restart your node you will lose this blacklist. | ||
|
|
||
| ``` | ||
| POST to /v1a/p2p/netfilter | ||
|
|
||
| { | ||
| "chain": { | ||
| "name": "post_peerid", | ||
| }, | ||
| "target": { | ||
| "type": "NetfilterReject", | ||
| "target_params": {} | ||
| }, | ||
| "match": { | ||
| "type": "NetfilterMatchPeerId", | ||
| "match_params": { | ||
| "peer_id": "peerid1" | ||
| } | ||
| } | ||
| } | ||
| ``` | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.