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-2026-3516

CVE-2026-3516: Contact List Plugin for WordPress XSS Flaw

CVE-2026-3516 is a stored cross-site scripting vulnerability in the Contact List plugin for WordPress that allows authenticated attackers to inject malicious scripts. This article covers technical details, affected versions, and mitigation.

Published: March 27, 2026

CVE-2026-3516 Overview

The Contact List plugin for WordPress is vulnerable to Stored Cross-Site Scripting (XSS) via the _cl_map_iframe parameter in all versions up to and including 3.0.18. This vulnerability arises from insufficient input sanitization and output escaping when handling the Google Maps iframe custom field. Authenticated attackers with Contributor-level access or above can inject arbitrary web scripts that execute whenever a user accesses an affected page.

Critical Impact

Authenticated attackers can inject persistent malicious scripts that execute in the context of victim browsers, potentially leading to session hijacking, credential theft, or further compromise of WordPress administrator accounts.

Affected Products

  • Contact List WordPress Plugin versions up to and including 3.0.18
  • WordPress installations with Contact List plugin enabled
  • Sites allowing Contributor-level or above user registrations

Discovery Timeline

  • 2026-03-21 - CVE CVE-2026-3516 published to NVD
  • 2026-03-23 - Last updated in NVD database

Technical Details for CVE-2026-3516

Vulnerability Analysis

This Stored Cross-Site Scripting vulnerability exists in the Contact List plugin's handling of Google Maps iframe input. The saveCustomFields() function in class-contact-list-custom-fields.php uses a regular expression to extract <iframe> tags from user input, but critically fails to validate or sanitize the iframe's attributes. This allows attackers to include malicious event handlers such as onload, onerror, or onmouseover within the iframe tag.

The extracted iframe HTML is then stored directly to the WordPress database via update_post_meta() without proper sanitization. When the data is retrieved and rendered on the front-end through class-cl-public-card.php, no escaping or wp_kses filtering is applied, resulting in the injected script executing in the browser context of any user viewing the page.

Root Cause

The root cause is a failure to properly sanitize user-supplied iframe input at two critical points:

  1. Input Validation Failure: The saveCustomFields() function at line 675 in class-contact-list-custom-fields.php extracts iframe content using regex without validating or stripping dangerous attributes and event handlers.

  2. Output Escaping Failure: The rendering function in class-cl-public-card.php at line 466 outputs the stored iframe HTML directly without applying WordPress escaping functions (esc_html(), esc_attr()) or allowlist filtering via wp_kses().

Attack Vector

The attack vector is network-based and requires authenticated access at Contributor level or above. An attacker can exploit this vulnerability through the following mechanism:

  1. The attacker authenticates to WordPress with Contributor-level privileges
  2. They create or edit a contact entry and inject a malicious payload in the Google Maps iframe field
  3. The payload includes JavaScript event handlers embedded within the iframe tag attributes
  4. When any user (including administrators) views the contact page, the malicious script executes in their browser session

The vulnerability can be exploited by crafting an iframe with embedded JavaScript event handlers. For example, an attacker might include an onload attribute containing malicious JavaScript within the iframe tag. When stored and rendered without sanitization, this script executes automatically when the page loads. See the Wordfence Vulnerability Report for additional technical details.

Detection Methods for CVE-2026-3516

Indicators of Compromise

  • Presence of unusual JavaScript event handlers (onload, onerror, onmouseover) in iframe tags within postmeta database entries for _cl_map_iframe
  • Unexpected script execution or browser alerts when viewing Contact List plugin pages
  • Suspicious network requests originating from contact list pages to unknown external domains

Detection Strategies

  • Monitor WordPress postmeta table for entries containing _cl_map_iframe with JavaScript event handlers or javascript: URIs
  • Implement Web Application Firewall (WAF) rules to detect iframe tags containing event handler attributes in POST requests to WordPress admin endpoints
  • Review user activity logs for Contributor-level accounts creating or modifying contact entries with suspicious iframe content

Monitoring Recommendations

  • Enable WordPress audit logging to track all changes to Contact List entries
  • Configure browser Content Security Policy (CSP) headers to prevent inline script execution
  • Regularly scan database content for stored XSS patterns using security plugins

How to Mitigate CVE-2026-3516

Immediate Actions Required

  • Update the Contact List plugin to a version newer than 3.0.18 immediately
  • Audit existing Contact List entries for malicious iframe content in the _cl_map_iframe field
  • Review WordPress user accounts and remove unnecessary Contributor-level access
  • Implement Content Security Policy headers to mitigate XSS impact

Patch Information

The vulnerability has been addressed in WordPress Changeset #3486445. Site administrators should update to the patched version through the WordPress admin dashboard or by downloading the latest version from the WordPress plugin repository. The patch implements proper sanitization of iframe attributes and adds appropriate output escaping.

Workarounds

  • Temporarily disable the Contact List plugin until the update can be applied
  • Restrict user registration and remove Contributor-level access from untrusted users
  • Implement a Web Application Firewall rule to block iframe submissions containing event handler attributes
bash
# Configuration example - WordPress wp-config.php CSP headers
# Add to wp-config.php or .htaccess to mitigate XSS impact
# Note: This is a mitigation, not a fix - update the plugin

# For Apache (.htaccess):
# Header set Content-Security-Policy "default-src 'self'; script-src 'self'; frame-src 'self' https://www.google.com https://maps.google.com;"

# For Nginx (add to server block):
# add_header Content-Security-Policy "default-src 'self'; script-src 'self'; frame-src 'self' https://www.google.com https://maps.google.com;";

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 Score6.4

  • EPSS Probability0.05%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:L/I:L/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-79
  • Technical References
  • WordPress Class File Code

  • WordPress Class File Code

  • WordPress Class File Code

  • WordPress Class File Code

  • WordPress Class File Code

  • WordPress Class File Code

  • WordPress Changeset #3486445

  • 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