Bitcoin Forum
June 22, 2024, 07:34:41 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1]
  Print  
Author Topic: Is this a valid attack?  (Read 822 times)
Jan (OP)
Legendary
*
Offline Offline

Activity: 1043
Merit: 1002



View Profile
October 02, 2012, 01:47:33 PM
 #1

In the beginning the difficulty was very low, and generating blocks that have the genesis block as their parent can be done today in no time.
If I publish such blocks will they be accepted by the network? Or, is this prevented by checkpoints?
If they are not rejected I can spam the network with blocks at height 1 and force every node to store them in their database.

Mycelium let's you hold your private keys private.
DeathAndTaxes
Donator
Legendary
*
Offline Offline

Activity: 1218
Merit: 1079


Gerald Davis


View Profile
October 02, 2012, 01:56:19 PM
Last edit: October 09, 2012, 01:40:24 AM by DeathAndTaxes
 #2

Most clients do employ a checkpoint (which is updated from release to release).  It is important to understand there is no centralized registry of checkpoints it is up to each developer to implement checkpoints (if any).  

I believe the Satoshi client latest checkpoint is at roughly block 180,000.  Individual nodes will reject any block submission prior to block 180,000 if it already has a valid chain.  Also when bootstapping (no blockchain) individual nodes will reject any chain who's block hashes don't match the checkpointed hashes.  
On edit:
Would have been smarted to just read the code.

https://github.com/bitcoin/bitcoin/blob/master/src/checkpoints.cpp

Code:
    static MapCheckpoints mapCheckpoints =
        boost::assign::map_list_of
        ( 11111, uint256("0x0000000069e244f73d78e8fd29ba2fd2ed618bd6fa2ee92559f542fdb26e7c1d"))
        ( 33333, uint256("0x000000002dd5588a74784eaa7ab0507a18ad16a236e7b1ce69f00d7ddfb5d0a6"))
        ( 74000, uint256("0x0000000000573993a3c9e41ce34471c079dcf5f52a0e824a81e7f953b8661a20"))
        (105000, uint256("0x00000000000291ce28027faea320c8d2b054b2e0fe44a773f3eefb151d6bdc97"))
        (134444, uint256("0x00000000000005b12ffd4cd315cd34ffd4a594f430ac814c91184a0d42d2b0fe"))
        (168000, uint256("0x000000000000099e61ea72015e79632f216fe6cb33d7899acb35b75c8303b763"))
        (193000, uint256("0x000000000000059f452a5f7340de6682a977387c17010ff6e6c3bd83ca8b1317"))
        ;

So currently the first checkpoint is at block 11,111 and the last one is at 193,000.  One potential area of "attack" (and it would be a relatively weak one) is that the checkpoints are sparse.  There is ~30K blocks between checkpoints.  So a "bad node" could flood a node who is bootstrapping (building the historical blockchain).  Now once the node hits a checkpoint (i.e. block # 11,111) the bad node will not be able to complete that chain.  However the bad node could switch and provide correct blocks (possibly via another node) through block #11,111 and then provide another 22,222 bad blocks.

Since blocks can be built to have a large amount of transactions a "bad node" could greatly increasing the processing requirements of good nodes.   This could be mitigated by providing a complete "checkpoint list" of every blockhash up through the last checkpoint. (i.e. the code above would have entries for blocks 1 through 193,000).  On edit: I like Gavin's idea better.  For lots of reasons it would be useful if the protocol allows pulling just block headers.  It solves not only this weak attack (which shouldn't be a priority to fix) but also makes the protocol more robust.



In general nodes are relatively "naive" in dealing with misbehaving nodes. Likely as time goes on the method of picking peers will need to be enhanced.   Essentially the node would keep track of all its current nodes plus all known but not connected nodes.  Nodes which provide bad data, continually spam already known data, have high latency, relay tx significantly slower than peers, etc could be scored down and once they fall below a threshold the node would send them an error message, and ignore them for some period of time.  The node could then attempt to connect to a new known but not yet used node.  The code currently does a little of this but it could be expanded to make the protocol more hardened.  

Nodes could also employ digital signatures which would aid in building a "web of trust".  For example if I trust MtGox and blockchain.info I could mark their "node public keys" as trusted.  They would be scored higher, the protocol could be expanded so when I query a trusted node for other nodes it not only gives me a list but also their scores.   The whole "if I trust you then I can trust people you trust too" concept.
Gavin Andresen
Legendary
*
qt
Offline Offline

Activity: 1652
Merit: 2222


Chief Scientist


View Profile WWW
October 02, 2012, 06:09:32 PM
 #3

As DeathAndTaxes says, there is a weak vulnerability there for clients that are performing initial block download.

It is weak because try-to-fill-up-disk attacks take a long time to pull off, the results are boring (you managed to fill 10 gigabytes of my terabyte hard drive? meh), recovery is pretty easy, and the attacker has to wait around for potential victims to connect to them.

There are a bunch of optimizations to initial block download that could be done; the most obvious is fetching headers for the entire best blockchain starting at the best-block, then 'backfilling' block data in the background.  That would let a new user get up and running very quickly, and would get rid of the vulnerability.

How often do you get the chance to work on a potentially world-changing project?
Jan (OP)
Legendary
*
Offline Offline

Activity: 1043
Merit: 1002



View Profile
October 02, 2012, 07:09:57 PM
 #4

As DeathAndTaxes says, there is a weak vulnerability there for clients that are performing initial block download.

It is weak because try-to-fill-up-disk attacks take a long time to pull off, the results are boring (you managed to fill 10 gigabytes of my terabyte hard drive? meh), recovery is pretty easy, and the attacker has to wait around for potential victims to connect to them.

There are a bunch of optimizations to initial block download that could be done; the most obvious is fetching headers for the entire best blockchain starting at the best-block, then 'backfilling' block data in the background.  That would let a new user get up and running very quickly, and would get rid of the vulnerability.
Yes, the attack is really lame as I would have to actually upload all those 10 Gb, saturating me as well. However, if we didn't have the checkpoints it would be really effective. BitcoinJ based clients do not use checkpoints as far as I remember, but they are also not serving blocks. As far as I know we do not have block serving clients apart from bitcoind.

Mycelium let's you hold your private keys private.
Pages: [1]
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!