The SentinelOne Annual Threat Report - A Defenders Guide from the FrontlinesThe SentinelOne Annual Threat ReportGet the Report
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
    • 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-13627

CVE-2025-13627: Makesweat WordPress Plugin XSS Flaw

CVE-2025-13627 is a stored cross-site scripting vulnerability in the Makesweat WordPress plugin affecting versions up to 0.1. Attackers with admin access can inject malicious scripts. This article covers technical details, impact, and mitigation.

Published: January 23, 2026

CVE-2025-13627 Overview

The Makesweat plugin for WordPress is vulnerable to Stored Cross-Site Scripting (XSS) via the makesweat_clubid setting in all versions up to, and including, 0.1 due to insufficient input sanitization and output escaping. This makes it possible for authenticated attackers, with administrator-level access and above, to inject arbitrary web scripts in pages that will execute whenever a user accesses an injected page.

Critical Impact

Authenticated administrators can inject malicious JavaScript that persists in the database and executes in the browser context of any user viewing affected pages, potentially leading to session hijacking, credential theft, or administrative account compromise.

Affected Products

  • Makesweat WordPress Plugin version 0.1 and earlier
  • WordPress sites with Makesweat plugin installed and active

Discovery Timeline

  • 2026-01-14 - CVE-2025-13627 published to NVD
  • 2026-01-14 - Last updated in NVD database

Technical Details for CVE-2025-13627

Vulnerability Analysis

This Stored Cross-Site Scripting vulnerability exists in the Makesweat WordPress plugin due to improper handling of the makesweat_clubid setting. The plugin fails to properly sanitize user input before storing it in the database and does not adequately escape the output when rendering this setting value on pages. When an authenticated administrator with sufficient privileges modifies this setting, they can inject arbitrary JavaScript code that will be stored and subsequently executed in the browsers of users who visit pages where this setting value is rendered.

The vulnerability requires network access and high-privilege authentication (administrator level), which limits the attack surface. However, in multi-administrator environments or scenarios where an attacker has already compromised an admin account, this vulnerability could be leveraged for further attacks against other administrators or site visitors.

Root Cause

The root cause is classified under CWE-79 (Improper Neutralization of Input During Web Page Generation). The vulnerable code, located in makesweat.php at lines 64 and 85, fails to implement proper input validation and output encoding. The makesweat_clubid setting value is accepted without sufficient sanitization when saved and rendered without proper escaping when displayed, allowing JavaScript code to be injected and executed.

Attack Vector

The attack is conducted over the network and requires the attacker to have authenticated administrator-level access to the WordPress installation. The attacker would navigate to the plugin settings page and insert malicious JavaScript code into the makesweat_clubid field. Once saved, this payload is stored in the WordPress database.

When any user (including other administrators) accesses a page where the makesweat_clubid value is rendered, the malicious script executes in their browser context. This could allow the attacker to steal session cookies, perform actions on behalf of the victim, redirect users to malicious sites, or deface the website content.

The vulnerability mechanism involves insufficient input sanitization when the setting is saved and improper output escaping when the value is displayed. For detailed code analysis, see the WordPress Plugin Source Code and the Wordfence Vulnerability Report.

Detection Methods for CVE-2025-13627

Indicators of Compromise

  • Suspicious JavaScript code present in the makesweat_clubid option value in the WordPress database
  • Unusual administrator activity or setting changes in WordPress audit logs
  • Unexpected inline scripts or event handlers appearing on pages where the Makesweat plugin renders content
  • Reports of browser security warnings or anomalous behavior from site visitors

Detection Strategies

  • Review the wp_options table for the makesweat_clubid entry and check for any HTML or JavaScript content
  • Implement Content Security Policy (CSP) headers to detect and block unauthorized inline script execution
  • Deploy a Web Application Firewall (WAF) configured to detect XSS patterns in POST requests to the plugin settings
  • Utilize WordPress security plugins that monitor option value changes for suspicious content

Monitoring Recommendations

  • Enable comprehensive WordPress audit logging to track all administrator actions and plugin setting modifications
  • Configure real-time alerts for changes to the Makesweat plugin settings
  • Implement client-side monitoring for unexpected script execution using browser-based security tools
  • Regularly audit WordPress database option values for potential malicious payloads

How to Mitigate CVE-2025-13627

Immediate Actions Required

  • Review and audit all administrator accounts for unauthorized access or compromise
  • Inspect the current value of makesweat_clubid in the WordPress options table for any malicious content
  • Consider temporarily deactivating the Makesweat plugin until a patched version is available
  • Implement additional access controls to limit administrator privileges where possible

Patch Information

As of the last NVD update on 2026-01-14, no official patch has been confirmed for this vulnerability. Users should monitor the WordPress Plugin Overview page for updates from the plugin developer. If a patched version becomes available, update immediately to remediate this vulnerability.

Workarounds

  • Deactivate and remove the Makesweat plugin if it is not critical to site functionality
  • Implement a Web Application Firewall (WAF) rule to sanitize input to the makesweat_clubid setting
  • Restrict administrator access to only trusted users and implement strong authentication measures
  • Manually sanitize the makesweat_clubid option value in the database by removing any HTML or script content
bash
# WordPress CLI command to check the current value of makesweat_clubid
wp option get makesweat_clubid

# If malicious content is found, reset the option to a safe value
wp option update makesweat_clubid "YOUR_SAFE_CLUB_ID"

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

  • Vulnerability Details
  • TypeXSS

  • Vendor/TechWordpress

  • SeverityMEDIUM

  • CVSS Score4.4

  • EPSS Probability0.04%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:H/PR:H/UI:N/S:C/C:L/I:L/A:N
  • Impact Assessment
  • ConfidentialityHigh
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-79
  • Technical References
  • WordPress Plugin Overview

  • WordPress Plugin Source Code

  • WordPress Plugin Source Code

  • WordPress Plugin Source Code

  • WordPress Plugin Source Code

  • Wordfence Vulnerability Report
  • Related CVEs
  • CVE-2023-54358: adivaha Travel Plugin XSS Vulnerability

  • CVE-2026-3005: WordPress List Category Posts XSS Flaw

  • CVE-2026-5742: WordPress UsersWP Plugin XSS Vulnerability

  • CVE-2026-4336: WordPress Ultimate FAQ Accordion XSS Flaw
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