CVE-2026-47721

MEDIUMPre-NVD 6.36.3
EchelonGraph scoreLOW confidence

Score 6.3 from GitHub Security Advisory published 2026-06-08. the CNA's CVSS baseline 6.3; sources differ by 0.0.

Triggered by: GitHub Security Advisory CVSS
Sources: cna:github_m, epss, ghsa
6.3
EchelonGraph verdictMonitorLow exploitation likelihood right now — keep watching.
  • Lower severity and no public exploit yet
CISA-KEV: Not listedEPSS: 0%CVSS: 6.3Exploit: NoneExposed: 0

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

FUXA's scheduler API missing admin check enables operator-to-admin escalation via scheduled device actions

Summary

An authorization issue in the Scheduler API allowed authenticated non-admin users to create or modify scheduled actions that should be restricted to administrators.

Details

The Scheduler API did not correctly enforce administrator permissions when processing scheduler modifications.

As a result, authenticated users with non-administrative roles could create or modify scheduled actions that execute privileged operations, including device value changes and server-side script execution.

The issue was fixed in version 1.3.2 by enforcing the appropriate permission checks for scheduler modifications.

Impact

An operator-level user in FUXA reaches the PLC-write and server-side-script-execution surface that the platform otherwise restricts to administrators. In a SCADA deployment those two privileges cover setpoint control and the automation scripting engine. Alice schedules a job that rewrites a pump's enable tag, opens a safety interlock, or runs a project script that walks the device tree. The scheduled-action model extends the attack: Alice does not need to keep a session open for the action to fire, and a repeating schedule re-applies her changes every cycle even if an admin reverts them manually.

CVSS 3.1: AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:L/A:L (Medium, 6.3). CWE-862.

Recommended Fix

Add authJwt.haveAdminPermission(permission) to both POST /api/scheduler and DELETE /api/scheduler, matching every other write endpoint that reaches runtime.devices.setTagValue or runtime.scriptsMgr.runScript.

schedulerApp.post("/api/scheduler", secureFnc, function(req, res) {
    if (res.statusCode === 403) {
        runtime.logger.error("api post scheduler: Tocken Expired");
        return;
    }
    const permission = checkGroupsFnc(req);
    const isGuest = authJwt.isGuestUser(req.userId, req.userGroups);
    if (runtime.settings?.secureEnabled && (isGuest || !authJwt.haveAdminPermission(permission))) {
        res.status(401).json({error:"unauthorized_error", message: "Unauthorized!"});
        runtime.logger.error("api post scheduler: admin permission required");
        return;
    }
    // ... rest unchanged ...
});

Apply the same change to the delete handler at server/api/scheduler/index.js:102-112. As defense in depth, the scheduler service should also validate each deviceActions entry against the creator's stored groups before execution (e.g., reject onRunScript on any scheduler whose author is not an admin at execution time).


A fix is available at https://github.com/frangoteam/FUXA/releases/tag/v1.3.2.


*Found by aisafe.io*

CVSS v3
6.3
EG Score
6.3(low)
EG Risk
EPSS
15.3%
KEV
Not listed

Published

June 8, 2026

Last Modified

June 8, 2026

Vendor Advisories for CVE-2026-47721(1)

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

Patch Availability(1)

Vendor / EcosystemFixed in / PatchReleasedSource
npmfuxa-serverghsa

Patches are aggregated from vendor advisories (Red Hat, Microsoft, Cisco, GitHub) and package ecosystems (OSV, GHSA). Multiple rows for the same upstream release have been deduplicated.

Affected Packages

(1 across 1 ecosystem)
npm(1)
PackageVulnerable rangeFixed inDependents
fuxa-server

Weakness Classification(1)

MITRE Common Weakness Enumeration — the root-cause categories this CVE belongs to.

Data Freshness Timeline

(refreshed 0× in last 7d / 19× 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-15 20:31 UTCGHSA enrichment
  2. 2026-07-14 02:42 UTCGHSA enrichment
  3. 2026-07-11 21:13 UTCGHSA enrichment
  4. 2026-07-10 21:24 UTCGHSA enrichment
  5. 2026-07-09 03:58 UTCGHSA enrichment
  6. 2026-07-08 02:37 UTCGHSA enrichment
  7. 2026-07-05 17:16 UTCGHSA enrichment
  8. 2026-07-04 16:01 UTCGHSA enrichment
  9. 2026-07-03 16:09 UTCGHSA enrichment
  10. 2026-07-02 16:09 UTCGHSA enrichment
  11. 2026-07-01 16:17 UTCGHSA enrichment
  12. 2026-06-30 16:24 UTCGHSA enrichment
  13. 2026-06-29 14:55 UTCGHSA enrichment
  14. 2026-06-28 15:05 UTCGHSA enrichment
  15. 2026-06-27 15:14 UTCGHSA enrichment
  16. 2026-06-26 15:23 UTCGHSA enrichment
  17. 2026-06-25 15:34 UTCGHSA enrichment
  18. 2026-06-24 15:41 UTCGHSA enrichment
  19. 2026-06-23 15:51 UTCGHSA enrichment
  20. 2026-06-22 05:40 UTCGHSA enrichment
  21. 2026-06-21 02:00 UTCGHSA enrichment
  22. 2026-06-19 23:12 UTCGHSA enrichment
  23. 2026-06-18 21:37 UTCGHSA enrichment
  24. 2026-06-17 21:47 UTCGHSA enrichment
  25. 2026-06-16 21:57 UTCGHSA enrichment
Show 12 more
  1. 2026-06-15 22:06 UTCGHSA enrichment
  2. 2026-06-14 23:18 UTCEPSS rescore
  3. 2026-06-14 22:07 UTCGHSA enrichment
  4. 2026-06-13 23:00 UTCEPSS rescore
  5. 2026-06-13 22:18 UTCGHSA enrichment
  6. 2026-06-12 23:12 UTCEPSS rescore
  7. 2026-06-12 22:26 UTCGHSA enrichment
  8. 2026-06-11 22:36 UTCGHSA enrichment
  9. 2026-06-10 22:46 UTCGHSA enrichment
  10. 2026-06-09 22:57 UTCGHSA enrichment
  11. 2026-06-08 23:08 UTCEG score recompute
  12. 2026-06-08 23:08 UTCGHSA enrichment

Frequently asked(5)

What is CVE-2026-47721?
CVE-2026-47721 is a medium vulnerability published on June 8, 2026. FUXA's scheduler API missing admin check enables operator-to-admin escalation via scheduled device actions Summary An authorization issue in the Scheduler API allowed authenticated non-admin users to create or modify scheduled actions that should be restricted to administrators. Details The…
When was CVE-2026-47721 disclosed?
CVE-2026-47721 was first published in the National Vulnerability Database on June 8, 2026. EchelonGraph re-ingests CVE updates from NVD on a 2-hour cycle, so this page reflects the latest published state.
Is CVE-2026-47721 actively exploited?
CVE-2026-47721 is not currently on CISA's Known Exploited Vulnerabilities catalog. FIRST EPSS estimates a 15.3% percentile likelihood of exploitation in the next 30 days — higher percentiles indicate greater predicted risk.
What is the CVSS score of CVE-2026-47721?
CVE-2026-47721 has a CVSS v4.0 base score of 6.3 (CNA self-assessment; NVD's own analysis pending).
How do I remediate CVE-2026-47721?
Patch to the fixed version published by the affected vendor. Where vendor advisories exist for CVE-2026-47721, 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

See which npm, PyPI, Go, and Maven packages are affected by CVE-2026-47721

Explore →

Is Your Infrastructure Affected by CVE-2026-47721?

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