CVE-2026-24124

CVE-2026-24124 is a high-severity missing authentication for critical function vulnerability in d7y.io/dragonfly/v2 (go), affecting versions < 2.4.1. It is fixed in 2.4.1.

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

Dragonfly Manager Job API Unauthenticated Access

Impact

A critical operation is accessible without requiring any authentication. Typical impact: any user can invoke the privileged function.

Affected versions

d7y.io/dragonfly/v2 (< 2.4.1)

Security releases

d7y.io/dragonfly/v2 → 2.4.1 (go)

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

Add authentication and authorization middleware to the Job API in the manager/router/router.go file:

// Before Fix (lines 204-211)
job := apiv1.Group("/jobs")
job.POST("", middlewares.CreateJobRateLimiter(limiter), h.CreateJob)
job.DELETE(":id", h.DestroyJob)
job.PATCH(":id", h.UpdateJob)
job.GET(":id", h.GetJob)
job.GET("", h.GetJobs)

// After Fix
job := apiv1.Group("/jobs", jwt.MiddlewareFunc(), rbac)
job.POST("", middlewares.CreateJobRateLimiter(limiter), h.CreateJob)
job.DELETE(":id", h.DestroyJob)
job.PATCH(":id", h.UpdateJob)
job.GET(":id", h.GetJob)
job.GET("", h.GetJobs)

Frequently Asked Questions

  1. What is CVE-2026-24124? CVE-2026-24124 is a high-severity missing authentication for critical function vulnerability in d7y.io/dragonfly/v2 (go), affecting versions < 2.4.1. It is fixed in 2.4.1. A critical operation is accessible without requiring any authentication.
  2. Which versions of d7y.io/dragonfly/v2 are affected by CVE-2026-24124? d7y.io/dragonfly/v2 (go) versions < 2.4.1 is affected.
  3. Is there a fix for CVE-2026-24124? Yes. CVE-2026-24124 is fixed in 2.4.1. Upgrade to this version or later.
  4. Is CVE-2026-24124 exploitable, and should I be worried? Whether CVE-2026-24124 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-24124 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-24124? Upgrade d7y.io/dragonfly/v2 to 2.4.1 or later.

Other vulnerabilities in d7y.io/dragonfly/v2

Stop the waste.
Protect your environment with Kodem.