Join the Cyber Forum: Threat Intel on May 12, 2026 to learn how AI is reshaping threat defense.Join the Virtual Cyber Forum: Threat IntelRegister Now
Experiencing a Breach?Blog
Get StartedContact Us
SentinelOne
  • Platform
    Platform Overview
    • Singularity Platform
      Welcome to Integrated Enterprise Security
    • AI for Security
      Leading the Way in AI-Powered Security Solutions
    • Securing AI
      Accelerate AI Adoption with Secure AI Tools, Apps, and Agents.
    • How It Works
      The Singularity XDR Difference
    • Singularity Marketplace
      One-Click Integrations to Unlock the Power of XDR
    • Pricing & Packaging
      Comparisons and Guidance at a Glance
    Data & AI
    • Purple AI
      Accelerate SecOps with Generative AI
    • Singularity Hyperautomation
      Easily Automate Security Processes
    • AI-SIEM
      The AI SIEM for the Autonomous SOC
    • AI Data Pipelines
      Security Data Pipeline for AI SIEM and Data Optimization
    • Singularity Data Lake
      AI-Powered, Unified Data Lake
    • Singularity Data Lake for Log Analytics
      Seamlessly Ingest Data from On-Prem, Cloud or Hybrid Environments
    Endpoint Security
    • Singularity Endpoint
      Autonomous Prevention, Detection, and Response
    • Singularity XDR
      Native & Open Protection, Detection, and Response
    • Singularity RemoteOps Forensics
      Orchestrate Forensics at Scale
    • Singularity Threat Intelligence
      Comprehensive Adversary Intelligence
    • Singularity Vulnerability Management
      Application & OS Vulnerability Management
    • Singularity Identity
      Identity Threat Detection and Response
    Cloud Security
    • Singularity Cloud Security
      Block Attacks with an AI-Powered CNAPP
    • Singularity Cloud Native Security
      Secure Cloud and Development Resources
    • Singularity Cloud Workload Security
      Real-Time Cloud Workload Protection Platform
    • Singularity Cloud Data Security
      AI-Powered Threat Detection for Cloud Storage
    • Singularity Cloud Security Posture Management
      Detect and Remediate Cloud Misconfigurations
    Securing AI
    • Prompt Security
      Secure AI Tools Across Your Enterprise
  • Why SentinelOne?
    Why SentinelOne?
    • Why SentinelOne?
      Cybersecurity Built for What’s Next
    • Our Customers
      Trusted by the World’s Leading Enterprises
    • Industry Recognition
      Tested and Proven by the Experts
    • About Us
      The Industry Leader in Autonomous Cybersecurity
    Compare SentinelOne
    • Arctic Wolf
    • Broadcom
    • CrowdStrike
    • Cybereason
    • Microsoft
    • Palo Alto Networks
    • Sophos
    • Splunk
    • Trellix
    • Trend Micro
    • Wiz
    Verticals
    • Energy
    • Federal Government
    • Finance
    • Healthcare
    • Higher Education
    • K-12 Education
    • Manufacturing
    • Retail
    • State and Local Government
  • Services
    Managed Services
    • Managed Services Overview
      Wayfinder Threat Detection & Response
    • Threat Hunting
      World-Class Expertise and Threat Intelligence
    • Managed Detection & Response
      24/7/365 Expert MDR Across Your Entire Environment
    • Incident Readiness & Response
      DFIR, Breach Readiness, & Compromise Assessments
    Support, Deployment, & Health
    • Technical Account Management
      Customer Success with Personalized Service
    • SentinelOne GO
      Guided Onboarding & Deployment Advisory
    • SentinelOne University
      Live and On-Demand Training
    • Services Overview
      Comprehensive Solutions for Seamless Security Operations
    • SentinelOne Community
      Community Login
  • Partners
    Our Network
    • MSSP Partners
      Succeed Faster with SentinelOne
    • Singularity Marketplace
      Extend the Power of S1 Technology
    • Cyber Risk Partners
      Enlist Pro Response and Advisory Teams
    • Technology Alliances
      Integrated, Enterprise-Scale Solutions
    • SentinelOne for AWS
      Hosted in AWS Regions Around the World
    • Channel Partners
      Deliver the Right Solutions, Together
    • SentinelOne for Google Cloud
      Unified, Autonomous Security Giving Defenders the Advantage at Global Scale
    • Partner Locator
      Your Go-to Source for Our Top Partners in Your Region
    Partner Portal→
  • Resources
    Resource Center
    • Case Studies
    • Data Sheets
    • eBooks
    • Reports
    • Videos
    • Webinars
    • Whitepapers
    • Events
    View All Resources→
    Blog
    • Feature Spotlight
    • For CISO/CIO
    • From the Front Lines
    • Identity
    • Cloud
    • macOS
    • SentinelOne Blog
    Blog→
    Tech Resources
    • SentinelLABS
    • Ransomware Anthology
    • Cybersecurity 101
  • About
    About SentinelOne
    • About SentinelOne
      The Industry Leader in Cybersecurity
    • Investor Relations
      Financial Information & Events
    • SentinelLABS
      Threat Research for the Modern Threat Hunter
    • Careers
      The Latest Job Opportunities
    • Press & News
      Company Announcements
    • Cybersecurity Blog
      The Latest Cybersecurity Threats, News, & More
    • FAQ
      Get Answers to Our Most Frequently Asked Questions
    • DataSet
      The Live Data Platform
    • S Foundation
      Securing a Safer Future for All
    • S Ventures
      Investing in the Next Generation of Security, Data and AI
  • Pricing
Get StartedContact Us
CVE Vulnerability Database
Vulnerability Database/CVE-2025-12426

CVE-2025-12426: Quiz Maker Information Disclosure Flaw

CVE-2025-12426 is an information disclosure vulnerability in the Quiz Maker plugin for WordPress that exposes quiz answers to unauthenticated attackers. This article covers the technical details, affected versions, and mitigation.

Published: April 29, 2026

CVE-2025-12426 Overview

The Quiz Maker plugin for WordPress contains a Sensitive Information Exposure vulnerability affecting all versions up to and including 6.7.0.80. This security flaw allows unauthenticated attackers to extract quiz answers through the ays_quiz_check_answer AJAX action due to improper authorization checks. The endpoint relies solely on nonce validation, but the required nonce is publicly accessible to all site visitors via the quiz_maker_ajax_public localized script data, rendering the protection ineffective.

Critical Impact

Unauthenticated attackers can extract sensitive quiz answers for any quiz question on affected WordPress sites, potentially compromising the integrity of educational assessments, certification exams, and other quiz-based content.

Affected Products

  • Quiz Maker plugin for WordPress (all versions up to and including 6.7.0.80)
  • ays-pro quiz_maker
  • WordPress sites utilizing the Quiz Maker plugin

Discovery Timeline

  • 2025-11-19 - CVE-2025-12426 published to NVD
  • 2025-12-12 - Last updated in NVD database

Technical Details for CVE-2025-12426

Vulnerability Analysis

This vulnerability represents a classic case of broken access control in WordPress plugin development. The Quiz Maker plugin implements an AJAX endpoint (ays_quiz_check_answer) designed to verify quiz answers, but fails to implement proper authorization checks. While the developers implemented nonce verification as a security measure, they inadvertently exposed the nonce token publicly through the quiz_maker_ajax_public localized script data, which is accessible to all visitors on the front-end of the site.

The fundamental issue lies in the misunderstanding of WordPress nonce functionality. Nonces in WordPress are designed to protect against CSRF attacks by ensuring that actions originate from the site itself, but they are not meant to serve as authorization tokens. Since the nonce is embedded in publicly accessible JavaScript, any visitor can retrieve it and use it to query the AJAX endpoint for quiz answers.

Root Cause

The root cause is an authorization bypass vulnerability (CWE-200: Exposure of Sensitive Information to an Unauthorized Actor). The plugin exposes the AJAX nonce in the quiz_maker_ajax_public localized script data, which is loaded on every page where the quiz is rendered. This allows unauthenticated users to harvest the nonce and make authorized requests to the ays_quiz_check_answer endpoint, bypassing any intended access restrictions.

The vulnerable code pattern involves:

  1. Registering an AJAX action handler for both authenticated and unauthenticated users
  2. Using nonce verification as the sole authorization mechanism
  3. Exposing the nonce publicly through wp_localize_script()

Attack Vector

The attack can be executed remotely over the network without any user interaction or authentication. An attacker simply needs to:

  1. Visit a WordPress site with the vulnerable Quiz Maker plugin installed
  2. Extract the publicly available nonce from the page source or JavaScript variables
  3. Send crafted AJAX requests to the ays_quiz_check_answer endpoint with the harvested nonce
  4. Enumerate question IDs and retrieve correct answers for any quiz on the site

The vulnerability mechanism involves intercepting the publicly exposed nonce value from the quiz_maker_ajax_public JavaScript object and using it to make authorized AJAX calls to retrieve quiz answers. Technical implementation details can be found in the WordPress Plugin Repository code references and the Wordfence vulnerability report.

Detection Methods for CVE-2025-12426

Indicators of Compromise

  • Unusual volume of AJAX requests to the ays_quiz_check_answer endpoint from single IP addresses
  • Sequential enumeration patterns in quiz question ID parameters
  • Requests to the AJAX endpoint from users who have not loaded a quiz page
  • Automated or scripted request patterns targeting the WordPress admin-ajax.php endpoint with quiz-related actions

Detection Strategies

  • Monitor web application firewall (WAF) logs for repeated requests to wp-admin/admin-ajax.php with the action parameter ays_quiz_check_answer
  • Implement rate limiting on AJAX endpoints to detect and block enumeration attempts
  • Review server access logs for patterns indicating automated answer harvesting
  • Deploy intrusion detection rules that flag suspicious sequences of quiz-related AJAX requests

Monitoring Recommendations

  • Configure alerting for anomalous traffic patterns to the Quiz Maker AJAX endpoints
  • Implement logging for all requests to the ays_quiz_check_answer action
  • Set up automated analysis to correlate AJAX requests with legitimate quiz-taking sessions
  • Monitor for bulk data extraction patterns that may indicate answer harvesting campaigns

How to Mitigate CVE-2025-12426

Immediate Actions Required

  • Update the Quiz Maker plugin to a version newer than 6.7.0.80 that addresses this vulnerability
  • Audit quiz results for any anomalies that might indicate prior exploitation
  • Consider temporarily disabling the Quiz Maker plugin until patching is complete
  • Review and rotate any quiz content that may have been compromised

Patch Information

Site administrators should update the Quiz Maker plugin to the latest available version through the WordPress admin dashboard. Navigate to Plugins > Installed Plugins, locate Quiz Maker, and click Update Now if an update is available. Verify the installed version is greater than 6.7.0.80 after updating.

For additional details, refer to the Wordfence Vulnerability Report.

Workarounds

  • Implement a custom WordPress filter or plugin to add proper capability checks to the ays_quiz_check_answer AJAX handler
  • Use a Web Application Firewall (WAF) to block or rate-limit requests to the vulnerable endpoint
  • Restrict access to admin-ajax.php at the server level for specific actions if feasible
  • Consider disabling the plugin entirely until an official patch is available
bash
# Example: Add rate limiting for AJAX endpoints in Apache .htaccess
<IfModule mod_rewrite.c>
  RewriteEngine On
  RewriteCond %{REQUEST_URI} ^/wp-admin/admin-ajax\.php
  RewriteCond %{QUERY_STRING} action=ays_quiz_check_answer [NC]
  RewriteRule ^ - [F,L]
</IfModule>

Disclaimer: This content was generated using AI. While we strive for accuracy, please verify critical information with official sources.

  • Vulnerability Details
  • TypeInformation Disclosure

  • Vendor/TechAys Pro Quiz Maker

  • SeverityHIGH

  • CVSS Score7.5

  • EPSS Probability0.06%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-200

  • NVD-CWE-noinfo
  • Technical References
  • WordPress Quiz Maker Code Snippet

  • WordPress Quiz Maker Public Code

  • WordPress Quiz Maker Public Code

  • Wordfence Vulnerability Report
  • Related CVEs
  • CVE-2025-58015: Quiz Maker Information Disclosure Flaw

  • CVE-2025-30774: Ays-pro Quiz Maker SQLi Vulnerability

  • CVE-2025-10042: Quiz Maker Plugin SQLi Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the World’s Most Advanced Cybersecurity Platform

See how our intelligent, autonomous cybersecurity platform can protect your organization now and into the future.

Try SentinelOne
  • Get Started
  • Get a Demo
  • Product Tour
  • Why SentinelOne
  • Pricing & Packaging
  • FAQ
  • Contact
  • Contact Us
  • Customer Support
  • SentinelOne Status
  • Language
  • Platform
  • Singularity Platform
  • Singularity Endpoint
  • Singularity Cloud
  • Singularity AI-SIEM
  • Singularity Identity
  • Singularity Marketplace
  • Purple AI
  • Services
  • Wayfinder TDR
  • SentinelOne GO
  • Technical Account Management
  • Support Services
  • Verticals
  • Energy
  • Federal Government
  • Finance
  • Healthcare
  • Higher Education
  • K-12 Education
  • Manufacturing
  • Retail
  • State and Local Government
  • Cybersecurity for SMB
  • Resources
  • Blog
  • Labs
  • Case Studies
  • Videos
  • Product Tours
  • Events
  • Cybersecurity 101
  • eBooks
  • Webinars
  • Whitepapers
  • Press
  • News
  • Ransomware Anthology
  • Company
  • About Us
  • Our Customers
  • Careers
  • Partners
  • Legal & Compliance
  • Security & Compliance
  • Investor Relations
  • S Foundation
  • S Ventures

©2026 SentinelOne, All Rights Reserved.

Privacy Notice Terms of Use

English