• About
  • Privacy Poilicy
  • Disclaimer
  • Contact
CoinInsight
  • Home
  • Bitcoin
  • Ethereum
  • Regulation
  • Market
  • Blockchain
  • Ripple
  • Future of Crypto
  • Crypto Mining
No Result
View All Result
  • Home
  • Bitcoin
  • Ethereum
  • Regulation
  • Market
  • Blockchain
  • Ripple
  • Future of Crypto
  • Crypto Mining
No Result
View All Result
CoinInsight
No Result
View All Result
Home Ethereum

Attackers drove 63% of early use of Ethereum’s new smart wallet feature

Coininsight by Coininsight
August 21, 2026
in Ethereum
0
189
SHARES
1.5k
VIEWS
Share on FacebookShare on Twitter

Related articles

Allocation Update – Q2 2026

August 20, 2026

Ethereum’s 12-GPU proving problem just got a 4-GPU answer

August 19, 2026


Ethereum’s shortcut to smart wallet behavior arrived with a new trust problem: a wallet can make a regular address programmable without moving the user’s assets, while the delegated code gains power to act with that account’s authority.

A peer-reviewed study released for USENIX Security ’26 found that attacker-linked contracts were associated with 2,322,548 of the 3,664,166 EIP-7702 authorization transactions it observed across seven chains through July 15, 2025. That is 63% of the historical transaction volume in the researchers’ dataset.

The authors tied a relatively small set of malicious contracts to repeated authorizations and described some attacker-controlled activity as likely practice or proof-of-concept testing during an early, exploratory phase.

The figure measures transactions, while distinct-wallet prevalence and the current 2026 attack rate sit outside the study’s scope.

Why attackers dominated the early authorization count

Ethereum activated Pectra, including EIP-7702, on May 7, 2025. The final specification introduced a type-4 transaction that lets an externally owned account set a pointer to deployed contract code.

The address stays the same, the original private key retains control, and calls to the account can execute the delegated code in the account’s context.

That design can give a conventional wallet features associated with smart accounts, including batched calls and sponsored transactions, without forcing the user to migrate to a new address. It also turns the delegation target into wallet infrastructure.

Buggy or hostile code may be able to make approvals, transfers and application calls as the account.

It says applications should not expect to ask users for arbitrary authorization signatures because there is no safe generic interface for users to assess code with unrestricted account access. Wallets are expected to vet the implementation.

Attackers could prepare authorization fields off-chain and ask a victim to sign, and a wallet might reduce the decision to a high-level account-upgrade prompt while obscuring the contract address or code receiving authority.

The protocol verifies the account owner’s signature, while the wallet still has to establish whether the selected code deserves control.

Related Reading

Crypto investor loses $1M in Uniswap scam exploiting Ethereum’s EIP-7702

The researchers analyzed more than 22.8 billion historical transactions on Ethereum, Binance Smart Chain, Polygon, Optimism, Arbitrum, Base, and Gnosis.

Within that data, they examined 3,664,166 EIP-7702 authorizations through the cutoff and used transaction filters, bytecode analysis and manual review to identify 924 malicious contracts. They classified 793 as EOA-targeted, 124 as contract-account-targeted and seven as composite attacks.

Study measureWhat it captures
3,664,166 authorizationsHistorical EIP-7702 transactions across seven chains through July 15, 2025
2,322,548 authorizations, or 63%Historical transactions associated with malicious EOA-targeted contracts
924 malicious contractsThe detected and manually reviewed set under the researchers’ method
$2.36 millionDetected realized loss across three attack categories
About $10.14 millionPotential exposure in a separate legacy-contract subset
Infographic showing 63% of 3,664,166 historical EIP-7702 authorization transactions associated with malicious EOA-targeted contracts, 924 malicious contracts, $2.36 million in detected realized loss, and $10.14 million in potential exposure.Infographic showing 63% of 3,664,166 historical EIP-7702 authorization transactions associated with malicious EOA-targeted contracts, 924 malicious contracts, $2.36 million in detected realized loss, and $10.14 million in potential exposure.
An EIP-7702 risk map shows 63% of authorizations, $2.36 million in detected losses, and $10.14 million in potential exposure.

The paper says malicious contracts were reused disproportionately, so transaction counts can rise much faster than the number of distinct contracts or affected users. In a young authorization market, that repeated attacker activity had an outsized effect on the denominator.

The Daily Brief

The signal, before the noise.

Start your day with the crypto stories moving markets, decoded by CryptoSlate’s editors.

One email. Everything that matters.

Free to join. Unsubscribe any time.

Whoops, looks like there was a problem. Please try again.

You’re on the list. Your next Daily Brief is on its way.

Attackers found a repeatable route to account-level authority before wallets had made the trust decision as legible and constrained as the power it conveyed.

The risk reaches beyond hijacked wallets

The study measured $2,362,848.76 in realized losses across its three attack categories. A separate estimate covered older contracts whose defenses assumed that programmable EOAs could not exist.

EIP-7702 breaks the old assumption that msg.sender == tx.origin reliably identifies a plain EOA or blocks contract-mediated behavior.

The researchers identified 967 active Ethereum contracts in a subset using that check as a flash-loan defense and estimated that about $10.1 million in assets were at potential high risk.

Detected theft totaled about $2.36 million, so the $10.14 million represents assets exposed by a defensive assumption that no longer held.

The researchers observed attackers rebinding accounts to benign code after an attack, making current-state-only monitoring unreliable. They also found 500 special nonzero delegation targets with no deployed code.

A precomputed CREATE2 address could receive code later, changing what the account executes while the recorded target stays the same.

Those patterns make authorization history part of the security boundary. Wallets and monitoring tools need to remember where an account previously pointed, evaluate changes in delegated code, and treat an undeployed target as unresolved rather than harmless.

The authors’ rules may miss malicious contracts before preparation transactions become visible or attacks using novel interfaces outside the method’s coverage. The 924 contracts are the detected and manually verified set, while the total universe of abuse remains unknown.

Safe default behavior starts with making delegation a wallet-controlled installation decision. Post-study ethereum.org guidance calls for whitelisting delegation contracts, prominently displaying the target, avoiding arbitrary delegation on hardware wallets, and relying on audited implementations.

An account-abstraction wallet capability proposal takes the same direction, calling for a strict shortlist of well-known, publicly audited smart account implementations. These documents do not measure how consistently production wallets have adopted it.

Applications should request the feature they need and leave the account implementation to the wallet. For an approval and swap in one flow, current Ethereum Foundation guidance points developers to a wallet interface such as ERC-5792.

The wallet can then choose EIP-7702, ERC-4337, or another account system without asking the user to approve low-level delegation code selected by the application.

Current guidance recommends signing initialization parameters or restricting setup to the ERC-4337 EntryPoint, closing a front-running path in which an attacker substitutes their own values.

The study identified a related failure mode in legacy wallet code: constructors do not run again when an account delegates to an existing contract, which can leave ownership unset and externally claimable.

A benign current pointer cannot erase a malicious history, and a target with no code may acquire behavior later. Wallets need durable authorization records, clear alerts when the delegation changes, and a removal path that users can understand.

Making the EIP-7702 wallet programmability safe by default requires wallets to treat delegation as installation of the account’s control plane: restrict who can request it, expose exactly what will control the account, verify how it initializes, and keep watching after the pointer changes.

Share76Tweet47

Related Posts

Allocation Update – Q2 2026

by Coininsight
August 20, 2026
0

DAOs/GovernanceResearchFaculty Research Fellowship: Ethereum Studies (AY 2025–2026)Enables Prof. Strnad to dedicate substantial research time to Ethereum-focused problems, including DAO governance,...

Ethereum’s 12-GPU proving problem just got a 4-GPU answer

by Coininsight
August 19, 2026
0

ZisK's new four-GPU benchmark claim has lowered the headline hardware count in Ethereum's real-time proving race. In February, CryptoSlate examined...

Announcing the Platåberget Testnet | Ethereum Foundation Blog

by Coininsight
August 18, 2026
0

tl;dr: Meet Platåberget: Glamsterdam's (Gloas + Amsterdam) early testing ground open to public participation. This upgrade comes with breaking changes...

Cboe pushes for 3x Bitcoin and Ethereum ETFs after 2x crypto funds suffer losses of up to 96%

by Coininsight
August 17, 2026
0

Cboe BZX is asking the Securities and Exchange Commission (SEC) for an exception to its own generic listing rules so...

TETH redemptions reached $48.4M as 86.42% of ETH was staked

by Coininsight
August 16, 2026
0

The 21Shares Ethereum ETF, which trades as TETH, reported $48.4 million in TETH redemptions during the first half of 2026...

Load More
  • Trending
  • Comments
  • Latest
What’s Actually Going On With Ripple’s Blockchain?

What’s Actually Going On With Ripple’s Blockchain?

January 12, 2026
MetaMask Launches An NFT Reward Program – Right here’s Extra Data..

MetaMask Launches An NFT Reward Program – Right here’s Extra Data..

July 24, 2025
Finest Bitaxe Gamma 601 Overclock Settings & Tuning Information

Finest Bitaxe Gamma 601 Overclock Settings & Tuning Information

November 26, 2025
Easy methods to Host a Storj Node – Setup, Earnings & Experiences

Easy methods to Host a Storj Node – Setup, Earnings & Experiences

March 11, 2025
Kuwait bans Bitcoin mining over power issues and authorized violations

Kuwait bans Bitcoin mining over power issues and authorized violations

2
The Ethereum Basis’s Imaginative and prescient | Ethereum Basis Weblog

The Ethereum Basis’s Imaginative and prescient | Ethereum Basis Weblog

2
Unchained Launches Multi-Million Greenback Bitcoin Legacy Mission

Unchained Launches Multi-Million Greenback Bitcoin Legacy Mission

1
Earnings Preview: Microsoft anticipated to report larger Q3 income, revenue

Earnings Preview: Microsoft anticipated to report larger Q3 income, revenue

1

Tanssi at the Forefront of Polkadot Ecosystem Dynamics and Developments

August 21, 2026

Hims & Hers Health Jumps 6.8% After Barclays Maintains Overweight

August 21, 2026

Attackers drove 63% of early use of Ethereum’s new smart wallet feature

August 21, 2026

The Commodities Cup: trade oil, gas, and copper for a share of $10,000 USDG

August 21, 2026

CoinInight

Welcome to CoinInsight.co.uk – your trusted source for all things cryptocurrency! We are passionate about educating and informing our audience on the rapidly evolving world of digital assets, blockchain technology, and the future of finance.

Categories

  • Bitcoin
  • Blockchain
  • Crypto Mining
  • Ethereum
  • Future of Crypto
  • Market
  • Regulation
  • Ripple

Recent News

Tanssi at the Forefront of Polkadot Ecosystem Dynamics and Developments

August 21, 2026

Hims & Hers Health Jumps 6.8% After Barclays Maintains Overweight

August 21, 2026
  • About
  • Privacy Poilicy
  • Disclaimer
  • Contact

© 2025- https://coininsight.co.uk/ - All Rights Reserved

No Result
View All Result
  • Home
  • Bitcoin
  • Ethereum
  • Regulation
  • Market
  • Blockchain
  • Ripple
  • Future of Crypto
  • Crypto Mining

© 2025- https://coininsight.co.uk/ - All Rights Reserved

Social Media Auto Publish Powered By : XYZScripts.com
Verified by MonsterInsights