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

CVE-2026-1036: Photo Gallery by 10Web Auth Bypass Flaw

CVE-2026-1036 is an authentication bypass vulnerability in Photo Gallery by 10Web plugin for WordPress that allows unauthenticated attackers to delete image comments. This article covers technical details, affected versions, and mitigation.

Published: January 23, 2026

CVE-2026-1036 Overview

The Photo Gallery by 10Web – Mobile-Friendly Image Gallery plugin for WordPress contains a missing authorization vulnerability (CWE-862) in the delete_comment() function. This security flaw affects all versions up to and including 1.8.36, allowing unauthenticated attackers to delete arbitrary image comments without proper capability checks. The vulnerability is specific to the Pro version of the plugin where comments functionality is available.

Critical Impact

Unauthenticated attackers can perform unauthorized data modification by deleting image comments, potentially disrupting user engagement and content integrity on affected WordPress sites.

Affected Products

  • Photo Gallery by 10Web (WordPress Plugin) versions up to and including 1.8.36
  • Photo Gallery by 10Web Pro (with comments functionality enabled)

Discovery Timeline

  • January 22, 2026 - CVE-2026-1036 published to NVD
  • January 22, 2026 - Last updated in NVD database

Technical Details for CVE-2026-1036

Vulnerability Analysis

This vulnerability stems from a missing capability check in the delete_comment() function located in BWGControllerGalleryBox.php. The function processes comment deletion requests without verifying whether the requesting user has appropriate WordPress capabilities to perform such actions. This broken access control allows any unauthenticated visitor to invoke the comment deletion functionality.

The attack requires no user interaction and can be performed remotely over the network. While the vulnerability does not allow attackers to read sensitive data or disrupt service availability, it enables unauthorized modification of content by removing image comments from the gallery.

Root Cause

The root cause is a missing capability check (CWE-862 - Missing Authorization) in the delete_comment() function. WordPress plugins should implement proper capability checks using functions like current_user_can() before performing privileged operations. The vulnerable code path in BWGControllerGalleryBox.php at line 173 fails to validate user permissions before executing the comment deletion operation.

Attack Vector

The vulnerability is exploitable over the network by unauthenticated attackers. An attacker can craft HTTP requests targeting the delete_comment() function endpoint, specifying arbitrary comment IDs for deletion. Since no authentication or authorization checks are performed, the plugin processes these requests and removes the targeted comments from the database.

The attack flow involves:

  1. Identifying a WordPress site running the vulnerable Photo Gallery by 10Web Pro plugin
  2. Enumerating or guessing comment IDs associated with gallery images
  3. Sending crafted requests to the delete_comment endpoint without authentication
  4. The plugin processes the request and removes the specified comment

Technical details and source code analysis are available through the WordPress Photo Gallery Source and Wordfence Vulnerability Analysis.

Detection Methods for CVE-2026-1036

Indicators of Compromise

  • Unexpected or unexplained deletion of image gallery comments
  • Web server logs showing unauthorized requests to gallery comment deletion endpoints
  • Database audit logs indicating comment deletions without corresponding admin activity
  • User reports of missing comments on gallery images

Detection Strategies

  • Monitor web application logs for requests to the Photo Gallery plugin endpoints containing comment deletion parameters
  • Implement file integrity monitoring on the Photo Gallery plugin files to detect unauthorized modifications
  • Review WordPress activity logs for comment deletion events that lack corresponding authenticated admin sessions
  • Deploy web application firewall rules to detect and alert on suspicious parameter patterns targeting gallery functions

Monitoring Recommendations

  • Enable comprehensive logging for all WordPress AJAX and REST API requests
  • Set up alerts for bulk comment deletion activity or deletions occurring outside normal administrative hours
  • Monitor for sequential or patterned comment ID access that may indicate enumeration attempts
  • Correlate gallery comment deletion events with authenticated user sessions to identify unauthorized activity

How to Mitigate CVE-2026-1036

Immediate Actions Required

  • Update Photo Gallery by 10Web plugin to a version newer than 1.8.36 that includes the security fix
  • Temporarily disable the comments functionality in Photo Gallery Pro settings until the patch is applied
  • Review gallery comments for any unauthorized deletions and restore from backup if necessary
  • Implement web application firewall rules to restrict access to the vulnerable endpoint

Patch Information

Update the Photo Gallery by 10Web plugin to the latest available version through the WordPress admin dashboard or by downloading directly from the WordPress Plugin Directory. The fix should implement proper capability checks using WordPress's current_user_can() function to verify user authorization before processing comment deletion requests.

For detailed vulnerability information and patch verification, refer to the Wordfence Vulnerability Analysis.

Workarounds

  • Disable the Photo Gallery Pro comments feature until the official patch is applied
  • Implement server-level access restrictions to the plugin's AJAX endpoints for unauthenticated users
  • Use a web application firewall to block requests matching comment deletion patterns from unauthenticated sources
  • Consider temporarily reverting to a gallery solution that does not expose unauthenticated endpoints
bash
# WordPress CLI command to check plugin version
wp plugin list --name=photo-gallery --fields=name,version,status

# Update the plugin via WP-CLI
wp plugin update photo-gallery

# Temporarily deactivate if update not available
wp plugin deactivate photo-gallery

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechWordpress

  • SeverityMEDIUM

  • CVSS Score5.3

  • EPSS Probability0.05%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-862
  • Technical References
  • WordPress Photo Gallery Source

  • Wordfence Vulnerability Analysis
  • Related CVEs
  • CVE-2026-6441: Canto WordPress Plugin Auth Bypass Flaw

  • CVE-2026-3488: WP Statistics Auth Bypass Vulnerability

  • CVE-2026-5234: LatePoint WordPress Auth Bypass Vulnerability

  • CVE-2026-5427: Kubio WordPress Plugin File Upload 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