GHSA-v6rw-hhgg-wc4x:
Evmos vulnerable to DOS and transaction fee expropiation through Authz exploit
9.1
CVSS Score
3.1
Basic Information
CVE ID
-
GHSA ID
EPSS Score
-
CWE
-
Published
4/17/2024
Updated
4/17/2024
KEV Status
No
Technology
Go
Technical Details
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:H
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
github.com/evmos/evmos/v11 | go | < 12.0.0 | 12.0.0 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems from two key gaps: 1) The authz module's MsgExec
handler (authz.NewMsgExec
) didn't recursively validate()
nested MsgEthereumTx
messages, and 2) The Ethereum-specific AnteHandler
(newEthAnteHandler
) wasn't applied to these nested messages. This allowed attackers to embed gas-unchecked EVM transactions. The fix explicitly adds recursive checks and a decorator (AuthzLimiterDecorator
) to the AnteHandler
chain, confirming these were the missing protections.