Veno File Manager 4.4.9 — Unauthenticated Email Hijack via SMTP Relay (CVE-2026-37073)
by jfs-jfs · 2026-07-05
- Severity
- Medium
- CVE
- CVE-2026-37073
- Category
- web
- Affected product
- Veno File Manager Project
- Affected versions
- 4.4.9
- Disclosed
- 2026-07-05
- Patch status
- unpatched
Tags
References
Archive entry
intelseclab/poc-archiveMetadata
| Field | Value |
|---|---|
| Date Added | 2026-07-05 |
| Last Updated | 2026-06 |
| Author / Researcher | jfs-jfs |
| CVE / Advisory | CVE-2026-37073 |
| Category | web |
| Severity | Medium |
| CVSS Score | Not specified in source |
| Status | PoC |
| Tags | file-manager, unauthenticated, smtp-relay, email-spoofing, incorrect-access-control, veno-file-manager |
| Related | N/A |
Affected Target
| Field | Value |
|---|---|
| Software / System | Veno File Manager Project |
| Versions Affected | 4.4.9 |
| Language / Platform | Bash / PHP web application |
| Authentication Required | No |
| Network Access Required | Yes |
Summary
The /vfm-admin/ajax/sendfiles.php endpoint in Veno File Manager 4.4.9 lacks any access control, allowing an unauthenticated attacker to send arbitrary emails through the application’s configured SMTP server. By supplying attacker-controlled destination, reply-to, message body, and embedded links, an attacker can impersonate the application to deliver phishing or spam email to any target address, as long as the server has an SMTP relay configured.
Vulnerability Details
Root Cause
sendfiles.php performs no authentication or authorization check before forwarding attacker-supplied parameters into an outgoing email via the site’s configured SMTP relay (incorrect access control).
Attack Vector
- Identify a Veno File Manager 4.4.9 instance with SMTP configured.
- Send an unauthenticated POST request to
/vfm-admin/ajax/sendfiles.phpwith theX-Requested-With: XmlHttpRequestheader and attacker-chosenmitt(reply-to),dest(target),sharelink,message,passlink, andsend_ccparameters. - The server relays the email through its configured SMTP server to the target address.
Impact
Abuse of the victim’s mail infrastructure to send spam or phishing email that appears to originate from a trusted domain, potentially damaging the target’s sender reputation and enabling social-engineering attacks against third parties.
Environment / Lab Setup
Target: Veno File Manager 4.4.9 with SMTP relay configured
Attacker: bash, curl
Proof of Concept
PoC Script
See
PoC.shin this folder.
| |
The script sends a crafted unauthenticated POST request to sendfiles.php, causing the server to relay an attacker-controlled email to the specified target.
Detection & Indicators of Compromise
POST /vfm-admin/ajax/sendfiles.php HTTP/1.1
X-Requested-With: XmlHttpRequest
Signs of compromise:
- Outgoing mail queue entries not tied to any authenticated user session
- Complaints of phishing/spam email originating from the organization’s mail server
- SMTP relay logs showing anomalous volume from the file manager host
Remediation
| Action | Detail |
|---|---|
| Primary fix | No vendor patch confirmed as of 2026-07-05 — monitor for advisory |
| Interim mitigation | Require authentication and rate-limit sendfiles.php; restrict or remove SMTP relay functionality if unused |
References
Notes
Mirrored from https://github.com/jfs-jfs/CVE-2026-37073 on 2026-07-05.
| |