How your data is safe in Hyperledger Fabric when one can make changes to couchdb data directly

后端 未结 8 1105
小鲜肉
小鲜肉 2020-12-09 22:35

I am wondering that how your data is safe when an admin can change the latest state in Couchdb using Fauxton or cURL provided by

8条回答
  •  伪装坚强ぢ
    2020-12-09 23:39

    You must secure your couchdb from modification by processes other than the peer, just as you must generally protect your filesystem or memory.

    If you make your filesystem world writable, other users could overwrite ledger contents. Similarly, if you do not put access control on couchdb writes, then you lose the immutability properties.

提交回复
热议问题