Yearn Finance Exploit Analysis

  • Earlier today, a prominent developer of Yearn Finance (YFI) reported that an exploit on Yearn’s DAI v1 vault led to the equivalent of a $11M loss, netting the attacker around $2.8M

  • It was later identified that the exploit was enabled by a massive transaction that used 74.1% of an Ethereum block https://etherscan.io/tx/0xb094d168dd90fcd0946016b19494a966d3d2c348f57b890410c51425d89166e8

  • The transaction made extensive use of flash loans in a repetitive cadence, borrowing and subsequently repaying funds from dydx, Compound, and Aave

  • At each cycle, the attacker seemed to have deposited and subsequently withdrawn from the yDAI vault, which enabled for the manipulation of vault parameters

  • Industry researchers have commented that the exploit resembles the Harvest exploit from October, 2020

  • There’s a Yearn AMA currently in progress https://discord.com/channels/734804446353031319/734862139386232902

The original chart posted by YFI Developer, Banteg, showcasing the decrease of the yDAI vault balance (left) and the unpegging of DAI share prices (right):

According to Igor Igamberdiev (@FrankResearcher), here is how the attack unfolded:

1/ Flash loaned 116k ETH from dYdX

2/ Flash loaned 99k ETH from Aave v2

3/ Borrow 134M USDC and 129M DAI using ETH as collateral on Compound

4/ Add 134M USDC and 36M DAI to 3crv Curve pool

5/ Withdraw 165M USDT from 3crv Curve pool

6/ Repeat five timesDown pointing backhand index

Deposit 93M DAI to yDAI vault (less w/ each time)

  • Add 165M USDT to 3crv pool

  • Withdraw 92M DAI from yDAI vault (less w/ each time)

  • Withdraw 165M USDT from 3crv pool

7/ In the last time withdraw 39M DAI and 134M USDC instead USDT

8/ Repay Compound debts

9/ Repay flash loans

10 Likes

Official Yearn Vulnerability Disclosure: 2021-02-04

Link: yearn-security/2021-02-04.md at master · yearn/yearn-security · GitHub

Summary:

  • An exploit against Yearn’s v1 yDAI vault has led to 11m DAI of vault deposits being lost.
  • Acting in roughly 11 minutes, Yearn’s security team and multi-sig wallet signers were able to stop the exploit while it was underway, saving 24m DAI out of the vault’s total 35m DAI deposits.
  • By creating exchange rate imbalances in Curve’s 3pool, an exploiter was able to cause Yearn’s yDAI vault to deposit and withdraw funds from 3pool at unfavorable rates across a series of transactions.
  • The exploiter profited from the loss by holding a good portion of the Curve 3pool during the attack, and withdrawing to a combination of USDT, DAI, and ETH. It is estimated to have resulted in a 2.7m DAI profit.
5 Likes

Peckshield has released an analysis. This is an exploit that took advantage of a contract that relies on the business logic of an external contract.

In order to understand how the exploit works it’s helpful to first understand how Curve pools work. Curve pools are optimized for the exchange of like kind assets such as stablecoins and bases it’s bonding curve on the assumption that over the long term these assets have a one to one exchange rate.

In order to incentivize having a balance of assets in the pool it implements deposit and withdrawal bonuses/penalties. When there is a disproportionately small amount of a given token in the pool a deposit bonus is given, conversely a penalty is applied when a token has a larger share of the pool. The reverse is applied for withdrawals where a penalty is applied for withdrawing scarce tokens and a bonus is applied for abundant tokens.

The yDAI vault makes deposits and withdrawals into the Curve 3pool as part of it’s core strategy. In the block prior to the first transaction (11792210) the 3pool liquidity balances were:

  • DAI: 207,211,018
  • USDC: 227,758,811
  • USDT: 194,173,881

Upon initiating the transaction the exploit contract, through a series a flash loans and swaps acquired 38,219,752 DAI and133,000,000 USDC which they swapped through 3pool for 167,159,608 USDT bringing the new pool balances to:

  • DAI: 245,430,770
  • USDC: 360,758,811
  • USDT: 27,014,273

At this point the pool is heavily skewed which creates high slippage for DAI and USDC depositors and high rewards for USDT depositors and DAI and USDC withdrawers.

The exploiting contract then deposits 105,469,871 DAI into the yDAI vault. Upon triggering earn on the yDAI vault, the yDAI vault deposited 104,436,479 DAI in to 3pool which now made the skew significantly more extreme. With such an extreme skew the tails of the rewards curve are now utilized which are convex compared to when the pool is more balanced.

At this point the exploiting contract deposits back into the 3pool the USDT for 169,468,555 3pool shares and redeems it’s yDAI shares, which triggers a DAI withdrawal from 3pool where the exploiting contract receives 104,700,650 in DAI which is 769,221 less DAI than it deposited. The exploiting contract then redeems 168,604,719 3pool shares for it’s original deposit of 167,159,608 USDT and profit of 863,836 3pool shares. Considering the shares tend towards $1 in value over time the net profit on this turn for the exploiting contract was ~$94,000.

The contract call then loops through the above process a few more times then repaying the flash loans before hitting the gas limit and sending the final profits of 316,814 3crv and 11,833 USDT to the contract caller. As the limiting factor in the loops is the gas limit the attacker than initiated several more calls to the exploiting contract bringing the final amount of funds received by the exploiting sender to 506,314 3crv, 1,747,728 USDT and 513,356 DAI.

This attack shows the importance of understanding how dependent contracts function. It seems the Yearn team did have such an understanding as they implemented a withdrawal fee of 0.5% in the yDAI vault which would have rendered this attack unprofitable in most scenarios but they recently disabled the fee to encourage migration to new vaults. The vault also had slippage protection in place of 1% but at large enough sums and with enough rotations through a strategy it proved to be to too wide to deter such an attack. Another interesting point is that anyone could call the earn function which triggers a deployment of the vault funds and the attacker took advantage of that. In V2 vaults they utilize a network of keepers which are whitelisted agents that monitor the chain and trigger actions as needed. Finally it seems important to consider window of opportunity attacks, loosing parameters to facilitate temporary onchain events can create attack vectors that don’t exist under normal circumstances.

7 Likes

Here is a breakdown of the $11M loss:
`

I’m seeing some
misunderstandings about where does the $11M figure come from so here is
the breakdown:

- $2.7M exploiter's
profit
- $3.5M Curve LP fees
- $3.5M Curve stakers
fees
- $1.4M Aave v2 fees https://t.co/rh6ZxXzXtd
pic.twitter.com/M11E2iD2uA


Igor Igamberdiev (@FrankResearcher) February
5, 2021

`
5 Likes

Yearn.Finance Security Review (quantstamp.com)

It looks like Quantstamp had successfully identified some of the vectors through which this exploit was executed in their audit. This is a good example of how audits should have more attention paid to them by the crypto community to avoid preventable exploits.

8 Likes

Great flag @Larry_Bates. Would be interesting to consider to what extent this type of vulnerability was already or could have been previously noted by auditors. Further, is there a consensus on whether this was a true exploit or is this something that is in contention?

@lnrdpss thoughts?

1 Like

@Vishesh There is no contention, this was indeed an exploit. Same old formula: cause an imbalance somewhere, profit elsewhere. As @Barry noted, the safety guards in place were off at the time the exploit happened.

2 Likes

There is a big difference between code exploits and economic exploits. I wonder if audit teams are properly trained/experienced in identifying economic exploits/vulnerabilities.

6 Likes

@Jomari Thanks for your post and welcome to SCRF. It all boils down to the audit type based on what a client asks for. Audit companies traditionally focus on code audits only, which generally (unless obvious) do not cover economic attack threat models. If one wants an economic type audit, they have to go to specialized providers. One cannot and should not expect a one-size-fits-all audit type. Would you agree?

4 Likes

Hi @Jomari, welcome to the forum.

There may be a lack of clarity in the space about what specific assurances an audit generally provides. Possibly due to the lack of an accepted definition of what an ‘audit’ actually is?

I wonder also whether it’s reasonable for a single organization to provide sufficient coverage of sound economics, game theory, code security, etc, etc, as well as being able to provide a clear understanding about how a specific tool or protocol will interact with the wider ecosystem. Feels like a big lift to me.

This also raises the extremely thorny question about whether the issue at hand is an exploit or clever discovery of alpha.

Or whether the ‘exploit’ resides in the dapp in question or in another one that was combined with it in an unexpected manner. Or whether each one in isolation is fine, but combined with X others, can become a problem.

@Jomari do you know of any good examples of audits that explore potential economic failures? Particularly when the behaviour of the primitive in question is examined as a piece in the wider crypto economy?

6 Likes

The original paper that called for a moratorium on the DAO had a mix of economic and code vulnerabilities and is probably one of the best examples of both being highlighted in one piece of research. That is a great observation that an organization fit to execute one type of audit is most likely not fit to execute both to the same level of quality as if they only focused on one type. This is likely why regulations like Sarbanes-Oxley don’t explicitly require “code audits” even though it is a financial audit analyzing the safety of financial systems.

Research Summary - A Call for a Temporary Moratorium on “The DAO” - Auditing and Security - Smart Contract Research Forum

3 Likes