EOS congestion 9/13/2019 and EOSPlay hack

Original article by Dexaran posted on Medium on September 15, 2019.

What happens?

At 9/13/2019 the EOSPlay DApp was hacked. The hacker exploited a flaw of the implementation of the EOSplay Random Number Generator (RNG), which allows him to take away about 30,000 EOS from the EOSPlay smart contract.

NOTE 1: The attack is not related to the design of EOSIO but only to the design of this particular DApp.

NOTE 2: We do not have the source codes of the hacked contract. Everything described on this article is a set of assumptions made by smart-contract developers based on what we know about the smart-contracts and EOS. We can only observe the history of transactions at the time of the attack and, based on the results of these transactions, draw conclusions about the attack principle, design of the attackerโ€™s contract and contract of attacked DApp.

If you found a mistake, something that Iโ€™m missing or any useful info that I should include into this article please contact me: https://t.me/Dexaran

Here are the results of the contract decompilation:

https://hackmd.io/u6yWyfFrRDieRFnjgmn9pA

How it happens?

What attacker did

(Source: Dexaran)

  1. Rented 1,2M of CPU and NET at EOSREX resource exchange. (This costs him ~300 EOS)

  2. Staked CPU&NET for himself, eosplayadmin and dswinnermach. (Iโ€™m not sure but it seems that eosplayadmin belongs to the attacker while dswinnermach is listed as Spinach DApp at the DappRadar)

  3. The attacker created a lot of deferred transactions to the attacked EOSPlay DApp and won a lot of EOS (about 30,000). Deferred transactions caused network congestion and prevented most users from sending transactions.

  4. Four hours later the attacker caused a new wave of network congestion. At that time he was sending transactions to dswinnermach. (For example this one)

  5. The attack resolves. Network congestion stopped. EOS drained by the attacker is currently located here.

Theoretical explanation

Apparently EOSPlayโ€™s RNG was built fully on-chain. The problem with the RNG is that it requires a source of entropy to generate a random number. There is no built-in source of entropy in EOS. EOSPlay developers decided to use future blocks as a source of entropy, because the user does not know what will happen in the future at the time of sending the transaction.

It turns out that the hacker could manipulate future transactions to send โ€œlosingโ€ transactions into infinite loops, thus preventing them from being executed. โ€Winningโ€ transactions were left to be executed successfully.

There is a REX (resource exchange) in EOS. REX enables users to buy CPU and NET bandwidth and use it to power transactions.

A hacker rented 1,2 million CPU from REX to create thouthands of deferred transactions to the EOSPlay smart-contract which caused the network congestion. (Source: Michael Fletcher)

The attacker fills the queue with deferred transactions and waited until they are in the block where the bet is executed. Then he sent โ€œlosingโ€ transaction into infinite loops. (Source: Michael Yeates)

These are hackerโ€™s accounts:

Apparently the hacker was trying to attack this DAPPS:

What do we know?

Here are Daniel Larimerโ€™s comments regarding the attack (source):

Owning and staking #eos gives users a prorata share of available bandwidth. When people donโ€™t use their share it is redirected to others on a prorata basis. During heavy use users no longer receive this free benefit.

Lesson learned here is donโ€™t design contracts that depend upon extra bandwidth available during uncontested mode. The eosplay contract should have a low cpu action to pause execution available to contract maintainers.

There were some statements that the attacker made it impossible for EOSPlay developers to stop the contract and interrupt the attack. For example this article (EOSGO) states the following:

Since the attacker caused the EOS network to become congested, the EOSPlay team was not able to block its smart contract operations. Therefore, the attacker managed to completely empty EOSPlayโ€™s funds.

This is not true from what I know. The developers stopped the contract. Here is the transaction: https://eosflare.io/tx/2E32E80D77571D639535A830BA772A2D6F9FBAEB90A510CC5ACA6406A5EE1764

The EOSPlay conract was not emptied. Currently there are 148833.86 EOS remaining at the accountโ€™s balance: https://eosflare.io/account/eosplaybrand

What lesson should we learn from this?

  1. Smart-contract security is important. The fact that you can stop/upgrade the contract does not mean that you are 100% secure. Itโ€™s smart-contract developersโ€™ responsibility to conduct security audits, but bounties and all the security-related operations to make ensure smart-contracts security. Itโ€™s way better to spend $20K on a professional security audit rather than have an exploit which will allow hackers to steal $100K.

  2. Random Number Generators must not use on-chain sources of entropy to generate numbers. There is no viable source of entropy in EOS blockchain.

  3. It is necessary to have a spare account staked with CPU and a super-cheap `stopcontract()` function in your DApp contract. Even if your contract is stoppable/upgradeable it does not mean that you can stop or redeploy it if someone will initiate a harsh network congestion. Every attacker can rent a lot of CPU via REX and initiate a congestion before exploiting some bugs in a DApp. If DApp developers will not have an account that will have enough CPU staked to withstand a congestion and keep the ability to send transactions then DApp developers will not be able to access the contract during the attack.

  4. Automated anomalies detection is also worth considering. When designing your DApp it is better to think about possible attack scenarios and implement some checks in advance. For example if your gambling DApp is going to pay players 30 times in a row then it is a bad sign. The problem here is out lack of imagination and the inability to predict all possible scenarios. If a hacker is a bit more creative than a developer of a DApp then the attack may come from a direction we never expect.

  5. It is better to have source codes published to enable community review the code and highlight the vulnerabilities. In case of a real attack it will be easier to investigate and understand it. This will help to avoid such incidents in future.

What we know about the attackers contract?

The contract is located here: https://eosauthority.com/account?account=mumachayinmm

It uses 530 kb RAM so it is a decent contract. Not 10 lines of code.

There are the following public actions at the contract:

  • hi(num)

  • send()

  • setamount(amount)

  • settime(time)

  • setflag(flag)

  • setnum(num)

  • setc(currentvc, usedc, taskc, currentb)

  • init()

  • setrunnum(num)

  • settarget(t1, t2)

  • run(num, id) โ€” the main function of the contract that was used to send deferred transactions

  • dd(ok)

  • clean()

  • start(num, id)

There are three public tables at the contract:

  • kkks โ€” preserves a single row: id = 0 and flag = 0

  • infos โ€” preserves a single row: id=0, currentvc = 1, usedc = 10, taskc = 0, currentb = 0

  • configs โ€” preserves a single row: id=0, amount=0, flag=0, betnum=0, targettime= 1568418945500, x1= 450000, x2= 400000

Here you can find the contractsโ€™ ABI: https://gist.github.com/Dexaran/e7f98e19f31077b549024b464cf45258

Last updated