CVE-2025-47909 Affecting harbor-2.11-jobservice package, versions *


Severity

Recommended
low

Based on default assessment until relevant scores are available.

Threat Intelligence

EPSS
0.03% (8th percentile)

Do your applications use this vulnerable package?

In a few clicks we can analyze your entire application and see what components are vulnerable in your application, and suggest you quick fixes.

Test your applications
  • Snyk IDSNYK-MINIMOSLATEST-HARBOR211JOBSERVICE-13325514
  • published6 Oct 2025
  • disclosed29 Aug 2025

Introduced: 29 Aug 2025

CVE-2025-47909  (opens in a new tab)

How to fix?

There is no fixed version for Minimos:latest harbor-2.11-jobservice.

NVD Description

Note: Versions mentioned in the description apply only to the upstream harbor-2.11-jobservice package and not the harbor-2.11-jobservice package as distributed by Minimos. See How to fix? for Minimos:latest relevant fixed versions and status.

Hosts listed in TrustedOrigins implicitly allow requests from the corresponding HTTP origins, allowing network MitMs to perform CSRF attacks. After the CVE-2025-24358 fix, a network attacker that places a form at http://example.com can't get it to submit to https://example.com because the Origin header is checked with sameOrigin against a synthetic URL. However, if a host is added to TrustedOrigins, both its HTTP and HTTPS origins will be allowed, because the schema of the synthetic URL is ignored and only the host is checked. For example, if an application is hosted on https://example.com and adds example.net to TrustedOrigins, a network attacker can serve a form at http://example.net to perform the attack. Applications should migrate to net/http.CrossOriginProtection, introduced in Go 1.25. If that is not an option, a backport is available as a module at filippo.io/csrf, and a drop-in replacement for the github.com/gorilla/csrf API is available at filippo.io/csrf/gorilla.