This is a summary of the AI-generated 10-question deep analysis. The full version (longer answers, follow-up Q&A, related CVEs) requires login. Read the full analysis β
Q1What is this vulnerability? (Essence + Consequences)
π¨ **Essence**: Path Traversal in ZOHO WebNMS Framework. π **Consequences**: Remote attackers can read **arbitrary files** on the server via the `file download` feature. Critical data exposure risk!
Q2Root Cause? (CWE/Flaw)
π‘οΈ **CWE**: CWE-22 (Path Traversal). π **Flaw**: The `fileName` parameter in `servlets/FetchFile` fails to sanitize `..` (dot dot) sequences, allowing directory escape.
Q3Who is affected? (Versions/Components)
π’ **Vendor**: ZOHO (Zoho Corporation). π¦ **Product**: WebNMS Framework. π **Affected Versions**: **5.2** and **5.2 SP1**. β οΈ Versions before 5.2 SP1 are vulnerable.
Q4What can hackers do? (Privileges/Data)
π **Attacker Action**: Read **any file** from the server filesystem. π **Data Impact**: Sensitive configs, credentials, or source code could be leaked. No execution, just **data theft**.
Q5Is exploitation threshold high? (Auth/Config)
π **Auth**: Likely **Remote/Unauthenticated** (based on 'Remote attacker' & 'auxiliary' module tag). π **Config**: Exploits the `FetchFile` servlet directly. Low barrier if the service is exposed.
Q6Is there a public Exp? (PoC/Wild Exploitation)
π₯ **Exploit**: **Yes**. Public PoC exists on GitHub (Nuclei templates) and Exploit-DB (ID: 40229). π **Wild Exploitation**: High risk due to simple `..` injection.
Q7How to self-check? (Features/Scanning)
π **Self-Check**: Scan for `servlets/FetchFile` endpoint. π§ͺ **Test**: Send request with `fileName=../../../etc/passwd` (or equivalent OS path). If file content returns, you're hit! π¨
π§ **No Patch?**: 1. Block external access to `servlets/FetchFile`. 2. Implement WAF rules to block `..` in URL parameters. 3. Restrict file download functionality if not needed. π
Q10Is it urgent? (Priority Suggestion)
π₯ **Urgency**: **HIGH**. π **Priority**: Immediate patching recommended. Since it allows arbitrary file read, it can lead to further compromise (credential theft). Don't ignore this!