CVE-2025-69287 is a medium-severity (CVSS 5.4) CWE-573 vulnerability in @bsv/sdk. A fix is available for @bsv/sdk — see the affected versions and patch details below.
BSV Blockchain SDK has an Authentication Signature Data Preparation Vulnerability
Exploitation Status
Proof-of-concept exploit code exists
- CISA’s SSVC triage found public proof-of-concept exploit code for this CVE, though no confirmed active exploitation.
Exploitation and automatability from CISA’s SSVC triage for CVE-2025-69287.
EPSS Exploitation Probability
EPSS (Exploit Prediction Scoring System) is a daily probability model maintained by FIRST.org. It estimates the likelihood a CVE will be exploited in production environments within the next 30 days, derived from real-world threat intelligence signals.
How urgent is this, really
CVE-2025-69287 plotted by exploitation likelihood (EPSS) against impact (CVSS). The shaded corner — EPSS 50%+ and CVSS 7.0+ — is where this CVE doesn't sit, though severity or exploitability alone can still warrant action.
Where this sits among everything scored
Of 378,156 CVEs with a current EPSS score, this one falls in the < 10% band (highlighted). Real counts from FIRST.org, not a sample — log-scaled since the landscape is heavily right-skewed.
Real-World Exposure
How broadly this vulnerability is actually deployed: weekly install volume shows current usage, and reverse-dependency count shows how many other packages break if it stays unpatched.
@bsv/sdknpmDescription
BRC-104 Authentication Signature Data Preparation Vulnerability
Summary
A critical cryptographic vulnerability in the TypeScript SDK's BRC-104 authentication implementation caused incorrect signature data preparation, resulting in signature incompatibility between SDK implementations and potential authentication bypass scenarios.
Details
The vulnerability was located in the Peer.ts file of the TypeScript SDK, specifically in the processInitialRequest and processInitialResponse methods where signature data is prepared for BRC-104 mutual authentication.
Vulnerable Code Locations:
ts-sdk/src/auth/Peer.tslines 527-531 (signing)ts-sdk/src/auth/Peer.tslines 584-590 (verification)
Root Cause: The TypeScript SDK incorrectly prepared signature data by:
- Concatenating base64-encoded nonce strings:
message.initialNonce + sessionNonce - Then decoding the concatenated base64 string:
base64ToBytes(concatenatedString)
This produced ~32-34 bytes of signature data instead of the correct 64 bytes.
Buggy Implementation (Before Fix):
// CRITICAL BUG: Concatenating base64 strings before decoding
data: Peer.base64ToBytes(message.initialNonce + sessionNonce)
Correct Implementation (After Fix): The fix properly decodes each base64 nonce individually, then concatenates the byte arrays:
data: [
...Peer.base64ToBytes(message.initialNonce),
...Peer.base64ToBytes(sessionNonce)
]
Why This is Critical: 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
- Cross-implementation authentication fails
- An attacker could potentially exploit this to bypass authentication checks
PoC
The cross-language test suite demonstrates this vulnerability:
- Setup: Use identical nonces and cryptographic inputs across TypeScript, Python, and Go SDKs
- Vulnerable behavior: TypeScript SDK produces different signature data than Go/Python reference implementations
- Impact demonstration: Authentication attempts between TypeScript clients and Go/Python servers fail due to signature mismatch
Test Evidence:
// Buggy approach (produces ~32-34 bytes)
const concatenatedB64 = INITIAL_NONCE_B64 + SESSION_NONCE_B64;
const buggyResult = Array.from(Buffer.from(concatenatedB64, 'base64'));
// Correct approach (produces 64 bytes)
const correctResult = [...INITIAL_NONCE_BYTES, ...SESSION_NONCE_BYTES];
Base64 Padding Short Circuit Analysis:
The vulnerability occurs because base64 padding characters (=) act as early termination signals for base64 decoders. When concatenating base64 strings before decoding:
- Individual nonces: Each 44-character base64 string decodes to 32 bytes
- Concatenated string: 88-character string containing padding in the middle
- Decoding result: Base64 decoder stops at the first
=padding character, producing only 32 bytes instead of 64
Example with test data:
INITIAL_NONCE_B64:"QUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUE="(44 chars → 32 bytes)SESSION_NONCE_B64:"QkJCQkJCQkJCQkJCQkJCQkJCQkJCQkJCQkJCQkJCQkI="(44 chars → 32 bytes)- Concatenated:
"QUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUE=QkJCQkJCQkJCQkJCQkJCQkJCQkJCQkJCQkJCQkJCQkI=" - Buggy decode: Only 32 bytes (decoder stops at first
=) - Correct decode: 64 bytes (32 + 32, decoded separately then concatenated)
Impact
Vulnerability Type: Cryptographic signature verification bypass
Severity: Critical (CVSS 9.1 - Critical)
Affected Systems:
- TypeScript SDK clients attempting to authenticate with Go or Python SDK servers
- Any BRC-104 implementation relying on cross-SDK compatibility
- Mutual authentication protocols using the affected signature preparation
Who is Impacted:
- Applications using the TypeScript SDK for BRC-104 authentication
- Systems requiring cross-language/SDK authentication compatibility
- Any peer-to-peer authentication scenarios where TypeScript clients communicate with non-TypeScript servers
Potential Attack Vectors:
- Authentication bypass through signature verification failure
- Man-in-the-middle attacks if authentication is silently ignored
- Denial of service through failed authentication attempts
The fix ensures all SDKs now produce identical cryptographic signatures, restoring proper mutual authentication across implementations.
Affected Packages
| Ecosystem | Package | Vulnerable range | Fix |
|---|---|---|---|
| 📦npm | @bsv/sdk | all versions | 2.0.0npm install @bsv/sdk@2.0.0 |
Detection & mitigation playbook
Open-source dependencyDetect
Scan your dependency tree (package-lock.json, pnpm-lock.yaml, requirements.txt, go.sum, etc.) for @bsv/sdk, including transitive dependencies — a direct dependency you never call can still pull in a vulnerable version.
Fix
Update @bsv/sdk to 2.0.0 or later, then make sure no transitive (indirect) dependency still pins the vulnerable range — O3 confirms CVE-2025-69287 is resolved across your whole dependency graph.
Workarounds
If you can't upgrade right away: gate or disable the affected feature, validate untrusted input at the boundary, and avoid passing attacker-controlled data into the vulnerable path. O3's runtime protection blocks exploitation in production as an interim safeguard until the upgrade lands.
How O3 protects you
O3 Security's impact-aware SCA analyses which vulnerable code paths your application actually calls, so a match like CVE-2025-69287 can be triaged on real exposure rather than presence alone.
Tailored to CVE-2025-69287. Runtime protection reduces exposure until a permanent patch is applied and verified — it complements patching, it doesn't replace it.
Frequently Asked Questions
Is CVE-2025-69287 in your dependencies?
O3 Security finds CVE-2025-69287 across npm dependencies, including transitive ones, and its impact-aware SCA ranks findings by whether your code actually calls the vulnerable path.