SEPTEMBER 17, 2026
Live Feed
Back to database
Case File

CVE-2026-12956

MEDIUM · CVSS 5.3 EPSS 0.24%

Source: NVD + CISA KEV + EPSS · Published 2026-09-09 · Last synced 2026-09-17

CyberRota Analysis

AI-Generated

The WP Event Solution (Eventin) plugin for WordPress is vulnerable due to insufficient authorization checks in its REST API endpoint, allowing unauthenticated attackers to create fraudulent event orders with a 'completed' status. This exploitation can lead to the indefinite persistence of these forged orders, ultimately depleting ticket inventory and disrupting event management. WordPress site administrators using versions up to 4.1.22 should prioritize patching this vulnerability to safeguard against potential abuse.

CVE
CVE-2026-12956
Severity
MEDIUM
CVSS
5.3
EPSS
0.24%
WordPress

Original NVD Description

The WP Event Solution (Eventin) plugin for WordPress is vulnerable to Missing Authorization in versions up to, and including, 4.1.22 via the create_item() handler for the /wp-json/eventin/v2/orders REST endpoint. The endpoint's create_item_permissions_check() function only verifies a wp_rest nonce (which is leaked to every visitor through the etn-public script's localized_data_obj on every frontend page) and accepts a user-supplied 'status' value in prepare_item_for_database() with no whitelist validation. This makes it possible for unauthenticated attackers to create etn-order posts with status='completed' that are counted as sold by etn_get_sold_tickets_by_event(); because the auto-cleanup wp_schedule_single_event() in create_item() only fires for status='pending' orders, the forged completed orders persist indefinitely and exhaust ticket inventory.