如何保证以太坊DApp本地存储localStorage的安全性

资讯 2024-06-22 阅读:20 评论:0
美化布局示例

欧易(OKX)最新版本

【遇到注册下载问题请加文章最下面的客服微信】永久享受返佣20%手续费!

APP下载   全球官网 大陆官网

币安(Binance)最新版本

币安交易所app【遇到注册下载问题请加文章最下面的客服微信】永久享受返佣20%手续费!

APP下载   官网地址

火币HTX最新版本

火币老牌交易所【遇到注册下载问题请加文章最下面的客服微信】永久享受返佣20%手续费!

APP下载   官网地址
发布时间:2021-12-22 15:19:45 来源:亿速云 阅读:326 作者:柒染 栏目:互联网科技

这篇文章给大家介绍如何保证以太坊DApp本地存储localStorage的安全性,内容非常详细,感兴趣的小伙伴们可以参考借鉴,希望对大家能有所帮助。

部署去中心化应用程序dapp会引入一些有趣的安全性考虑因素,这些因素可能不会出现在更传统的开发中。我们如何保证dApp本地存储的安全性?

The deployment of decentralised applications dapp introduces interesting security considerations that may not appear in more traditional development. How can we ensure the security of the local storage of dapp?

提出这个问题的原因是我们在使用Colony dApp时遇到的一个重要障碍,那就是如何应对在使用IPFS或Swarm等分布式存储系统保持本地存储的dApp数据安全挑战。

The reason for this is that one of the major obstacles we have encountered in using Clonny dApp is how to address the security challenges of the dApp data that are stored locally using distributed storage systems such as IPFS or Swarm.

我将从dApp开发人员的角度来看一下这个问题,然后研究一些可能的解决方案。

I will look at this from the perspective of the dapp developers and then look at some possible solutions.

共享本地存储localStorage的问题

IPFS运行本地节点,它与Web服务器捆绑在一起。捆绑的Web服务器使节点可以轻松地相互连接并共享网络中其他位置可能需要的数据。

IPFS runs local nodes tied together with Webserver. A bundled Web server allows nodes to easily connect to each other and share data that may be needed for other locations in the network.

作为一个去中心化的应用程序构建器,你将依赖该Web服务器将你的内容从一个节点推送到另一个节点,从而使其可以根据需要立即供最终用户使用。

As a decentralised application builder, you will rely on the Web server to push your content from one node to another so that it can be immediately used by end-users as required.

假设你正在完全去中心化并且正在避免使用DNS或Web代理等任何内容来跟踪你的内容在网络上的位置,那么访问dApp的方式通常是通过浏览器使用其查询本地节点哈希,如:

Assuming that you are completely decentralizing and are avoiding using anything like DNS or Web Agent to track your content on the Internet, then dApp is usually accessed using browsers to search for local nodes, such as:

现在,假设在正常使用期间,你的应用程序将在浏览器的localStorage保存数据:可能需要传递一些数据,或者保持本地用户交互的队列,以最大限度地减少链上交易并节省gas成本。

Now, it is assumed that, during normal use, your application will save data on the browser's localStorage: some data may need to be transferred or local user interactive queues may be maintained to minimize chain transactions and save gas costs.

浏览器中的本地存储仅限于特定的地址上下文(域和端口)。IPFS节点是获取此上下文的,这意味着通过IPFS Web服务器运行的任何去中心化应用程序将使用具有读写访问权限的相同。

Local storage in the browser is limited to specific address context (domains and ports). The IPFS node is used to get this context, which means that any decentralised application run through the IPFS Web server will use the same access to read and write.

这可能是一个大问题。

This could be a big problem.

默认情况下,dApp的某些helper依赖项使用localStorage临时将密钥保存在纯文本中。这些数据不应该被看到的一天。

By default, some of dApp's help items use localStorage to save the key temporarily in the plain text. The data should not be seen for a day.

如何保证以太坊DApp本地存储localStorage的安全性

How to Secure LocalStorage in Taipan Dapp Local

另一个潜在的泄漏问题是保存其内存状态的软件包,以便以后可以恢复。类似Flux-like的库通常(相对)安全,因为它们只在内存中运行,但启用持久性状态会将该内存状态放入localStorage,从而将其打开给潜在的攻击者。

Another potential leakage problem is the software package that saves its memory state so that it can be restored at a later stage. A bank similar to Flux-like is usually (relatively) safe, as they only operate in the memory, but using a permanent state would put the memory state into the localStorage, thus opening it to potential attackers.

缓解问题的策略

不幸的是,安全没有灵丹妙药:作为一名dApp开发人员,为安全起见所做的任何调整都可能需要在开发的其他方面做出一些让步。

Unfortunately, there is no panacea for security: as a dapp developer, any adjustments made in the interests of security may require some concessions in other aspects of development.

以下是你可以做出的一些妥协:

Here are some of the compromises you can make:

不存储任何数据

这当然是最安全的方法,但它有点像烧毁你的房子来摆脱蟑螂。在本地存储数据的dApp中有许多功能和基本行为,删除太多后可能没有应用程序存在的意义了。

This is certainly the safest way, but it's kind of like burning your house out of cockroaches. There's a lot of functionality and basic behavior in the local data-storage dApp, and there's probably no use in deleting too much of it.

此外,有许多库默认使用,你必须手动检查每个依赖项并删除任何需要它的库,否则就得自己修改库。

In addition, there are many libraries that are used by default, and you have to manually check each dependent item and remove any library that needs it, otherwise you have to modify the library yourself.

加密一切这在理论上更有前途,特别是因为大多数dApp开发人员已经在看板上保持默认加密。

Encryption of everything is theoretically more promising, especially since most dapp developers already maintain default encryption on panels.

如何保证以太坊DApp本地存储localStorage的安全性

How to Secure LocalStorage in Taipan Dapp Local

加密的local storage值

实际上,加密所有本地存储有点麻烦。要加密数据,必须有一个密钥:但是用户不能将该密钥存储在dApp中,因为它将被放在localStorage,这样做你就将回到原点。

In fact, encryption is a bit of a problem for all local storage. To encrypt the data, there must be a key: but the user cannot store the key in the dApp because it will be placed in the localStorage, so you will return to the point of origin.

一种解决方案是使用钱包:你的dApp可能会以某种方式与区块链进行交互,要求用户解锁其钱包以发送和签署交易。由于无论如何都需要钱包与dApp交互,因此可以使用每个帐户的私钥来加密本地存储。

One solution is to use wallets: your dApp may interact with the block chain in some way, requiring the user to unlock its wallet to send and sign the transaction. Since the wallet is in any case required to interact with dApp, the private key of each account can be used to encrypt local storage.

然而,这也有一些缺点:

However, there are also some shortcomings:

  • 每次想要与交互时,您都必须询问用户的纯文本私钥。

    Every time you want to interact with one another, you have to ask the user for a plain text private key.

  • 像MetaMask这样的密钥管理软件不起作用,因为它永远不会暴露用户的私钥。

    Key management software such as MetaMask does not work because it will never reveal the user's private key.

使用Swarm和Mist

Mist是作为dApp和以太坊浏览器构建的,因此它为该问题提供了一些特殊优势。

The Mist is built as a dApp and as a Taiyet browser and thus offers some special advantages to the issue.

默认情况下,Mist支持Swarm的bzz协议,因此你可以设置一个ens地址指向dApp的哈希值,然后使用Mist无需担心地浏览你的dApp。

By default, Mist supports the swarm bzz protocol, so you can set an ens address to the dApp's Hashi value, and then use Mist to view your dApp without fear.

不幸的是,这只会解决通过Mist访问dApp的用户的问题。

Unfortunately, this will only solve the problem of users accessing dapp through Mist.

运行本地Swarm节点的用户仍然必须通过访问,仍然(可能)将数据泄露给其他dApp。

Users running local Swarm nodes still have to go through and still (possibly) leak data to other dApps.

为你的dApp创建一个浏览器扩展

通过浏览器扩展程序运行你的应用程序将导致它获得单独的上下文(它将不再在localhost:8080),但它有点减弱了去中心化应用程序的目的,必须要依赖于像Chrome网络商店这样的中央权威机构用于管理和分配。

The operation of your application through a browser extension will result in a separate context (which will no longer be in localhost:8080), but it has somewhat reduced the purpose of decentralizing the application and has to rely on central authorities such as the Chrome web shop for management and distribution.

此外,现在你必须为要支持的每个浏览器创建和维护单独的扩展,并通过其自己的特定集中式应用商店进行更新。不爽。

And now you have to create and maintain separate extensions for each browser that you want to support, and update them through your own specific centralized application store.

创建一个独立的桌面应用程序

和以前一样,创建独立应用程序是将dApp分离到自己的上下文的一种方式,这意味着它将获得自己的包装器(在本例中为electron)。

As before, the creation of a stand-alone application is a way to separate dApp from its context, which means that it will acquire its own packaging (i.e. electron in this case).

独立的桌面应用程序具有额外的好处,可以捆绑外部库和你可能需要的任何其他内容,包括IPFS本身的单独实例。

A stand-alone desktop application has the added benefit of binding the external library and any other elements that you may need, including separate examples of IPFS itself.

和以前说的一样,要有一些让步:

Like I said before, there's got to be some concessions:

  • 除非你想要专门在bittorrent上分发应用程序,否则你需要找到一个集中托管的解决方案来进行分发和维护。

    Unless you want to distribute applications specifically on the bittorrent, you need to find a centrally hosted solution for distribution and maintenance.

  • 你必须为electron桌面应用程序维护一个单独的存储库。

    You must maintain a separate repository for the electron desktop application.

  • 如果你想将IPFS用于任何其他服务,你可能最终会在同一台计算机上运行多个节点,这可能会变得混乱。

    If you want to use IPFS for any other service, you might end up running multiple nodes on the same computer, which could get messy.

将你的应用代理到域名

通过使用其他Web服务器代理本地节点,有两个优点:

By using other Web servers to represent local nodes, there are two advantages:

首先,现在你的dApp有一个友好的友好的人类可读地址,而不是一个冗长的哈希。其次,你的应用程序将拥有自己的上下文,并且不会共享localStorage。

First of all, your dapp now has a friendly and friendly human readable address, not a lengthy Hash. And second, your application will have its own context and will not share a localStorage.

然而,代理确实跨越了“真正的”去中心化,用户将再次不得不依靠中央服务器来访问去中心化的服务。哎。

However, it is true that the agent has crossed the “real” decentralisation, and the user will again have to rely on a central server to access decentralised services.

对于去中心化的应用程序开发人员来说,现在还处于早期阶段。这种问题在新兴的“去中心化协议栈”中无处不在“:而且在我们提出更优雅的解决方案之前可能还需要一段时间。

For decentralised app developers, it's still at an early stage. The problem is everywhere in the emerging “decentralized repository”: and it may take some time before we come up with a more elegant solution.

将来,在浏览器中支持本机IPFS或Swarm节点可以解决这个问题,并且无需将Web服务器与去中心化的文件存储捆绑在一起。用户可以输入类似并直接访问dApp,并为每个唯一的哈希分配自己的上下文。

In the future, supporting the host IPFS or Swarm node in the browser can solve this problem and do not need to bind the Web server to a decentralised file storage. Users can enter a similar type and have direct access to dapp and assign their own context to each of the only Hash.

关于如何保证以太坊DApp本地存储localStorage的安全性就分享到这里了,希望以上内容可以对大家有一定的帮助,可以学到更多知识。如果觉得文章不错,可以把它分享出去让更多的人看到。

美化布局示例

欧易(OKX)最新版本

【遇到注册下载问题请加文章最下面的客服微信】永久享受返佣20%手续费!

APP下载   全球官网 大陆官网

币安(Binance)最新版本

币安交易所app【遇到注册下载问题请加文章最下面的客服微信】永久享受返佣20%手续费!

APP下载   官网地址

火币HTX最新版本

火币老牌交易所【遇到注册下载问题请加文章最下面的客服微信】永久享受返佣20%手续费!

APP下载   官网地址
文字格式和图片示例

注册有任何问题请添加 微信:MVIP619 拉你进入群

弹窗与图片大小一致 文章转载注明

分享:

扫一扫在手机阅读、分享本文

发表评论
平台列表
美化布局示例

欧易(OKX)

  全球官网 大陆官网

币安(Binance)

  官网

火币(HTX)

  官网

Gate.io

  官网

Bitget

  官网

deepcoin

  官网
热门文章
  • 0.00003374个比特币等于多少人民币/美金

    0.00003374个比特币等于多少人民币/美金
    0.00003374比特币等于多少人民币?根据比特币对人民币的最新汇率,0.00003374比特币等于2.2826 1222美元/16.5261124728人民币。比特币(BTC)美元(USDT)人民币(CNY)0.00003374克洛克-0/22216.5261124728比特币对人民币的最新汇率为:489807.72 CNY(1比特币=489807.72人民币)(1美元=7.24人民币)(0.00003374USDT=0.0002442776 CNY)。汇率更新于2024...
  • 0.00006694个比特币等于多少人民币/美金

    0.00006694个比特币等于多少人民币/美金
    0.00006694比特币等于多少人民币?根据比特币对人民币的最新汇率,0.00006694比特币等于4.53424784美元/32.5436 16人民币。比特币(BTC)美元(USDT)人民币(CNY)0.000066944.53424784【比特币密码】32.82795436 16比特币对人民币的最新汇率为:490408.64 CNY(1比特币=490408.64人民币)(1美元=7.24人民币)(0.00006694USDT=0.0004846456 CNY)汇率更新时...
  • 0.00015693个比特币等于多少人民币/美金

    0.00015693个比特币等于多少人民币/美金
    0.000 15693比特币等于多少人民币?根据比特币对人民币的最新汇率,0.000 15693比特币等于10.6 1678529美元/76.86554996人民币。比特币(BTC)【比特币价格翻倍】美元(USDT)人民币(CNY)0.000/克洛克-0/5693【数字货币矿机】10.6 167852976.8655254996比特币对人民币的最新汇率为:489,807.72 CNY(1比特币= 489,807.72人民币)(1美元=7.24人民币)(0.00015693 U...
  • 币圈院士:5.20比特币(BTC)以太坊(ETH)行情分析

    币圈院士:5.20比特币(BTC)以太坊(ETH)行情分析
    利空出尽?华尔街多头坚信美股将摆脱泥潭 经济衰退风险被夸大A lot of people on Wall Street believe that beauty will escape the quagmire; the risk of recession is exaggerated. 从目前美国经济的情况加上美股先有的走势来判断,确信通胀已经或即将见顶,这为价格压力回落铺平了道路,这最终将使美联储得以放缓...
  • 2000年美国GDP占世界的304%,中国GDP仅占35%,现在呢?

    2000年美国GDP占世界的304%,中国GDP仅占35%,现在呢?
    GDP作为全球公认的实力基准,就像是一个大国实力的代言人,它是布雷顿森林体系下全球团结的声音。它不仅仅是数字的累积,更是大国综合实力的人格化,默默诉说着每个国家的辉煌与荣耀。虽然GDP不是衡量一个国家综合实力的唯一标准,但无疑是最关键的指标之一。作为一面镜子,它反映了国家的经济实力和发展水平,是国家综合实力的重要体现,不容忽视。2000年,中国GDP迈过/克洛克-0/万亿美元的重要门槛,达到/克洛克-0/。2/克洛克-0/万亿美元(折合人民币7。7万亿元)。然而,在全球经济的...
标签列表