DeFi Intel

MetaMask Snaps Phishing: Fake Permissions and Signature Theft

Quick answerMetaMask Snaps phishing tricks users into installing malicious Snaps. Because Snaps run in a locked-down sandbox and cannot call the wallet's account-signing methods (eth_sign, eth_sendTransaction) on your existing accounts, the real danger is key-derivation permissions like snap_getBip44Entropy and rogue account-management (Keyring) Snaps whose signing MetaMask routes through. Always verify Snap sources and carefully review every permission request.

MetaMask Snaps phishing is an emerging threat where attackers create malicious Snap modules that request excessive or misleading permissions, ultimately enabling signature theft and asset drain. Unlike traditional phishing that tricks users into entering seed phrases, Snap-based phishing exploits the trust users place in the MetaMask ecosystem and the legal nature of signed messages.

In this guide, we dissect how fake Snap permissions work, the role of wallet drainers, and concrete steps to detect and avoid scams. You will learn to recognize dangerous permission requests like snap_getBip44Entropy and snap_manageState, and how to verify a Snap before installation. Real-world examples—including fake token approval Snaps and impersonator Snap stores—illustrate the attack vectors. By the end, you will be equipped to navigate Snaps without losing funds.

Key takeaways
  • Malicious Snaps abuse signing and transaction requests to trick users into approving transfers that drain assets.
  • Always verify a Snap’s source code and permissions before installation; trust only the official MetaMask Snap directory.
  • Signature theft via Snaps is more dangerous than traditional phishing because it bypasses per-transaction consent.
  • If a Snap requests snap_getBip44Entropy, assume your private key is compromised and move funds immediately.
  • Use a separate test wallet for any Snap experimentation with low risk tolerance.
  • Revoke all token approvals and change seed phrase if you suspect a malicious Snap accessed your key material.

What Is MetaMask Snaps Phishing?

MetaMask Snaps are third-party modules that extend the wallet’s functionality, allowing custom transactions, integrations with non-EVM chains, or advanced key management. However, Snap phishing refers to the practice of distributing malicious Snaps that request deceptive permissions to steal cryptocurrency. Attackers create Snaps that impersonate popular tools (e.g., a “Uniswap swap helper” or “Ethereum Name Service resolver”) and convince victims to install them via social engineering.

Once installed, a malicious Snap abuses the permissions it was granted. Crucially, Snaps run in a locked-down sandbox: the ethereum provider a Snap can access (via endowment:ethereum-provider) is read-only, so a Snap cannot itself call eth_sign or eth_sendTransaction on the user's existing accounts. The real danger comes from key-derivation permissions (snap_getBip44Entropy, snap_getBip32Entropy), persistent storage (snap_manageState), network access (endowment:network-access), and — most powerfully — account-management (Keyring API) Snaps, which create Snap-controlled accounts that MetaMask then routes signing requests to. The key difference from traditional phishing is that the fraudulent activity occurs within the legitimate MetaMask interface, increasing the illusion of safety.

Phishing campaigns frequently employ fake airdrop announcements, “gas optimization” tools, or cross-chain bridge helpers to lure victims. The primary goal is to obtain a permission that allows the attacker to sign arbitrary messages on the user’s behalf, ultimately stealing tokens or NFTs.

How Fake Snap Permissions Lead to Signature Theft

Snap permissions follow an explicit model: each capability must be granted during installation, and MetaMask deliberately withholds the wallet's account-signing methods (eth_sign, personal_sign, eth_sendTransaction) from Snaps. The genuinely dangerous permissions are the key-derivation endowments — snap_getBip44Entropy and snap_getBip32Entropy — which let a Snap derive private keys from the user's seed, and the account-management (Keyring API) permissions, which let a Snap register accounts whose signing it fully controls.

A malicious account-management Snap can register Snap-controlled accounts and then, when the user transacts from one of them, alter or silently approve what actually gets signed—relying on the user to trust a confirmation whose real effect is obscured. A Snap granted key-derivation entropy can instead reconstruct private keys directly and exfiltrate them through network access.

Combined with snap_manageState for persistence and endowment:network-access for exfiltration, a rogue Snap can harvest key material or use a Snap-provided UI to nudge users toward approving malicious transactions in their normal wallet flow, then quietly ship the results to an attacker-controlled server. A common lure is a fake “Permit2 optimiser” Snap whose interface pushes the user to sign an approval that grants infinite token spending.

“Always question why a Snap needs to sign transactions or manage state. Legitimate Snaps usually only need network access or key exchange, not signing rights.” — MetaMask security team recommendation

Real-World Examples of Snap Scams

The Role of Wallet Drainers in MetaMask Snaps Attacks

Wallet drainers—automated scripts that empty a victim’s wallet—have become a staple of crypto phishing. When a malicious Snap obtains permission to sign transactions, it effectively acts as a drainer. Unlike conventional drainers that require the user to sign a separate transaction on a phishing site, a Snap-based drainer operates inside MetaMask itself.

Famous drainer frameworks like Inferno Drainer and Pink Drainer have reportedly been adapted to work through malicious account-management Snaps, which can move assets from the Snap-controlled accounts they manage without a fresh per-transaction prompt. For example, after a victim installed a fake “NFT royalty checker” Snap that registered itself as an account manager, the Snap steered a pre-crafted approval for an attacker-controlled contract into the victim’s signing flow. The transaction appeared under the user’s name in MetaMask history, often with no clear sign of foul play.

The danger is amplified by the fact that Snaps run in a sandboxed iframe, making it harder for the user to detect outgoing transactions in real time. Some drainers even delete themselves after execution to avoid detection. As a result, Snap-based drainers have a higher success rate than traditional phishing sites.

How Attackers Distribute Malicious Snaps

Critical Snap Permissions to Watch Out For

PermissionWhat It AllowsRisk Level
Account-management (Keyring API) SnapRegisters Snap-controlled accounts and handles their signing; a rogue one can drain those accountsCritical
endowment:ethereum-providerRead-only access to a MetaMask node (cannot sign or send, but can read state and fingerprint the wallet)Low-Medium
snap_manageStateStore and retrieve persistent data (can cache stolen signatures)High
snap_getBip44Entropy_*Derive private keys from a given BIP-44 path (key compromise)Critical
endowment:network-accessMake HTTP requests (can exfiltrate data)Medium
endowment:transaction-insightSee transaction data (can monitor victims)Low-Medium

If a Snap requests key-derivation entropy (snap_getBip44Entropy / snap_getBip32Entropy) or asks to register and manage accounts, treat it as a major red flag. Legitimate Snaps rarely need such capabilities; they usually rely on reading wallet state or providing UI elements. Always check the permissions list in MetaMask’s Snap management screen.

How to Verify a Snap Before Installing

What to Do If You’ve Installed a Malicious Snap

  1. Immediately remove the Snap: Go to MetaMask settings > Snaps, find the suspicious Snap, and click the three dots to disconnect or remove it.
  2. Revoke any token approvals: Use a tool like revoke.cash or etherscan.io/tokenapprovalchecker to remove approvals the Snap may have created.
  3. Transfer assets to a new wallet: If you suspect the Snap accessed your private key or signed malicious transactions, move all funds and NFTs to a different address generated from a fresh seed phrase.
  4. Change seed phrase: If the Snap requested snap_getBip44Entropy_* (see permission table), your private key is compromised. Generate a new wallet and never reuse the old one.
  5. Monitor for lingering permissions: Check MetaMask’s Snap management to ensure no residual permissions remain. Some Snaps can hide themselves.
  6. Report the Snap: Notify MetaMask via their bug bounty program and share details on crypto security forums (e.g., reddit.com/r/ethereum) to warn others.

Comparison: Traditional Signature Phishing vs. Snap-Based Phishing

AspectTraditional Signature PhishingSnap-Based Phishing
Attack vectorFake website or dApp pretending to be legitimateMalicious Snap installed inside MetaMask
User interactionUser must sign a message or approve a transaction on a phishing siteUser grants permissions during Snap installation; subsequent signatures are automatic
VisibilityRequires user to visit a phishing URL and be tricked by a UIOperates inside the user’s own wallet interface, harder to detect
Recovery difficultyModerate: revoke approvals, change passwordsHigh: may compromise private key or persistent permissions across sessions
Typical permission requestedeth_signTypedData for token approvals, eth_sendTransactionsnap_getBip44Entropy, account-management (Keyring) permissions, endowment:network-access

Snap-based phishing is more dangerous because it operates within a trusted environment. The user is not prompted repeatedly; once permissions are granted, the Snap can act autonomously. Traditional phishing still relies on continuous user error or one-time signing of a malicious message. In contrast, a Snap can exfiltrate data or drain the wallet over time without the user’s knowledge.

Future of Snap Security: How MetaMask and the Community Are Responding

MetaMask has introduced several security enhancements to counter Snap phishing. Newer versions require Snaps to declare permissions explicitly in the manifest with human-readable descriptions. The wallet also shows a permission summary during installation, and can flag suspicious permissions (e.g., key-derivation entropy is now highlighted as dangerous).

Community tools like Snap Security Scanner (community-built) allow users to input a Snap URL and receive a risk assessment based on permissions. Some projects are working on dynamic permission enforcement, where Snaps cannot use signature permissions without user confirmation through a separate dialog.

Despite these improvements, attackers evolve quickly. Social engineering remains the biggest vulnerability. As Snaps gain adoption, the attack surface will grow. Users must stay educated and treat every Snap installation as a potential risk. The community and MetaMask are focusing on sandboxing, permission whitelists, and real-time threat detection.

Common mistakes to avoid

Frequently asked questions

What is the most dangerous Snap permission for phishing?

Snaps cannot call eth_sign or eth_sendTransaction on your existing accounts, so the most dangerous permissions are key-derivation entropy (snap_getBip44Entropy / snap_getBip32Entropy), which lets a Snap reconstruct your private keys, and account-management (Keyring API) permissions, which let a Snap control accounts and their signing. Treat either as a wallet-draining risk.

Can a malicious Snap steal my seed phrase?

Yes, if the Snap requests snap_getBip44Entropy_60 (for Ethereum) or similar permissions, it can derive the private key from the seed. Always treat such permissions as a red flag.

How do I revoke a Snap’s permissions after uninstalling?

Go to MetaMask settings > Snaps, click the Snap name, and press 'Disconnect' or 'Remove'. Then ensure no underlying token approvals remain by using revoke.cash. If the Snap had private key access, create a new wallet.

Are Snap scams common in 2025?

Yes, they are increasing as Snaps gain adoption. Attackers target early adopters with fake airdrop and tooling Snaps. Reports indicate millions lost annually, so vigilance is essential.

Track the entities behind the concepts

DeFi Intel maps 11,000+ protocols, tokens and companies to a typed knowledge graph — with live data, incidents and regulation.

Entities mentioned