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
    • 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-2021-47910

CVE-2021-47910: AccessPress Social Icons XSS Vulnerability

CVE-2021-47910 is a stored XSS vulnerability in AccessPress Social Icons 1.8.2 that lets authenticated attackers inject malicious scripts via the icon title field. This article covers technical details, affected versions, and mitigation.

Published: May 18, 2026

CVE-2021-47910 Overview

CVE-2021-47910 is a stored cross-site scripting (XSS) vulnerability in the AccessPress Social Icons WordPress plugin version 1.8.2. The flaw resides in the icon title field, which fails to sanitize user-supplied input before storing it in the database. Authenticated attackers with access to the plugin's administrative interface can inject JavaScript payloads, such as <img src=x onerror=...> constructs. Stored payloads execute in the browser of any user who subsequently views the plugin page. The vulnerability is classified under [CWE-79] Improper Neutralization of Input During Web Page Generation.

Critical Impact

Stored JavaScript payloads execute in the context of authenticated WordPress users viewing the plugin page, enabling session theft, administrative action hijacking, and persistent client-side compromise.

Affected Products

  • AccessPress Social Icons WordPress plugin version 1.8.2
  • WordPress installations with the vulnerable plugin enabled
  • AccessPress Themes ecosystem deployments distributing this plugin

Discovery Timeline

  • 2026-05-10 - CVE-2021-47910 published to the National Vulnerability Database
  • 2026-05-12 - Last updated in NVD database

Technical Details for CVE-2021-47910

Vulnerability Analysis

The vulnerability stems from missing output encoding and input sanitization on the icon title parameter accepted by the AccessPress Social Icons plugin. When an authenticated user with plugin configuration privileges submits a social icon entry, the supplied title is written to persistent storage without HTML-context escaping. The stored value is later rendered directly into the plugin's administrative page markup. Any HTML or JavaScript embedded in that field becomes part of the served DOM and executes in viewing users' browsers.

Because this is a stored XSS rather than reflected, exploitation persists across sessions and affects every user who loads the affected admin view. The attacker only needs to plant the payload once. Subsequent victims need not click a crafted link, only navigate to the plugin interface.

Root Cause

The root cause is improper neutralization of input during web page generation [CWE-79]. The plugin treats the icon title field as trusted content and emits it into the HTML response without applying functions such as esc_html() or esc_attr() from the WordPress core escaping API. This omission allows arbitrary markup to be rendered as live HTML rather than inert text.

Attack Vector

The attack requires network access to the WordPress admin interface and authenticated privileges sufficient to edit social icon entries. User interaction is needed in the form of an administrator or other privileged user viewing the plugin page after the payload has been planted. A typical payload uses an image tag with an onerror handler, for example a broken image source paired with JavaScript in the error callback. Once the page renders, the injected script runs with the privileges of the viewing user's session, enabling cookie exfiltration, CSRF-style forced actions, or pivoting to other administrative functionality. Refer to the Exploit-DB #50515 entry and the VulnCheck Advisory for AccessPress Plugin for technical details.

Detection Methods for CVE-2021-47910

Indicators of Compromise

  • Social icon entries in the WordPress database containing <script>, <img, onerror=, or onload= substrings in the title field
  • Unexpected outbound HTTP requests from admin browser sessions to attacker-controlled domains shortly after loading the plugin page
  • Creation of new administrator accounts or modification of user roles following admin visits to the social icons configuration page

Detection Strategies

  • Query the wp_options and plugin-specific tables for stored values matching HTML tag patterns or JavaScript event handlers in the icon title field
  • Inspect web server access logs for POST requests to AccessPress Social Icons admin endpoints containing URL-encoded < or script tokens
  • Deploy a Content Security Policy in report-only mode to surface inline script execution on /wp-admin/ pages serving plugin configuration

Monitoring Recommendations

  • Enable WordPress audit logging for plugin setting changes and review entries authored by lower-privileged users
  • Alert on admin session cookies appearing in outbound traffic to unrecognized destinations
  • Monitor for unauthorized changes to user roles, theme files, or wp-config.php following plugin interactions

How to Mitigate CVE-2021-47910

Immediate Actions Required

  • Deactivate the AccessPress Social Icons plugin until a patched build is verified and deployed
  • Audit all stored social icon titles and purge any entries containing HTML tags or JavaScript event handlers
  • Rotate WordPress administrator credentials and invalidate active sessions if exploitation is suspected
  • Restrict plugin configuration privileges to a minimal set of trusted accounts

Patch Information

No vendor patch URL is referenced in the available CVE data. Administrators should consult the WordPress Plugin Information page and the AccessPress Themes Site for the latest plugin release and upgrade beyond version 1.8.2 when a fixed build is available.

Workarounds

  • Replace AccessPress Social Icons with an alternative, actively maintained social icon plugin
  • Deploy a web application firewall rule that blocks HTML tags and JavaScript event handlers in POST parameters targeting the plugin's admin endpoints
  • Apply a strict Content Security Policy disallowing inline scripts on WordPress admin pages to reduce payload execution impact
  • Limit /wp-admin/ access by source IP using web server or reverse proxy rules until the plugin is removed or updated

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

  • Vulnerability Details
  • TypeXSS

  • Vendor/TechAccesspress Social Icons

  • SeverityMEDIUM

  • CVSS Score5.1

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:L/UI:P/VC:N/VI:N/VA:N/SC:L/SI:L/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-79
  • Technical References
  • AccessPress Themes Site

  • WordPress Plugin Information

  • Exploit-DB #50515

  • VulnCheck Advisory for AccessPress Plugin
  • Latest CVEs
  • CVE-2026-43328: Linux Kernel Use-After-Free Vulnerability

  • CVE-2026-43329: Linux Kernel Netfilter DoS Vulnerability

  • CVE-2026-43330: Linux Kernel Buffer Overflow Vulnerability

  • CVE-2026-43331: Linux Kernel DOS 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