-
CVSS Score
-Basic Information
CVE ID
-
GHSA ID
-
EPSS Score
-
CWE
-
Published
-
Updated
-
KEV Status
-
Technology
-
| Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
|---|---|---|---|
| @web3-react/coinbase-wallet | npm | >= 6.0.0, < 8.0.35-beta.0 | 8.0.35-beta.0 |
| @web3-react/eip1193 | npm | >= 6.0.0, < 8.0.27-beta.0 | 8.0.27-beta |
| @web3-react/metamask | npm | >= 6.0.0, < 8.0.30-beta.0 | 8.0.30-beta.0 |
| @web3-react/walletconnect | npm | >= 6.0.0, < 8.0.37-beta.0 | 8.0.37-beta.0 |
The vulnerability stems from improper synchronization when fetching chainId and accounts during connection initialization. The original implementation in multiple connectors used Promise.all() for parallel requests to eth_chainId and eth_accounts. This created a race condition where chainId could be resolved before potential chain changes triggered by user interaction during account authorization. The fix in PR #749 changed this to serial execution (accounts first then chainId), indicating the vulnerable pattern was present in the activation flows of EIP1193-derived connectors. High confidence comes from the explicit PR changes showing these functions were modified to address the synchronization issue.