Join the Cyber Forum: Threat Intel on May 12, 2026 to learn how AI is reshaping threat defense.Join the Virtual Cyber Forum: Threat IntelRegister Now
Experiencing a Breach?Blog
Get StartedContact Us
SentinelOne
  • Platform
    Platform Overview
    • Singularity Platform
      Welcome to Integrated Enterprise Security
    • AI for Security
      Leading the Way in AI-Powered Security Solutions
    • Securing AI
      Accelerate AI Adoption with Secure AI Tools, Apps, and Agents.
    • How It Works
      The Singularity XDR Difference
    • Singularity Marketplace
      One-Click Integrations to Unlock the Power of XDR
    • Pricing & Packaging
      Comparisons and Guidance at a Glance
    Data & AI
    • Purple AI
      Accelerate SecOps with Generative AI
    • Singularity Hyperautomation
      Easily Automate Security Processes
    • AI-SIEM
      The AI SIEM for the Autonomous SOC
    • AI Data Pipelines
      Security Data Pipeline for AI SIEM and Data Optimization
    • Singularity Data Lake
      AI-Powered, Unified Data Lake
    • Singularity Data Lake for Log Analytics
      Seamlessly Ingest Data from On-Prem, Cloud or Hybrid Environments
    Endpoint Security
    • Singularity Endpoint
      Autonomous Prevention, Detection, and Response
    • Singularity XDR
      Native & Open Protection, Detection, and Response
    • Singularity RemoteOps Forensics
      Orchestrate Forensics at Scale
    • Singularity Threat Intelligence
      Comprehensive Adversary Intelligence
    • Singularity Vulnerability Management
      Application & OS Vulnerability Management
    • Singularity Identity
      Identity Threat Detection and Response
    Cloud Security
    • Singularity Cloud Security
      Block Attacks with an AI-Powered CNAPP
    • Singularity Cloud Native Security
      Secure Cloud and Development Resources
    • Singularity Cloud Workload Security
      Real-Time Cloud Workload Protection Platform
    • Singularity Cloud Data Security
      AI-Powered Threat Detection for Cloud Storage
    • Singularity Cloud Security Posture Management
      Detect and Remediate Cloud Misconfigurations
    Securing AI
    • Prompt Security
      Secure AI Tools Across Your Enterprise
  • Why SentinelOne?
    Why SentinelOne?
    • Why SentinelOne?
      Cybersecurity Built for What’s Next
    • Our Customers
      Trusted by the World’s Leading Enterprises
    • Industry Recognition
      Tested and Proven by the Experts
    • About Us
      The Industry Leader in Autonomous Cybersecurity
    Compare SentinelOne
    • Arctic Wolf
    • Broadcom
    • CrowdStrike
    • Cybereason
    • Microsoft
    • Palo Alto Networks
    • Sophos
    • Splunk
    • Trellix
    • Trend Micro
    • Wiz
    Verticals
    • Energy
    • Federal Government
    • Finance
    • Healthcare
    • Higher Education
    • K-12 Education
    • Manufacturing
    • Retail
    • State and Local Government
  • Services
    Managed Services
    • Managed Services Overview
      Wayfinder Threat Detection & Response
    • Threat Hunting
      World-Class Expertise and Threat Intelligence
    • Managed Detection & Response
      24/7/365 Expert MDR Across Your Entire Environment
    • Incident Readiness & Response
      DFIR, Breach Readiness, & Compromise Assessments
    Support, Deployment, & Health
    • Technical Account Management
      Customer Success with Personalized Service
    • SentinelOne GO
      Guided Onboarding & Deployment Advisory
    • SentinelOne University
      Live and On-Demand Training
    • Services Overview
      Comprehensive Solutions for Seamless Security Operations
    • SentinelOne Community
      Community Login
  • Partners
    Our Network
    • MSSP Partners
      Succeed Faster with SentinelOne
    • Singularity Marketplace
      Extend the Power of S1 Technology
    • Cyber Risk Partners
      Enlist Pro Response and Advisory Teams
    • Technology Alliances
      Integrated, Enterprise-Scale Solutions
    • SentinelOne for AWS
      Hosted in AWS Regions Around the World
    • Channel Partners
      Deliver the Right Solutions, Together
    • SentinelOne for Google Cloud
      Unified, Autonomous Security Giving Defenders the Advantage at Global Scale
    • Partner Locator
      Your Go-to Source for Our Top Partners in Your Region
    Partner Portal→
  • Resources
    Resource Center
    • Case Studies
    • Data Sheets
    • eBooks
    • Reports
    • Videos
    • Webinars
    • Whitepapers
    • Events
    View All Resources→
    Blog
    • Feature Spotlight
    • For CISO/CIO
    • From the Front Lines
    • Identity
    • Cloud
    • macOS
    • SentinelOne Blog
    Blog→
    Tech Resources
    • SentinelLABS
    • Ransomware Anthology
    • Cybersecurity 101
  • About
    About SentinelOne
    • About SentinelOne
      The Industry Leader in Cybersecurity
    • Investor Relations
      Financial Information & Events
    • SentinelLABS
      Threat Research for the Modern Threat Hunter
    • Careers
      The Latest Job Opportunities
    • Press & News
      Company Announcements
    • Cybersecurity Blog
      The Latest Cybersecurity Threats, News, & More
    • FAQ
      Get Answers to Our Most Frequently Asked Questions
    • DataSet
      The Live Data Platform
    • S Foundation
      Securing a Safer Future for All
    • S Ventures
      Investing in the Next Generation of Security, Data and AI
  • Pricing
Get StartedContact Us
CVE Vulnerability Database
Vulnerability Database/CVE-2025-69287

CVE-2025-69287: BSV Blockchain SDK Auth Bypass Flaw

CVE-2025-69287 is an authentication bypass vulnerability in BSV Blockchain SDK's BRC-104 implementation that allows attackers to circumvent authentication checks. This article covers technical details, affected versions, and fixes.

Published: February 20, 2026

CVE-2025-69287 Overview

A cryptographic vulnerability has been identified in the BSV Blockchain TypeScript SDK's BRC-104 authentication implementation. The flaw causes incorrect signature data preparation, resulting in signature incompatibility between SDK implementations and potential authentication bypass scenarios. This vulnerability affects the mutual authentication mechanism used to establish trust between peers in blockchain applications built with the TypeScript SDK.

Critical Impact

The vulnerability enables cross-implementation authentication failures and potential authentication bypass, allowing attackers to circumvent security checks in applications relying on BRC-104 mutual authentication.

Affected Products

  • BSV Blockchain TypeScript SDK versions prior to 2.0.0
  • Applications using BRC-104 mutual authentication between TypeScript and Go/Python SDK implementations

Discovery Timeline

  • 2026-02-18 - CVE CVE-2025-69287 published to NVD
  • 2026-02-19 - Last updated in NVD database

Technical Details for CVE-2025-69287

Vulnerability Analysis

The vulnerability resides in the Peer.ts file of the TypeScript SDK, specifically within the processInitialRequest and processInitialResponse methods responsible for preparing signature data during BRC-104 mutual authentication. The core issue stems from improper handling of nonce concatenation during cryptographic signature generation.

The TypeScript SDK incorrectly prepared signature data by first concatenating base64-encoded nonce strings (message.initialNonce + sessionNonce) and then decoding the concatenated base64 string using base64ToBytes(concatenatedString). This flawed approach produced approximately 32-34 bytes of signature data instead of the correct 64 bytes that other SDK implementations (Go and Python) expected.

BRC-104 authentication relies on cryptographic signatures to establish mutual trust between peers. When signature data preparation is incorrect, signatures generated by the TypeScript SDK don't match those expected by Go/Python SDKs, causing cross-implementation authentication to fail. An attacker could potentially exploit this inconsistency to bypass authentication checks in multi-SDK environments.

Root Cause

The root cause is classified under CWE-573 (Improper Following of Specification). The TypeScript SDK implementation deviated from the BRC-104 specification by incorrectly handling the byte array concatenation of nonces. Instead of separately decoding each base64-encoded nonce and concatenating the resulting byte arrays, the implementation concatenated the base64 strings first and then decoded, producing incorrect signature data length and content.

Attack Vector

The vulnerability is exploitable over the network and requires user interaction. An attacker could exploit this vulnerability in scenarios where:

  1. A system relies on cross-implementation authentication between TypeScript SDK clients and Go/Python SDK servers
  2. The attacker can initiate or intercept authentication handshakes
  3. The signature verification process can be manipulated due to the inconsistent data preparation

The incorrect signature data length (32-34 bytes vs 64 bytes) creates an asymmetry that could be leveraged to craft authentication requests that behave differently across SDK implementations.

typescript
 
     // Create signature
     const { signature } = await this.wallet.createSignature({
-      data: Peer.base64ToBytes(message.initialNonce + sessionNonce),
+      data: [
+        ...Peer.base64ToBytes(message.initialNonce),
+        ...Peer.base64ToBytes(sessionNonce)
+      ],
       protocolID: [2, 'auth message signature'],
       keyID: `${message.initialNonce} ${sessionNonce}`,
       counterparty: message.identityKey

Source: GitHub Commit d8cf693

Detection Methods for CVE-2025-69287

Indicators of Compromise

  • Authentication failures between TypeScript SDK clients and Go/Python SDK servers in BRC-104 mutual authentication flows
  • Signature verification errors with unexpected data length (32-34 bytes instead of 64 bytes)
  • Anomalous authentication patterns where requests succeed against one SDK implementation but fail against others

Detection Strategies

  • Monitor application logs for BRC-104 authentication failures, particularly signature mismatch errors
  • Implement signature data length validation to detect incorrectly formatted authentication requests
  • Track authentication success/failure rates across different SDK implementation pairs
  • Review network traffic for authentication handshakes with inconsistent nonce handling

Monitoring Recommendations

  • Enable verbose logging for BRC-104 authentication processes to capture signature generation details
  • Set up alerts for elevated rates of authentication failures between SDK implementations
  • Monitor for unusual authentication patterns that may indicate exploitation attempts

How to Mitigate CVE-2025-69287

Immediate Actions Required

  • Upgrade the BSV Blockchain TypeScript SDK to version 2.0.0 or later immediately
  • Review application logs for any historical authentication anomalies that may indicate past exploitation
  • Verify that all SDK implementations in your environment are using compatible versions
  • Test cross-implementation authentication after upgrading to confirm proper mutual authentication

Patch Information

The vulnerability has been fixed in BSV Blockchain TypeScript SDK version 2.0.0. The fix ensures all SDKs now produce identical cryptographic signatures by correctly decoding each nonce separately before concatenating the resulting byte arrays. For detailed patch information, refer to the GitHub Security Advisory GHSA-vjpq-xx5g-qvmm and the commit d8cf6930028372079d977138ae9eaa03ae2f50bb.

Workarounds

  • If immediate upgrade is not possible, consider implementing additional authentication layers outside of BRC-104
  • Temporarily restrict cross-implementation authentication to single-SDK environments where possible
  • Implement application-level signature validation that checks for correct data length (64 bytes)
bash
# Configuration example
# Upgrade BSV Blockchain TypeScript SDK to patched version
npm update @bsv/sdk@2.0.0

# Verify installed version
npm list @bsv/sdk

Disclaimer: This content was generated using AI. While we strive for accuracy, please verify critical information with official sources.

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechBsv Blockchain Sdk

  • SeverityMEDIUM

  • CVSS Score5.4

  • EPSS Probability0.05%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:L/A:L
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityLow
  • AvailabilityLow
  • CWE References
  • CWE-573
  • Technical References
  • GitHub Commit Update

  • GitHub Security Advisory GHSA-vjpq-xx5g-qvmm
  • Latest CVEs
  • CVE-2025-52793: Esselink.nu Settings CSRF Vulnerability

  • CVE-2025-52772: Virtual Moderator CSRF Vulnerability

  • CVE-2025-48279: WC MyParcel Belgium XSS Vulnerability

  • CVE-2025-39381: KiotViet Sync CSRF Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the World’s Most Advanced Cybersecurity Platform

See how our intelligent, autonomous cybersecurity platform can protect your organization now and into the future.

Try SentinelOne
  • Get Started
  • Get a Demo
  • Product Tour
  • Why SentinelOne
  • Pricing & Packaging
  • FAQ
  • Contact
  • Contact Us
  • Customer Support
  • SentinelOne Status
  • Language
  • Platform
  • Singularity Platform
  • Singularity Endpoint
  • Singularity Cloud
  • Singularity AI-SIEM
  • Singularity Identity
  • Singularity Marketplace
  • Purple AI
  • Services
  • Wayfinder TDR
  • SentinelOne GO
  • Technical Account Management
  • Support Services
  • Verticals
  • Energy
  • Federal Government
  • Finance
  • Healthcare
  • Higher Education
  • K-12 Education
  • Manufacturing
  • Retail
  • State and Local Government
  • Cybersecurity for SMB
  • Resources
  • Blog
  • Labs
  • Case Studies
  • Videos
  • Product Tours
  • Events
  • Cybersecurity 101
  • eBooks
  • Webinars
  • Whitepapers
  • Press
  • News
  • Ransomware Anthology
  • Company
  • About Us
  • Our Customers
  • Careers
  • Partners
  • Legal & Compliance
  • Security & Compliance
  • Investor Relations
  • S Foundation
  • S Ventures

©2026 SentinelOne, All Rights Reserved.

Privacy Notice Terms of Use

English