CVE-2026-65701
Deferred Deferred - Pending Action

SoftVC VITS Path Traversal in Full-Song Inference Server

Vulnerability report for CVE-2026-65701, including description, CVSS score, EPSS score, affected products, exploitability, helpful resources, and attack-flow context.

Publication date: 2026-07-23

Last updated on: 2026-07-23

Assigner: VulnCheck

Description

SoftVC VITS Singing Voice Conversion through commit 730930d contains a path traversal vulnerability in the full-song inference server that allows unauthenticated remote attackers to read and exfiltrate arbitrary files by supplying attacker-controlled filesystem paths through the audio_path field of an unauthenticated POST request to the /wav2wav route. Attackers can pass arbitrary server-side paths verbatim to librosa.load, torchaudio.load, and soundfile.write sinks, causing the server to decode and return file contents via the HTTP response body while also writing attacker-specified .wav files to arbitrary locations on the filesystem.

CVSS Scores

EPSS Scores

Probability:
Percentile:

Meta Information

Published
2026-07-23
Last Modified
2026-07-23
Generated
2026-07-23
AI Q&A
2026-07-23
EPSS Evaluated
N/A
NVD
EUVD

Affected Vendors & Products

Showing 2 associated CPEs
Vendor Product Version / Range
softvc vits 730930d
softvc vits *

Helpful Resources

Exploitability

CWE
CWE Icon
KEV
KEV Icon
CWE ID Description
CWE-22 The product uses external input to construct a pathname that is intended to identify a file or directory that is located underneath a restricted parent directory, but the product does not properly neutralize special elements within the pathname that can cause the pathname to resolve to a location that is outside of the restricted directory.

Attack-Flow Graph

AI Quick Actions

Instant insights powered by AI
Executive Summary

CVE-2026-65701 is a path traversal vulnerability in SoftVC VITS Singing Voice Conversion affecting versions up to commit 730930d. It exists in the full-song inference server's /wav2wav Flask route. Unauthenticated remote attackers can read arbitrary files by submitting attacker-controlled filesystem paths through the audio_path field in a POST request. The vulnerability occurs due to improper path validation, allowing attackers to pass arbitrary server-side paths directly to file loading and writing functions.

Detection Guidance

To detect this vulnerability, check if the SoftVC VITS Singing Voice Conversion server is running and exposed on your network. Look for active connections to the /wav2wav endpoint using tools like netstat or ss. Test for path traversal by sending a POST request with a malicious audio_path parameter pointing to sensitive files like /etc/passwd or /etc/shadow.

Example curl command to test: curl -X POST http://<target-ip>:<port>/wav2wav -H 'Content-Type: application/json' -d '{"audio_path": "/etc/passwd"}'

Impact Analysis

This vulnerability allows attackers to read sensitive files on the server, including configuration files, source code, or other confidential data. Attackers can also write arbitrary .wav files to any location on the filesystem, potentially overwriting critical system files or planting malicious content. Since the server runs without authentication and binds to 0.0.0.0, it is accessible from any network.

Compliance Impact

This vulnerability could lead to severe compliance violations. Unauthorized file access may result in exposure of personal data, violating GDPR's data protection requirements. For HIPAA, unauthorized access to protected health information could occur. Both standards require strict access controls and protection of sensitive data, which this vulnerability undermines.

Mitigation Strategies

Immediately disable or restrict access to the /wav2wav endpoint. Update the server to reject requests containing filesystem paths in the audio_path parameter. Bind the server to 127.0.0.1 instead of 0.0.0.0 to limit exposure. Remove wildcard CORS policies and implement authentication tokens.

If paths must be accepted, validate them using os.path.realpath, confine to a dedicated input directory, and write output to a controlled temporary directory.

Chat Assistant

Ask questions about this CVE
Hi! I’m here to help you understand CVE-2026-65701. Ask me anything about the vulnerability, its impact, or mitigation strategies.
0/70

EPSS Chart