CVE-2026-48592

CVE-2026-48592 is a medium-severity missing authorization vulnerability in oban_web (erlang), affecting versions >= 2.12.0, < 2.12.5. It is fixed in 2.12.5.

Does this CVE actually affect you?

Kodem shows which CVEs are reachable and running in your applications, so you fix what's exploitable, not just what's listed.

Thank you! Your submission has been received!
Oops! Something went wrong while submitting the form.

Runtime intelligence, not another scanner.

Summary

oban_web missing authorization check on save-job event handler

oban_web 2.12.0 through the current unpatched release exposes a save-job LiveView event handler that performs no authorization check, allowing any authenticated user (including those with :read_only access) to overwrite a queued job's worker field with any other Oban.Worker module present in the application. On the job's next execution attempt, Oban dispatches perform/1 on the attacker-chosen module instead of the intended one.

Details

In lib/oban/web/live/jobs/detail_component.ex, the sibling event handlers for destructive actions all gate their side effects via can?/2 (cancel, delete, retry). The handle_event("save-job", params, socket) clause added in 2.12.0 has no equivalent guard. It builds a changes map from the client-supplied params (including worker, queue, priority, max_attempts, scheduled_at, tags, args) and unconditionally dispatches {:update_job, job, changes} to the parent LiveView, which writes the changes to the database.

The disabled attribute on the edit fieldset and button in the rendered HTML is advisory only. The Phoenix LiveView channel dispatches any phx-event pushed over the authenticated WebSocket regardless of what the DOM looks like, so the attacker pushes the event directly over the WebSocket without touching the UI.

The attacker is constrained to substituting an existing Oban.Worker module already loaded in the application (no code injection). The impact depends on what workers are available in the target application.

PoC

  1. Obtain an authenticated session with at minimum :read_only access to the Oban.Web dashboard.
  2. Open any job's detail panel to obtain its job ID.
  3. Push a forged save-job event over the LiveView WebSocket with "worker" set to the desired target module name.
  4. The server accepts the payload and updates the job row. On its next execution attempt, Oban invokes perform/1 on the attacker-chosen module.

References

Impact

CVSS 4.0 score 5.3 (Medium). Any application running oban_web >= 2.12.0 that exposes the dashboard to users with less than full job-management privileges is affected. The only precondition is an authenticated session with :read_only access or higher.

The application does not perform an authorization check before performing a sensitive operation. Typical impact: unauthorized access to restricted functionality or data.

Affected versions

oban_web (>= 2.12.0, < 2.12.5)

Security releases

oban_web → 2.12.5 (erlang)

Kodem intelligence

Severity tells you how bad this could be in the worst case. It does not tell you whether you are exposed. Exploitability and impact are functions of runtime truth: whether the vulnerable code is present, reachable, and actually executes in your application. A vulnerable package can sit in your dependency tree and never run.

Kodem, an Intelligent Application Security platform, uses runtime intelligence to reveal which vulnerabilities actually execute in production, so teams prioritize the ones that genuinely matter. Kodem's runtime-powered SCA identifies whether this CVE is reachable in your applications.

Already deployed Kodem?

See it in your environmentNew to Kodem? Get a demo →

Remediation advice

Upgrade oban_web to 2.12.5 or later to resolve this vulnerability.

Kodem Kai can prioritize this vulnerability in your dependency tree and generate a fix recommendation.

Frequently Asked Questions

  1. What is CVE-2026-48592? CVE-2026-48592 is a medium-severity missing authorization vulnerability in oban_web (erlang), affecting versions >= 2.12.0, < 2.12.5. It is fixed in 2.12.5. The application does not perform an authorization check before performing a sensitive operation.
  2. Which versions of oban_web are affected by CVE-2026-48592? oban_web (erlang) versions >= 2.12.0, < 2.12.5 is affected.
  3. Is there a fix for CVE-2026-48592? Yes. CVE-2026-48592 is fixed in 2.12.5. Upgrade to this version or later.
  4. Is CVE-2026-48592 exploitable, and should I be worried? Whether CVE-2026-48592 is exploitable in your environment depends on whether the vulnerable code is present and reachable. A CVSS score is a worst-case rating; it does not account for your specific deployment, configuration, or usage patterns. Kodem, an Intelligent Application Security platform, uses runtime intelligence to show which vulnerabilities actually execute in production, so you can focus on the ones that represent real risk. Get a demo
  5. What actually determines whether CVE-2026-48592 is exploitable, and how bad it is? Exploitability and impact are not fixed properties of a CVE. They depend on runtime truth: whether the vulnerable code is present, reachable, and actually executes in your application. A high CVSS score on a dependency that never runs is not the same as real risk. Kodem, an Intelligent Application Security platform, uses runtime intelligence to reveal which vulnerabilities actually execute in production, so teams prioritize the ones that genuinely matter.
  6. How do I fix CVE-2026-48592? Upgrade oban_web to 2.12.5 or later.

Other vulnerabilities in oban_web

Stop the waste.
Protect your environment with Kodem.