OneKey Reproduces Transaction Replacement Attack on Outdated Ledger Versions

OneKey successfully reproduced an exploit against an outdated version of the Ethereum application for Ledger hardware wallets in a controlled test environment. OneKey founder and CEO Yishi Wang reported successfully carrying out a “transaction replacement attack” against Ledger Ethereum app version 1.22.1 by exploiting a previously patched vulnerability.

Key fact: The vulnerability allows an attacker to overwrite a transaction awaiting signature while the user is still reviewing a legitimate transaction on the device screen. No Ledger user was hacked — this was a laboratory reproduction of the exploit.

⚙️ Vulnerability Mechanics: How the Transaction Replacement Attack Works

The vulnerability belongs to a class of attacks targeting the transaction-signing process in hardware wallets. An attacker can replace the contents of a transaction while the user sees one transaction on the device screen for verification but ultimately signs a different, malicious one.

🔄 The Attack Window

The transaction-signing process on a hardware wallet involves several stages:

  1. Initiation: The host application sends the transaction to the device
  2. Display: The device shows the transaction details on its screen
  3. Verification: The user checks the amount, recipient address and other parameters
  4. Signing: The user confirms the transaction using the device’s physical controls
  5. Return: The signed transaction is sent back to the host

The vulnerability in Ledger Ethereum app 1.22.1 allowed an attacker to replace the transaction between the display and signing stages. The user could see a legitimate transaction — for example, sending 0.1 ETH to another address they control — while actually signing a malicious transaction, such as transferring all available funds to the attacker.

🎯 Exploitation Requirements

According to Ledger, exploiting the vulnerability requires control over communication between the device and the host. This could potentially be achieved through:

  • Malware on the host: Malicious software running on the user’s computer
  • A compromised wallet application: Hacked or counterfeit wallet software
  • A hostile web page: A malicious website interacting with the wallet through WebUSB or WebHID

Important limitation: The vulnerability cannot be exploited remotely without prior control over the host system. This significantly reduces its practical attack surface, though it does not make the issue harmless.

🛡️ Ledger’s Response: Rapid Patching

Ledger responded quickly to disclosure of the vulnerability, releasing fixes at two different levels.

📱 Application-Level Protection — August 13

The company released Ethereum app version 1.22.2, which includes additional application-level safeguards. These protections prevent transaction replacement during the signing process even when the host system has been compromised.

🔧 Secure SDK Fix — August 21

A more fundamental fix was introduced in Secure SDK version 26.6.1. This update addresses the underlying cause of the vulnerability at the device software level, preventing this class of attack at a lower layer of the architecture.

💬 Ledger’s Official Position

Ledger published a statement on X, formerly Twitter:

“No Ledger user was hacked. What is being described here is a laboratory reproduction of a vulnerability in an outdated version of the Ethereum application.”

The company emphasized that the issue affects outdated software and does not represent a threat to users who have updated their devices and applications to current versions.

🔍 How This Differs From Seed Generation Vulnerabilities

It is important to distinguish the vulnerability reproduced by OneKey from seed phrase generation issues. This flaw affects only transaction processing during signing and is unrelated to how wallet seeds are generated.

🎲 Seed Generation Vulnerabilities — A Different Class of Risk

Seed generation flaws are generally more severe because they can potentially compromise every asset associated with a wallet:

  • Weak entropy: Insufficient randomness during seed generation
  • Predictability: The possibility of guessing or reconstructing a seed phrase
  • Leakage during generation: Interception of the seed while it is being created

✍️ Transaction Signing Vulnerabilities — The Current Case

Transaction-signing vulnerabilities affect specific operations rather than the underlying wallet secret:

  • Transaction replacement: Substituting transaction contents during signing
  • Blind signing: Signing transactions without fully verifying their details
  • Replay attacks: Reusing previously signed transactions

Critical distinction: A transaction replacement vulnerability requires active user participation at the time of the attack as well as control over the host environment. Seed generation flaws can compromise the entire wallet without any additional action from the user.

🏭 OneKey’s Role in Disclosing the Vulnerability

OneKey, a competing hardware wallet manufacturer, played an important role in identifying and demonstrating the issue. The company reproduced the exploit in a controlled environment, helping Ledger assess the practical scope of the problem and deploy fixes.

🤝 Responsible Disclosure

The vulnerability disclosure process followed responsible disclosure principles:

  1. Discovery: OneKey identified the vulnerability during its own security research
  2. Reproduction: Researchers created a proof-of-concept in laboratory conditions
  3. Notification: Ledger was informed about the issue
  4. Coordination: Public disclosure timing was coordinated
  5. Publication: Details were released after patches became available

🔬 Significance for the Industry

OneKey’s actions demonstrate the importance of independent security research across the cryptocurrency industry:

  • Constructive competition: Competitors can help improve each other’s security
  • Transparency: Open discussion of vulnerabilities strengthens trust
  • Collective security: Improvements benefit the broader ecosystem

📊 Context: Hardware Wallet Security in 2026

The Ledger incident comes amid increased scrutiny of hardware wallet security following a series of issues across the industry in 2025 and 2026.

🎯 Major Hardware Wallet Attack Vectors

Modern attacks against hardware wallets can target several layers:

  • Supply chain attacks: Compromise during manufacturing or delivery
  • Physical attacks: Side-channel attacks, glitching and electromagnetic analysis
  • Software vulnerabilities: Bugs in firmware and wallet applications
  • Social engineering: Phishing, fake updates and fraudulent websites
  • Host attacks: Malware, compromised software and malicious browser extensions

🛡️ Evolution of Defensive Mechanisms

Hardware wallet manufacturers continue to improve protection through:

  • Secure elements: Specialized chips for storing keys
  • Verified boot: Firmware integrity checks during startup
  • Transaction verification: Full display of transaction details on the device
  • Anti-phishing mechanisms: Additional checks for verifying legitimate interactions
  • Regular updates: Continuous security patches and improvements

2026 trend: The industry is moving toward a defense-in-depth model in which every layer of the system has its own protection mechanisms, creating multiple barriers against compromise.

🔐 Recommendations for Ledger Users

Although Ledger says no users were hacked through this vulnerability, the incident highlights the importance of proactive security practices.

⚡ Immediate Actions

  1. Update firmware: Make sure your device is running the latest available firmware and security components
  2. Update applications: Confirm that the Ethereum app is version 1.22.2 or newer
  3. Check versions: Use Ledger Live to verify that all device applications are current
  4. Install security updates promptly: Do not postpone critical wallet software updates

🛡️ General Security Practices

  1. Protect the host: Keep your computer free from malware and suspicious software
  2. Use official software: Download Ledger Live only from official Ledger sources
  3. Verify URLs: Make sure you are visiting the legitimate Ledger website
  4. Be cautious with extensions: Avoid suspicious browser extensions
  5. Audit transactions: Periodically review your transaction history for anomalies

🔍 Signs of Possible Compromise

Potential warning signs include:

  • Unexpected transactions: Transfers you did not initiate
  • Unusual device behavior: Unexpected messages or prompts on the hardware wallet
  • Connection problems: Strange errors while interacting with the host
  • Interface changes: Ledger Live appearing different from its normal interface

🏗️ Architectural Lessons for Developers

The Ledger incident provides important lessons for developers of hardware wallets and blockchain applications.

🔒 Secure Design Principles

  1. Minimize trust: Reduce reliance on the host system as much as possible
  2. Verify everything: Validate all externally supplied data
  3. Atomic operations: Ensure critical operations cannot be altered midway through execution
  4. Clear user feedback: Clearly display exactly what the user is approving
  5. Defense in depth: Use multiple independent layers of protection

🧪 Security Testing

Effective security testing should include:

  • Fuzzing: Testing with malformed and unexpected input
  • Penetration testing: Active attempts to compromise the system
  • Code review: Thorough analysis of source code
  • Formal verification: Mathematical verification of critical properties
  • Bug bounty programs: Incentivizing external researchers to identify vulnerabilities

Key principle: Security is not a fixed state but a continuous process. Even the strongest systems can contain vulnerabilities, making rapid detection and remediation essential.

🌐 Impact on Trust in Hardware Wallets

Public disclosure of vulnerabilities can influence how both retail users and institutional investors perceive hardware wallet security.

📈 Positive Effects of Disclosure

  • Transparency: Open discussion of problems can strengthen trust
  • Rapid remediation: Demonstrates mature security processes
  • Community involvement: External experts improve overall security
  • Continuous improvement: Shows commitment to strengthening the product

📉 Potential Risks

  • Loss of confidence: Some users may question the security of the device
  • Competitive pressure: Rivals may use incidents in marketing
  • Regulatory scrutiny: Authorities may increase oversight
  • User migration: Some customers may switch to competing products

💡 Balancing Transparency and Security

The industry continues to search for the right balance between:

  • Transparency about vulnerabilities and maintaining user confidence
  • Rapid fixes and thorough testing
  • Innovation and stability
  • Competition and cooperation on security issues

🔮 The Future of Hardware Wallet Security

The Ledger incident is likely to accelerate the adoption of more sophisticated security mechanisms in hardware wallets.

🚀 Technology Trends

  • Multi-signature by default: Requiring multiple approvals for critical operations
  • Biometric authentication: Adding biometric verification as another security layer
  • Secure enclaves: Isolated environments for sensitive operations
  • Zero-knowledge proofs: Verifying actions without exposing unnecessary information
  • AI-powered monitoring: Automated anomaly detection

🏛️ Regulatory Developments

Regulatory attention is also likely to increase:

  • Security standards: Development of mandatory hardware wallet security requirements
  • Certification requirements: Formal certification of devices and components
  • Incident reporting: Mandatory reporting of security incidents
  • Consumer protection: Stronger protections for users

👥 Evolution of User Behavior

Users are also becoming more security-conscious:

  • Regular updates: Greater awareness of the importance of timely patches
  • Verification habits: More careful review of transaction details
  • Diversification: Using multiple wallets for different purposes
  • Education: Greater interest in security best practices

Outlook: By 2027, hardware wallets are likely to become significantly more resilient through a combination of improved hardware design, more sophisticated software protections and better-informed users.

📚 Educational Resources for Users

A wide range of educational materials is available for users who want to improve their security awareness.

🎓 Official Ledger Resources

  • Ledger Academy: Educational materials covering cryptocurrency security
  • Security blog: Regular publications about emerging threats
  • Video tutorials: Instructions for safe device use
  • Community forums: Discussions and experience sharing with other users

🌐 Independent Resources

  • Crypto security blogs: Specialized publications focused on wallet and blockchain security
  • YouTube channels: Educational content about cryptocurrency security
  • Podcasts: Discussions about cryptocurrencies and cybersecurity
  • Online courses: Training on blockchain and wallet security

🛠️ Practical Tools

  • Security checklists: Step-by-step wallet security reviews
  • Transaction simulators: Tools for previewing transaction outcomes
  • Wallet analyzers: Services for inspecting wallet security and activity
  • Threat intelligence feeds: Sources of up-to-date information about emerging threats

💎 Conclusion: Security as a Continuous Process

The transaction replacement vulnerability in Ledger Ethereum app 1.22.1 demonstrates that even leading hardware wallet manufacturers are not immune to security issues. At the same time, rapid discovery, transparent disclosure and prompt remediation show the growing maturity of security processes across the industry.

Key lessons from the incident include:

  1. Vulnerabilities are inevitable: Even well-designed systems can contain flaws
  2. Response speed matters: Rapid remediation minimizes practical risk
  3. Transparency strengthens trust: Open discussion is generally better than concealing problems
  4. Updates are essential: Keeping wallet software current is a critical security practice
  5. Defense in depth works: Multiple protective layers reduce the impact of individual vulnerabilities

For Ledger users, the incident is another reminder to keep devices and applications updated and maintain strong overall security hygiene. Although exploitation required control over the host system, significantly reducing the practical attack surface, the issue demonstrates why hardware wallet security cannot be considered in isolation from the computer and software environment around it.

Strategic lesson: In a world where threats constantly evolve, security is not a product that can be purchased once. It is an ongoing process that requires continuous attention and adaptation.

For the broader industry, the case demonstrates the value of collaboration between companies, researchers and users. OneKey, despite being a Ledger competitor, played a constructive role in strengthening security across the hardware wallet ecosystem, ultimately benefiting users of every platform.

The future of hardware wallet security depends on continued innovation, transparency and education. Manufacturers will keep improving technical defenses, users will become increasingly security-conscious, and the industry as a whole will continue developing stronger standards and best practices.

Despite its seriousness, the Ledger incident provides another opportunity for the ecosystem to reassess security assumptions and improve its practices. Every vulnerability that is responsibly disclosed and fixed contributes to collective knowledge and helps create a safer environment for cryptocurrency users.

Ultimately, the maturity of the crypto industry will not be measured by the complete absence of security incidents, but by its ability to prevent them where possible, respond rapidly when they occur and learn enough from each one to reduce the likelihood of future failures. In that respect, the Ledger incident shows an ecosystem moving toward stronger, more transparent and more resilient security practices.

“Security is not a destination, but a journey. In cryptography, the winners are not those who never encounter vulnerabilities, but those who prepare for them, respond quickly and learn from every incident.”

— Bruce Schneier, renowned cryptographer and security expert

29.08.2026, 01:26