CVE-2026-57168

CRITICALPre-NVD 9.69.6
EchelonGraph scoreLOW confidence

This critical-severity CVE scores 9.6 under the CNA's CVSS (NVD's own analysis pending). EPSS exploit-prediction score not yet available (the EPSS model rescores nightly; freshly-published CVEs typically appear within 48 hours). GitHub Security Advisory data not yet ingested — confidence will rise once GHSA publishes (typical lag: hours to days for open-source ecosystem CVEs; never for infrastructure-only CVEs).

Triggered by: NVD CVSS baseline
Sources: cna:github_m
9.6
EchelonGraph verdictPlan a fixSerious severity, but no confirmed exploitation yet.
  • High severity, but no confirmed exploitation yet
CISA-KEV: Not listedEPSS: CVSS: 9.6Exploit: NoneExposed: 0

No vendor fix yet — apply a workaround or compensating control (WAF / firewall / segmentation) and watch for a patch.

OpenRemote Manager: removeAlarms cross-realm IDOR (bulk delete)

Summary

OpenRemote Manager is vulnerable to a cross-tenant Insecure Direct Object Reference (IDOR) in the bulk alarm deletion endpoint. An authenticated user in any realm can delete alarms belonging to other realms (tenants) by supplying arbitrary alarm IDs. The vulnerability exists because the bulk removeAlarms() method only verifies that the caller's own realm is active and accessible, but never checks whether the targeted alarm IDs belong to the caller's realm before deleting them.

This allows any user with alarm write permissions in their own realm to permanently destroy alarm records — including safety-critical and security alerts — belonging to any other tenant on the same OpenRemote installation.

------------------------------------------

[Additional Information] The singular removeAlarm() method correctly validates that the target alarm's realm matches the caller's access:

// CORRECT (singular): SentAlarm alarm = alarmService.getAlarm(alarmId); if (!isRealmActiveAndAccessible(alarm.getRealm())) { throw new ForbiddenException(...); }

The plural removeAlarms() method is missing this per-alarm realm check and only validates the caller's own realm — a check that is trivially satisfied for any authenticated user:

// VULNERABLE (plural):
public void removeAlarms(RequestParams requestParams, List alarmIds) {
    if (!isRealmActiveAndAccessible(getAuthenticatedRealmName())) {  
        throw new ForbiddenException(...);  // always passes for any auth user
    }
    List alarms = alarmService.getAlarms(alarmIds);  // no realm filter
    alarmService.removeAlarms(alarms, alarmIds);                // no realm filter
}
The underlying service queries contain no realm scoping:

// AlarmService.getAlarms(List):
    "select sa from SentAlarm sa where sa.id in :ids"
    // no realm filter

// AlarmService.removeAlarms(): "delete from SentAlarm sa where sa.id in :ids" // no realm filter

Alarm IDs are sequential auto-increment Long values (JPA @GeneratedValue), making them trivially enumerable.

[Vulnerability Type] Insecure Direct Object Reference (IDOR) / Missing Authorization CWE-639: Authorization Bypass Through User-Controlled Key CWE-862: Missing Authorization

------------------------------------------

[Vendor of Product] OpenRemote Inc. (openremote.io)

------------------------------------------

[Affected Product Code Base] OpenRemote Manager - current version as of 2026 (github.com/openremote/openremote)

------------------------------------------

[Affected Component] org.openremote.manager.alarm.AlarmResourceImpl#removeAlarms() org.openremote.manager.alarm.AlarmService#getAlarms(List) org.openremote.manager.alarm.AlarmService#removeAlarms()

File: manager/src/main/java/org/openremote/manager/alarm/AlarmResourceImpl.java File: manager/src/main/java/org/openremote/manager/alarm/AlarmService.java

------------------------------------------

[Attack Type] Remote (authenticated)

------------------------------------------

[CVE Impact Other] Cross-tenant permanent destruction of alarm records, including safety-critical and security alerts in IoT environments. Also enables cross-tenant alarm enumeration (presence disclosure of alarm IDs across all tenants).

------------------------------------------

[Attack Vectors]

  • Attacker registers or obtains any low-privilege account in any realm
on the target OpenRemote installation (or uses an existing account).
  • Attacker enumerates alarm IDs belonging to other realms by sending
bulk delete requests with sequential IDs (presence confirmed by 404 vs 200 response codes).
  • Attacker issues a single bulk delete request containing IDs of
alarms belonging to victim realm(s).
  • Alarms are permanently deleted with no authorization error.

PoC:

Tenant A (attacker) : realm = "tenant-a"
                      user  = [email protected]
                      role  = WRITE_ALARMS_ROLE

Tenant B (victim) : realm = "tenant-b" alarms with IDs 1174,1173, 1180 exist

DELETE /api/smartcity/alarm HTTP/2
Content-Type: application/json

[1174,1173, 1180] /// <- alarm ID

CVSS v3
9.6
EG Score
9.6(low)
EPSS
KEV
Not listed

Published

June 19, 2026

Last Modified

June 19, 2026

Vendor Advisories for CVE-2026-57168(1)

These vendors published their own advisory mentioning this CVE — often with vendor-specific remediation steps + affected product lists not in NVD.

Data Freshness Timeline

(refreshed 27× in last 7d / 27× in last 30d)

Each row is a source pipeline that fetched or updated this CVE on that date, with what changed. For example, "NVD update" means NVD published or revised its analysis for this CVE; "MITRE cvelistV5" means we ingested or refreshed it from the CNA feed. Most recent first.

  1. 2026-07-07 05:35 UTCEG score recompute
  2. 2026-07-07 01:37 UTCEG score recompute
  3. 2026-07-06 21:42 UTCEG score recompute
  4. 2026-07-06 17:45 UTCEG score recompute
  5. 2026-07-06 13:37 UTCEG score recompute
  6. 2026-07-06 09:30 UTCEG score recompute
  7. 2026-07-06 05:05 UTCEG score recompute
  8. 2026-07-06 01:07 UTCEG score recompute
  9. 2026-07-05 21:10 UTCEG score recompute
  10. 2026-07-05 17:12 UTCEG score recompute
  11. 2026-07-05 13:16 UTCEG score recompute
  12. 2026-07-05 09:19 UTCEG score recompute
  13. 2026-07-05 05:23 UTCEG score recompute
  14. 2026-07-05 00:43 UTCEG score recompute
  15. 2026-07-04 20:47 UTCEG score recompute
  16. 2026-07-04 16:52 UTCEG score recompute
  17. 2026-07-04 12:34 UTCEG score recompute
  18. 2026-07-04 08:39 UTCEG score recompute
  19. 2026-07-04 04:43 UTCEG score recompute
  20. 2026-07-04 00:47 UTCEG score recompute
  21. 2026-07-03 20:50 UTCEG score recompute
  22. 2026-07-03 16:54 UTCEG score recompute
  23. 2026-07-03 12:58 UTCEG score recompute
  24. 2026-07-03 08:53 UTCEG score recompute
  25. 2026-07-03 04:58 UTCEG score recompute
Show 2 more
  1. 2026-07-03 01:02 UTCEG score recompute
  2. 2026-07-02 21:06 UTCEG score recompute

Frequently asked(4)

What is CVE-2026-57168?
CVE-2026-57168 is a critical vulnerability published on June 19, 2026. OpenRemote Manager: removeAlarms cross-realm IDOR (bulk delete) Summary OpenRemote Manager is vulnerable to a cross-tenant Insecure Direct Object Reference (IDOR) in the bulk alarm deletion endpoint. An authenticated user in any realm can delete alarms belonging to other realms (tenants) by…
When was CVE-2026-57168 disclosed?
CVE-2026-57168 was first published in the National Vulnerability Database on June 19, 2026. EchelonGraph re-ingests CVE updates from NVD on a 2-hour cycle, so this page reflects the latest published state.
What is the CVSS score of CVE-2026-57168?
CVE-2026-57168 has a CVSS v4.0 base score of 9.6 (CNA self-assessment; NVD's own analysis pending). The EG score is currently aggregating — additional source signals are being incorporated as they become available..
How do I remediate CVE-2026-57168?
Patch to the fixed version published by the affected vendor. Where vendor advisories exist for CVE-2026-57168, EchelonGraph cross-links them in the Vendor Advisories panel below — those typically contain the canonical remediation steps, fixed version numbers, and any vendor-specific mitigations.

Dependency Blast Radius

Explore the affected products and dependency analysis for CVE-2026-57168

Explore →

Is Your Infrastructure Affected by CVE-2026-57168?

EchelonGraph automatically scans your cloud infrastructure and maps CVE exposure using blast radius analysis.