GHSA-f92v-grc2-w2fg

Suggest an improvement
Source
https://github.com/advisories/GHSA-f92v-grc2-w2fg
Import Source
https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2022/08/GHSA-f92v-grc2-w2fg/GHSA-f92v-grc2-w2fg.json
JSON Data
https://api.osv.dev/v1/vulns/GHSA-f92v-grc2-w2fg
Aliases
Related
Published
2022-08-18T19:04:47Z
Modified
2024-08-21T15:41:39.047766Z
Severity
  • 8.2 (High) CVSS_V3 - CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:H CVSS Calculator
Summary
Ethermint vulnerable to DoS through unintended Contract Selfdestruct
Details

Vulnerability Report

Impact

Smart contract applications that make use of the selfdestruct functionality and their end-users.

Classification

The vulnerability has been classified as high with a CVSS score of 8.2. It has the potential to create a denial-of-service to all contracts that can invoke the selfdestruct function to destroy a smart contract.

Users Impacted

Due to the successfully coordinated security vulnerability disclosure, no smart contracts were impacted through the use of this vulnerability. Smart contract states and storage values are not affected by this vulnerability. User funds and balances are safe.

Disclosure

In Ethermint running versions before v0.17.2, the contract selfdestruct invocation permanently removes the corresponding bytecode from the internal database storage. However, due to a bug in the DeleteAccount function, all contracts that used the identical bytecode (i.e shared the same CodeHash) will also stop working once one contract invokes selfdestruct, even though the other contracts did not invoke the selfdestruct OPCODE.

Additional Details

The same contract bytecode can be deployed multiple times to create multiple contract instances. In the internal database, the bytecode is stored as a key-value entry bytecode hash --> bytecode which is shared by those contracts. Unfortunately, when one of the contracts invokes selfdestruct, it will remove the corresponding bytecode hash -> bytecode entry, and thus it disables all the contracts that share the same bytecode.

The attack scenario is as follows:

  1. The malicious attacker identifies a vulnerable contract that can invoke selfdestruct
  2. The attacker deploys a copy of the contract with identical bytecode
  3. Finally, the attacker triggers the selfdestruct operation on their redeployed contract, actively causing a DoS on the original and vulnerable contract. All transactions will fail until a workaround is used (see below).

Patches

Has the problem been patched? What versions should users upgrade to?

This vulnerability has been patched in Ethermint versions ≥v0.18.0. The patch has state machine-breaking changes for applications using Ethermint so a coordinated upgrade procedure is required.

Details

The patch removes the bytecode deletion logic, i.e. contract bytecodes are never deleted from the internal database after the patch. At the moment, Ethermint does not track how many times each bytecode is used, and thus it cannot determine if it is safe to delete a particular bytecode on selfdestruct invocations. This behavior is the same with go-ethereum.

Workarounds

Is there a way for users to fix or remediate the vulnerability without upgrading?

If a contract is subject to DoS due to this issue, the user can redeploy the same contract, i.e with identical bytecode, so that the original contract's code is recovered.

The new contract deployment restores the bytecode hash -> bytecode entry in the internal state.

References

Are there any links users can visit to find out more?

For more information

If you have any questions or comments about this advisory:

Credits

Thanks to the

  • Cronos Team: @yihuang and @tomtau for discovering the issue, @gakuzen-crypto, @polycryptics, @FinnZhangCrypto, @wilson-ang, @brianatcrypto for the impact analysis.
  • Evmos Team: @facs95 for patching the issue and @fedekunze for managing the release and coordinating between teams.
Database specific
{
    "nvd_published_at": "2022-08-05T13:15:00Z",
    "github_reviewed_at": "2022-08-18T19:04:47Z",
    "severity": "HIGH",
    "github_reviewed": true,
    "cwe_ids": [
        "CWE-668"
    ]
}
References

Affected packages

Go / github.com/evmos/ethermint

Package

Name
github.com/evmos/ethermint
View open source insights on deps.dev
Purl
pkg:golang/github.com/evmos/ethermint

Affected ranges

Type
SEMVER
Events
Introduced
0Unknown introduced version / All previous versions are affected
Fixed
0.18.0

Database specific

{
    "last_known_affected_version_range": "<= 0.17.2"
}

Go / github.com/evmos/evmos

Package

Name
github.com/evmos/evmos
View open source insights on deps.dev
Purl
pkg:golang/github.com/evmos/evmos

Affected ranges

Type
SEMVER
Events
Introduced
0Unknown introduced version / All previous versions are affected
Fixed
7.0.0

Database specific

{
    "last_known_affected_version_range": "<= 6.0.3"
}

Go / github.com/crypto-org-chain/cronos

Package

Name
github.com/crypto-org-chain/cronos
View open source insights on deps.dev
Purl
pkg:golang/github.com/crypto-org-chain/cronos

Affected ranges

Type
SEMVER
Events
Introduced
0Unknown introduced version / All previous versions are affected
Fixed
0.7.1-rc2

Database specific

{
    "last_known_affected_version_range": "<= 0.7.0"
}

Go / github.com/Kava-Labs/kava

Package

Name
github.com/Kava-Labs/kava
View open source insights on deps.dev
Purl
pkg:golang/github.com/Kava-Labs/kava

Affected ranges

Type
SEMVER
Events
Introduced
0Unknown introduced version / All previous versions are affected
Fixed
0.18.0

Database specific

{
    "last_known_affected_version_range": "<= 0.17.5"
}