🛡️ CVE-2026-54445 — vantage6

⚪ Unknown ✅ No Known Exploit CWE-204 NVD
N/A
CVSS Score
0 Low4 Medium7 High9 Critical10

Description

Vantage6: Set admin user and password from environment or configuration

Impact

Vantage6 currently provides an initial user with username root and password root. This is not ideal for the following reasons:

  • Attackers know that almost all vantage6 servers have a user with username root that probably has admin rights
  • The initial password is very weak and it is possible that administrators forget to reset it.

Patches

No

Workarounds

It is possible to delete the root user after it has been used to create other users

References

We could consider doing this like [mongodb](https://hub.docker.com/_/mongo)

Additional info

Luis uses the following patch to mitigate it:

```diff

diff --git a/vantage6-server/vantage6/server/__init__.py b/vantage6-server/vantage6/server/__init__.py

index ea362c1e..c6dcbbd9 100644

--- a/vantage6-server/vantage6/server/__init__.py

+++ b/vantage6-server/vantage6/server/__init__.py

@@ -618,18 +618,30 @@ class ServerApp:

# TODO use constant instead of 'Root' literal

root = db.Role.get_by_name("Root")

  • log.warn(
  • f"Creating root user: "
  • f"username={SUPER_USER_INFO['username']}, "
  • f"password={SUPER_USER_INFO['password']}"
  • )

+ # Temporary patch

+ # read initial root password from file (docker secret) if provided

+ # TODO: This is a workaround so we don't have an insecure vserver

+ # at the start. Ideally, we would provide an already hashed

+ # password. But as hashing is implemented via @validates on

+ # the field 'password', there isn't a nice way around this.

+ if os.environ.get("V6_INITIAL_ROOT_PASSWORD_FILE"):

+ with open(

+ os.environ.get("V6_INITIAL_ROOT_PASSWORD_FILE")

+ ) as password_file:

+ initial_root_password = password_file.read().strip()

+ log.info(

+ f"Creating root user with password provided via V6_INITIAL_ROOT_PASSWORD_FILE"

+ )

+ else:

+ initial_root_password = SUPER_USER_INFO["password"]

+ log.warn(f"Creating root user with default credentials!")

user = db.User(

username=SUPER_USER_INFO["username"],

roles=[root],

organization=org,

email="[email protected]",

  • password=SUPER_USER_INFO["password"],

+ password=initial_root_password,

failed_login_attempts=0,

last_login_attempt=None,

)

```

Weakness class

CVE-2026-54445 is classified as CWE-204: Observable Response Discrepancy. The product provides different responses to incoming requests in a way that reveals internal state information to an unauthorized actor outside of the intended control sphere.

Affected software

CVE-2026-54445 is recorded against 2 packages.

  • unknown
  • vantage6 (fixed in 5.0.0)

Timeline and source

Published on 17 June 2026 and last revised on 23 June 2026. No public exploit is currently recorded for this entry. Record sourced from NVD.

References

github.com
github.com
github.com

Details

Severity Unknown
CVSS Score N/A
CVSS Vector N/A
CWE CWE-204
Public Exploit ✅ No
Source NVD
Published 2026-06-17
Updated 2026-08-12
Modified 2026-06-23
Fix URL N/A

Affected Packages

Software From version Fixed in
unknown
vantage6 5.0.0

Similar Threats

Free Vulnerability Check

Is your site affected by CVE-2026-54445?

BotEraser helps you identify potentially vulnerable plugins and themes by checking your installation against CVE-2026-54445 and other known CVE records.

Scan My Site Free →

No credit card required  ·  Results in minutes

ⓘ Data Notice: The information presented above has been compiled from publicly available internet sources. Boteraser aggregates this data solely for informational purposes and does not independently classify, evaluate, or endorse any findings about the vulnerabilities listed. The accuracy and completeness of this information is the sole responsibility of the original publishers. Boteraser and its operators accept no liability for any decisions made based on this data.

Browse related advisories

All advisoriesCVECVE 2026