Nixpkgs security tracker

Login with GitHub

Suggestions search

With package: minio

Found 3 matching suggestions

View:
Compact
Detailed
Untriaged
Permalink CVE-2026-42600
6.9 MEDIUM
  • CVSS version (CVSS): 4.0
  • Attack Vector (AV): Network (N)
  • Attack Complexity (AC): Low (L)
  • Attack Requirement (AT): None (N)
  • Privileges Required (PR): High (H)
  • User Interaction (UI): None (N)
  • Vulnerable System Impact Confidentiality (VC): High (H)
  • Vulnerable System Impact Integrity (VI): None (N)
  • Vulnerable System Impact Availability (VA): None (N)
  • Subsequent System Impact Confidentiality (SC): None (N)
  • Subsequent System Impact Integrity (SI): None (N)
  • Subsequent System Impact Availability (SA): None (N)
  • Modified Attack Vector (MAV): Network (N)
  • Modified Attack Complexity (MAC): Low (L)
  • Modified Attack Requirement (MAT): None (N)
  • Modified Privileges Required (MPR): High (H)
  • Modified User Interaction (MUI): None (N)
  • Modified Vulnerable System Impact Confidentiality (MVC): High (H)
  • Modified Vulnerable System Impact Integrity (MVI): None (N)
  • Modified Vulnerable System Impact Availability (MVA): None (N)
  • Modified Subsequent System Impact Confidentiality (MSC): Negligible (N)
  • Modified Subsequent System Impact Integrity (MSI): Negligible (N)
  • Modified Subsequent System Impact Availability (MSA): Negligible (N)
  • Safety (S): Not Defined (X)
  • Automatable (AU): Not Defined (X)
  • Recovery (R): Not Defined (X)
  • Value Density (V): Not Defined (X)
  • Vulnerability Response Effort (RE): Not Defined (X)
  • Provider Urgency (U): Not Defined (X)
  • Confidentiality Req. (CR): Not Defined (X)
  • Integrity Req. (IR): Not Defined (X)
  • Availability Req. (AR): Not Defined (X)
  • Exploit Maturity (E): Not Defined (X)
created 1 month, 1 week ago Activity log
  • Created suggestion
MinIO: Path Traversal via msgpack Body in `ReadMultiple` Storage-REST Endpoint

MinIO is a high-performance object storage system. From RELEASE.2022-07-24T01-54-52Z to before RELEASE.2026-04-14T21-32-45Z, A path traversal vulnerability in MinIO's ReadMultiple internode storage-REST endpoint allows a caller holding the cluster root JWT to read files from outside the configured drive roots, bounded only by the MinIO process UID. The attacker sends POST minio/storage/{drivePath}/v63/rmpl with a msgpack-encoded body carrying ../ sequences in the Bucket field. The server opens the resulting path via os.OpenFile with O_RDONLY|O_NOATIME and returns its contents in the msgpack response stream. This vulnerability is fixed in RELEASE.2026-04-14T21-32-45Z.

Affected products

minio
  • ==>= RELEASE.2022-07-24T01-54-52Z, < RELEASE.2026-04-14T21-32-45Z

Matching in nixpkgs

pkgs.minion

Addon manager for World of Warcraft and The Elder Scrolls Online

pkgs.kminion

Feature-rich Prometheus exporter for Apache Kafka written in Go

pkgs.minio-cpp

MinIO C++ Client SDK for Amazon S3 Compatible Cloud Storage

pkgs.minio-certgen

Simple Minio tool to generate self-signed certificates, and provides SAN certificates with DNS and IP entries

Published
updated 2 months ago by @LeSuisse Activity log
  • Created suggestion
  • @LeSuisse ignored
    37 packages
    • minion
    • kminion
    • minio-cpp
    • minio-warp
    • minio-client
    • minio-certgen
    • minio_legacy_fs
    • perlPackages.Minion
    • perl5Packages.Minion
    • haskellPackages.minion
    • perl538Packages.Minion
    • perl540Packages.Minion
    • python312Packages.minio
    • python313Packages.minio
    • python314Packages.minio
    • haskellPackages.minio-hs
    • terraform-providers.minio
    • haskellPackages.minion-jwt
    • haskellPackages.minion-htmx
    • haskellPackages.minion-conduit
    • haskellPackages.minion-openapi3
    • perlPackages.MinionBackendRedis
    • perlPackages.MinionBackendmysql
    • haskellPackages.minion-wai-extra
    • perl5Packages.MinionBackendRedis
    • perl5Packages.MinionBackendmysql
    • perlPackages.MinionBackendSQLite
    • perl5Packages.MinionBackendSQLite
    • perl538Packages.MinionBackendRedis
    • perl538Packages.MinionBackendmysql
    • perl540Packages.MinionBackendRedis
    • perl540Packages.MinionBackendmysql
    • terraform-providers.aminueza_minio
    • perl538Packages.MinionBackendSQLite
    • perl540Packages.MinionBackendSQLite
    • home-assistant-component-tests.minio
    • tests.home-assistant-components.minio
  • @LeSuisse ignored
    2 maintainers
    • @bachp
    • @ryan4yin
    maintainer.ignore
  • @LeSuisse accepted
  • @LeSuisse published on GitHub
MinIO has an Unauthenticated Object Write via Query-String Credential Signature Bypass in Unsigned-Trailer Uploads

MinIO is a high-performance object storage system. Starting in RELEASE.2023-05-18T00-05-36Z and prior to RELEASE.2026-04-11T03-20-12Z, an authentication bypass vulnerability in MinIO's `STREAMING-UNSIGNED-PAYLOAD-TRAILER` code path allows any user who knows a valid access key to write arbitrary objects to any bucket without knowing the secret key or providing a valid cryptographic signature. Any MinIO deployment is impacted. The attack requires only a valid access key (the well-known default `minioadmin`, or any key with WRITE permission on a bucket) and a target bucket name. `PutObjectHandler` and `PutObjectPartHandler` call `newUnsignedV4ChunkedReader` with a signature verification gate based solely on the presence of the `Authorization` header. Meanwhile, `isPutActionAllowed` extracts credentials from either the `Authorization` header or the `X-Amz-Credential` query parameter, and trusts whichever it finds. An attacker omits the `Authorization` header and supplies credentials exclusively via the query string. The signature gate evaluates to `false`, `doesSignatureMatch` is never called, and the request proceeds with the permissions of the impersonated access key. This affects `PutObjectHandler` (standard and tables/warehouse bucket paths) and `PutObjectPartHandler` (multipart uploads). Users of the open-source `minio/minio` project should upgrade to MinIO AIStor `RELEASE.2026-04-11T03-20-12Z` or later. If upgrading is not immediately possible, block unsigned-trailer requests at the load balancer. Reject any request containing `X-Amz-Content-Sha256: STREAMING-UNSIGNED-PAYLOAD-TRAILER` at the reverse proxy or WAF layer. Clients can use `STREAMING-AWS4-HMAC-SHA256-PAYLOAD-TRAILER` (the signed variant) instead. Alternatively, restrict WRITE permissions. Limit `s3:PutObject` grants to trusted principals. While this reduces the attack surface, it does not eliminate the vulnerability since any user with WRITE permission can exploit it with only their access key.

Affected products

minio
  • ==>= RELEASE.2023-05-18T00-05-36Z, < RELEASE.2026-04-11T03-20-12Z

Matching in nixpkgs

Ignored packages (37)

pkgs.minion

Addon manager for World of Warcraft and The Elder Scrolls Online

pkgs.kminion

Feature-rich Prometheus exporter for Apache Kafka written in Go

pkgs.minio-cpp

MinIO C++ Client SDK for Amazon S3 Compatible Cloud Storage

pkgs.minio-certgen

Simple Minio tool to generate self-signed certificates, and provides SAN certificates with DNS and IP entries

Package maintainers

Ignored maintainers (2)
Published
updated 2 months ago by @LeSuisse Activity log
  • Created suggestion
  • @LeSuisse ignored
    37 packages
    • minion
    • kminion
    • minio-cpp
    • minio-warp
    • minio-client
    • minio-certgen
    • minio_legacy_fs
    • perlPackages.Minion
    • perl5Packages.Minion
    • haskellPackages.minion
    • perl538Packages.Minion
    • perl540Packages.Minion
    • python312Packages.minio
    • python313Packages.minio
    • python314Packages.minio
    • haskellPackages.minio-hs
    • terraform-providers.minio
    • haskellPackages.minion-jwt
    • haskellPackages.minion-htmx
    • haskellPackages.minion-conduit
    • haskellPackages.minion-openapi3
    • perlPackages.MinionBackendRedis
    • perlPackages.MinionBackendmysql
    • haskellPackages.minion-wai-extra
    • perl5Packages.MinionBackendRedis
    • perl5Packages.MinionBackendmysql
    • perlPackages.MinionBackendSQLite
    • perl5Packages.MinionBackendSQLite
    • perl538Packages.MinionBackendRedis
    • perl538Packages.MinionBackendmysql
    • perl540Packages.MinionBackendRedis
    • perl540Packages.MinionBackendmysql
    • terraform-providers.aminueza_minio
    • perl538Packages.MinionBackendSQLite
    • perl540Packages.MinionBackendSQLite
    • home-assistant-component-tests.minio
    • tests.home-assistant-components.minio
  • @LeSuisse ignored
    2 maintainers
    • @bachp
    • @ryan4yin
    maintainer.ignore
  • @LeSuisse accepted
  • @LeSuisse published on GitHub
MinIO has an Unauthenticated Object Write via Missing Signature Verification in Unsigned-Trailer Uploads

MinIO is a high-performance object storage system. Starting in RELEASE.2023-05-18T00-05-36Z and prior to RELEASE.2026-04-11T03-20-12Z, an authentication bypass vulnerability in MinIO's Snowball auto-extract handler (`PutObjectExtractHandler`) allows any user who knows a valid access key to write arbitrary objects to any bucket without knowing the secret key or providing a valid cryptographic signature. Any MinIO deployment is impacted. The attack requires only a valid access key (the well-known default `minioadmin`, or any key with WRITE permission on a bucket) and a target bucket name. When `authTypeStreamingUnsignedTrailer` support was added, the new auth type was handled in `PutObjectHandler` and `PutObjectPartHandler` but was never added to `PutObjectExtractHandler`. The snowball auto-extract handler's `switch rAuthType` block has no case for `authTypeStreamingUnsignedTrailer`, so execution falls through with zero signature verification. The `isPutActionAllowed` call before the switch extracts the access key and checks IAM permissions, but does not verify the cryptographic signature. An attacker sends a PUT request with `X-Amz-Content-Sha256: STREAMING-UNSIGNED-PAYLOAD-TRAILER`, `X-Amz-Meta-Snowball-Auto-Extract: true`, and an `Authorization` header containing a valid access key with a completely fabricated signature. The request is accepted and the tar payload is extracted into the bucket. Users of the open-source minio/minio project should upgrade to MinIO AIStor RELEASE.2026-04-11T03-20-12Z or later. If upgrading is not immediately possible, block unsigned-trailer requests at the load balancer. Reject any request containing X-Amz-Content-Sha256: STREAMING-UNSIGNED-PAYLOAD-TRAILER at the reverse proxy or WAF layer. Clients can use STREAMING-AWS4-HMAC-SHA256-PAYLOAD-TRAILER (the signed variant) instead. Alternatively, restrict WRITE permissions. Limit s3:PutObject grants to trusted principals. While this reduces the attack surface, it does not eliminate the vulnerability since any user with WRITE permission can exploit it with only their access key.

Affected products

minio
  • ==>= RELEASE.2023-05-18T00-05-36Z, < RELEASE.2026-04-11T03-20-12Z

Matching in nixpkgs

Ignored packages (37)

pkgs.minion

Addon manager for World of Warcraft and The Elder Scrolls Online

pkgs.kminion

Feature-rich Prometheus exporter for Apache Kafka written in Go

pkgs.minio-cpp

MinIO C++ Client SDK for Amazon S3 Compatible Cloud Storage

pkgs.minio-certgen

Simple Minio tool to generate self-signed certificates, and provides SAN certificates with DNS and IP entries

Package maintainers

Ignored maintainers (2)