CVE-2026-48558

CRITICAL(10.0)KEVElevated Risk

SimpleHelp Authentication Bypass Vulnerability

Description

CVE-2026-48558 is a CRITICAL improper verification of cryptographic signature vulnerability in SimpleHelp, the popular remote support and remote access platform, carrying the maximum CVSS 3.1 score of 10.0. The flaw lies in SimpleHelp's OIDC authentication flow: when OIDC login is configured, identity tokens submitted during authentication are accepted without verifying their cryptographic signature. As a result, a remote, unauthenticated attacker can forge a token containing arbitrary identity claims and obtain a fully authenticated technician session, and in some configurations bypass multi-factor authentication entirely. Because SimpleHelp technician accounts grant remote control over connected endpoints, this authentication bypass gives an attacker a direct path to compromising every machine managed through the server, and CVE-2026-48558 is listed in CISA's Known Exploited Vulnerabilities (KEV) catalog, making prompt remediation essential.

KEV Information

Vendor
SimpleHelp
Product
SimpleHelp
Date Added
June 29, 2026
Due Date
July 2, 2026
Required Action
Apply mitigations in accordance with vendor instructions, ensuring compliance with CISA’s BOD 26-04 Prioritizing Security Updates Based on Risk (see URL in Notes) guidance and CISA’s “Forensics Triage Requirements” (see URL in Notes). Follow applicable BOD 26-04 guidance for cloud services or discontinue use of the product if mitigations are unavailable. Stakeholders are responsible for evaluating each asset's internet exposure and ensuring adherence to BOD 26-04 patching guidelines.

CVSS Score

Vector String
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:H/A:HOpen in Calculator
Attack Vector
NETWORK
Attack Complexity
LOW
Privileges Required
NONE
User Interaction
NONE
Scope
CHANGED
Confidentiality Impact
HIGH
Integrity Impact
HIGH
Availability Impact
HIGH
Exploitability Score
3.9
Impact Score
6.0

CWEs

Affected Products

VendorProductVersion
simple-helpsimplehelp< 5.5.16; 6.0

References

Weakness Type

CWE-347: Improper Verification of Cryptographic Signature

CVE-2026-48558 stems from CWE-347, where SimpleHelp does not verify the cryptographic signature of the OIDC identity tokens it receives during login. Because the signature is never validated, an attacker can craft a forged token with attacker-chosen identity claims and SimpleHelp trusts it as if it had been issued by the legitimate identity provider — the classic path by which failing to verify a signature (for example, not validating a JWT signature or accepting a token whose authenticity was never checked) collapses an authentication mechanism into an authentication bypass.

Learn more: CWE-347 — Improper Verification of Cryptographic Signature

Impact Analysis

CVE-2026-48558 carries the maximum CVSS 3.1 score of 10.0 (CRITICAL) and is remotely exploitable over the network without physical access (Attack Vector NETWORK), easy to exploit with no special conditions (Attack Complexity LOW), requires no authentication whatsoever (Privileges Required NONE), and needs no user interaction (User Interaction NONE). Because the scope is Changed, a successful attack reaches beyond the authentication component itself: forging a valid technician session lets the attacker act with the authority of a trusted SimpleHelp operator. The resulting impact is HIGH across all three dimensions — an attacker can read confidential data and session information (Confidentiality High), tamper with configurations and issue commands to managed endpoints (Integrity High), and disrupt the availability of the support platform and the systems it controls (Availability High). Since SimpleHelp is used to remotely administer downstream machines, this authentication bypass effectively hands the attacker the keys to every endpoint reachable through the server, and its presence in the KEV catalog confirms this vulnerability warrants urgent action.

Exploit Maturity

CISA has confirmed active exploitation of CVE-2026-48558 by adding it to the Known Exploited Vulnerabilities catalog, with a remediation deadline of 2026-07-02 — organizations should treat this as an in-the-wild threat rather than a theoretical one. A detailed third-party advisory and indicators of compromise for this SimpleHelp authentication bypass are publicly available from Horizon3.ai, and additional intrusion-chain context has been published by Blackpoint Cyber; the availability of public technical detail and IOCs meaningfully lowers the barrier to exploitation. The EPSS score of 0.0116 places CVE-2026-48558 around the 63rd percentile, meaning measured exploitation probability is modest in relative terms, but that statistic is outweighed by the confirmed KEV listing and the ease of a low-complexity, unauthenticated attack. The KEV ransomware status is listed as Unknown, but given that a technician session yields remote control of managed endpoints, defenders should assume this vulnerability is attractive to a broad range of threat actors and patch immediately.

Remediation

  1. Follow the CISA KEV required action. Apply mitigations in accordance with SimpleHelp's vendor instructions and CISA's BOD 26-04 guidance; for cloud-hosted or exposed instances, follow the applicable BOD 26-04 patching guidance or discontinue use of the product if mitigations are unavailable. The federal remediation deadline for CVE-2026-48558 was 2026-07-02.
  2. Upgrade to a fixed SimpleHelp release. Affected versions are 5.5.15 and prior and 6.0 pre-release builds; update to SimpleHelp 5.5.16 or later (or the corresponding fixed 6.0 release) as described in the vendor advisory at simple-help.com and the release notes.
  3. Restrict exposure while patching. Limit network access to the SimpleHelp server to trusted management networks, place it behind a VPN or reverse proxy, and — if OIDC cannot be immediately patched — consider temporarily disabling OIDC authentication in favor of a verified alternative to close the token-forgery path.
  4. Hunt for prior exploitation. Review authentication and technician-session logs for logins that do not correspond to legitimate identity-provider activity, unexpected OIDC token acceptance, or new/unrecognized technician sessions, and consult the indicators of compromise published by Horizon3.ai (see Exploit Maturity) to check for signs of abuse.
  5. Harden signature verification long-term. Ensure that any restored or reconfigured OIDC integration explicitly validates token signatures against the identity provider's published keys, rejects unsigned or "none"-algorithm tokens, and relies on well-tested cryptographic libraries rather than custom verification logic, in line with CWE-347 best practice.

Technical Details

CVE-2026-48558 is an improper verification of cryptographic signature vulnerability (CWE-347) in the OIDC authentication flow of SimpleHelp. In a correct OIDC implementation, the relying party must cryptographically verify that an identity token was signed by the trusted identity provider before honoring the claims it contains; SimpleHelp instead accepts the submitted identity token without performing this signature check, so the authenticity of the token is never established. An attacker can therefore construct a token asserting arbitrary identity claims — for example, presenting themselves as a valid technician — and SimpleHelp will establish a fully authenticated session on that basis, and in some configurations the same flaw allows multi-factor authentication to be bypassed. The CVSS vector CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:H/A:H captures why this reaches the maximum score of 10.0: the attack is network-reachable, low-complexity, entirely unauthenticated, requires no user interaction, and produces a scope change with full HIGH impact to confidentiality, integrity, and availability.

Frequently Asked Questions

Is CVE-2026-48558 being actively exploited?

Yes. CVE-2026-48558 is listed in CISA's Known Exploited Vulnerabilities catalog, confirming active exploitation in the wild, with a remediation deadline of 2026-07-02. A public third-party advisory with indicators of compromise is available from Horizon3.ai. The KEV ransomware status is currently listed as Unknown, and its EPSS score of 0.0116 sits around the 63rd percentile.

What products are affected by CVE-2026-48558?

The vulnerability affects SimpleHelp remote support software, specifically versions 5.5.15 and prior as well as 6.0 pre-release builds, when OIDC authentication is configured. Organizations running SimpleHelp should verify their version and upgrade to 5.5.16 or later (or the corresponding fixed 6.0 release). Only deployments using the OIDC authentication flow are exposed to the token-forgery path.

How do I fix CVE-2026-48558?

Follow CISA's KEV required action, apply SimpleHelp's security update, and upgrade to version 5.5.16 or later per the vendor advisory. While patching, restrict network access to the SimpleHelp server, consider temporarily disabling OIDC, and review authentication logs against the published indicators of compromise as described in the Remediation section.

How severe is CVE-2026-48558?

CVE-2026-48558 is rated CRITICAL with the maximum CVSS 3.1 score of 10.0. It permits a remote, unauthenticated attacker to bypass authentication with no user interaction and obtain a fully privileged technician session, achieving HIGH impact to confidentiality, integrity, and availability with a changed scope. Its inclusion in the KEV catalog and the availability of public exploitation details make it a top-priority vulnerability for immediate remediation.

CVSS Score

10.0
CRITICAL(10.0)

EPSS Score

EPSS Score11.48%
EPSS Percentile95.7%

Dates

PublishedJune 12, 2026
Last ModifiedJune 30, 2026
StatusAnalyzed
CVSS Versionv3.1

Need Help With Vulnerability Management?

Our security experts can help you prioritize and remediate vulnerabilities effectively.