Mend.io Vulnerability Database
The largest open source vulnerability database
What is a Vulnerability ID?
New vulnerability? Tell us about it!
CVE-2026-48722
Published:July 01, 2026
Updated:July 05, 2026
Impact "nextflow auth login" persists Seqera Platform OIDC tokens to "${NXF_HOME:-~/.nextflow}/seqera-auth.config". The file is created via Java NIO without specifying file permissions, so under the default "umask 022" it lands at mode "0644" (world-readable). On a multi-user POSIX host — typically an HPC login node, shared workstation, or jump host — any local user able to traverse the victim's home directory can read the file and obtain a valid Platform bearer token, enabling impersonation against Seqera Platform within the token's scope. Single-user systems and headless CI runners, which do not invoke the interactive login flow, are not affected. Affected versions: "25.09.2-edge" through "26.04.1". Patches Fixed in "<PATCHED_VERSION>". The patched code applies mode "0600" to "seqera-auth.config" immediately after writing it, and re-applies on every subsequent login so any pre-existing world-readable copy left by an earlier version is tightened. Tokens previously stored in the file must be treated as disclosed. After upgrading, run "nextflow auth logout", revoke the token in the Seqera Platform UI, and run "nextflow auth login" again. Workarounds Restrict the file and its parent directory: "chmod 600 "${NXF_HOME:-$HOME/.nextflow}/seqera-auth.config"" "chmod 700 "${NXF_HOME:-$HOME/.nextflow}"" Alternatively, supply the Platform token via the "TOWER_ACCESS_TOKEN" environment variable instead of running "nextflow auth login". References - https://cwe.mitre.org/data/definitions/276.html
Affected Packages
https://github.com/nextflow-io/nextflow.git (GITHUB):
Affected version(s) >=v25.09.2-edge <v25.10.6
Fix Suggestion:
Update to version v25.10.6
https://github.com/nextflow-io/nextflow.git (GITHUB):
Affected version(s) >=v26.01.1-edge <v26.04.3
Fix Suggestion:
Update to version v26.04.3
Do you need more information?
Contact Us
CVSS v4
Base Score:
6.8
Attack Vector
LOCAL
Attack Complexity
LOW
Attack Requirements
NONE
Privileges Required
LOW
User Interaction
NONE
Vulnerable System Confidentiality
HIGH
Vulnerable System Integrity
NONE
Vulnerable System Availability
NONE
Subsequent System Confidentiality
NONE
Subsequent System Integrity
NONE
Subsequent System Availability
NONE
CVSS v3
Base Score:
5.5
Attack Vector
LOCAL
Attack Complexity
LOW
Privileges Required
LOW
User Interaction
NONE
Scope
UNCHANGED
Confidentiality
HIGH
Integrity
NONE
Availability
NONE
Weakness Type (CWE)
Incorrect Default Permissions
Incorrect Permission Assignment for Critical Resource