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-2020-13700

CVE-2020-13700: ACF to REST API Information Disclosure

CVE-2020-13700 is an information disclosure vulnerability in the ACF to REST API plugin for WordPress that exposes sensitive data through insecure direct object references. This article covers technical details, affected versions, and mitigation.

Published: March 4, 2026

CVE-2020-13700 Overview

CVE-2020-13700 is an Insecure Direct Object Reference (IDOR) vulnerability discovered in the ACF to REST API plugin for WordPress through version 3.1.0. The vulnerability allows unauthenticated attackers to manipulate permalinks to access sensitive information stored in the wp_options database table, including login credentials and passwords.

Critical Impact

Unauthenticated attackers can retrieve sensitive WordPress configuration data including admin credentials via REST API endpoint manipulation without any authentication requirements.

Affected Products

  • ACF to REST API plugin through version 3.1.0
  • WordPress installations using the vulnerable plugin versions
  • Sites exposing the wp-json/acf/v3/options/ REST API endpoint

Discovery Timeline

  • June 24, 2020 - CVE-2020-13700 published to NVD
  • November 21, 2024 - Last updated in NVD database

Technical Details for CVE-2020-13700

Vulnerability Analysis

This vulnerability stems from improper authorization controls in the ACF to REST API plugin's REST endpoint handling. The plugin extends Advanced Custom Fields (ACF) functionality by exposing custom field data through the WordPress REST API. However, the implementation fails to properly validate user permissions before returning sensitive option values.

When a request is made to the wp-json/acf/v3/options/ endpoint, the plugin does not verify whether the requesting user has appropriate privileges to access the requested data. This allows any unauthenticated user to read arbitrary values from the wp_options table by manipulating the request path.

The vulnerability is classified as CWE-639 (Authorization Bypass Through User-Controlled Key), indicating that user-supplied input directly controls which database records are accessed without proper authorization checks.

Root Cause

The root cause is a missing authorization check in the REST API endpoint handler. The plugin exposes WordPress options through the REST API without implementing proper capability checks or access controls. When processing requests to the options endpoint, the plugin directly queries the database based on user-supplied parameters without validating that the user has permission to view the requested data.

This is a classic example of an Insecure Direct Object Reference vulnerability where the application exposes internal implementation objects (database records) to users without verifying authorization.

Attack Vector

The attack vector is network-based and requires no authentication or user interaction. An attacker can exploit this vulnerability by sending specially crafted HTTP requests to the WordPress REST API endpoint.

The attack follows this pattern:

  1. Attacker identifies a WordPress site running the vulnerable ACF to REST API plugin
  2. Attacker sends a GET request to wp-json/acf/v3/options/ with manipulated parameters
  3. The plugin retrieves and returns sensitive data from the wp_options table without authorization checks
  4. Attacker receives sensitive configuration data including potential login credentials

The vulnerability is particularly dangerous because WordPress stores various sensitive configuration values in the wp_options table, including database credentials, authentication keys, and potentially user passwords depending on the site's configuration and installed plugins.

Detection Methods for CVE-2020-13700

Indicators of Compromise

  • Unusual GET requests to wp-json/acf/v3/options/ endpoints from external IP addresses
  • Access log entries showing enumeration attempts against REST API option endpoints
  • Multiple failed login attempts following REST API option queries from the same source
  • Unexpected access to WordPress administrative functions after REST API reconnaissance

Detection Strategies

  • Monitor web server access logs for requests containing wp-json/acf/v3/options/ patterns
  • Implement Web Application Firewall (WAF) rules to detect and block unauthorized REST API option queries
  • Configure intrusion detection systems to alert on multiple REST API enumeration attempts
  • Review WordPress audit logs for signs of credential harvesting or unauthorized access

Monitoring Recommendations

  • Enable detailed logging for WordPress REST API endpoints
  • Configure real-time alerting for access attempts to sensitive API paths
  • Implement rate limiting on REST API endpoints to slow enumeration attacks
  • Monitor for unusual patterns in WordPress configuration access

How to Mitigate CVE-2020-13700

Immediate Actions Required

  • Update ACF to REST API plugin to a patched version immediately
  • Disable the vulnerable plugin if updates are not available
  • Implement WAF rules to block unauthorized access to wp-json/acf/v3/options/ endpoints
  • Review access logs for evidence of prior exploitation
  • Rotate any potentially exposed credentials stored in wp_options

Patch Information

Organizations should update the ACF to REST API plugin to the latest available version. The vulnerability affects versions through 3.1.0. Administrators can find update information on the WordPress ACF to REST API Plugin page and the GitHub ACF to REST API repository. A technical analysis is available in this GitHub Gist Code Snippet.

Workarounds

  • Disable the ACF to REST API plugin entirely if not required
  • Implement server-side access controls to block requests to the vulnerable endpoint
  • Use a Web Application Firewall to filter malicious requests
  • Restrict REST API access to authenticated users only via WordPress configuration
bash
# Apache .htaccess configuration to block vulnerable endpoint
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule ^wp-json/acf/v3/options/ - [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/TechAcf To Rest Api

  • SeverityHIGH

  • CVSS Score7.5

  • EPSS Probability93.29%

  • 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-639
  • Technical References
  • GitHub Gist Code Snippet

  • GitHub ACF to REST API

  • WordPress ACF to REST API Plugin
  • Latest CVEs
  • CVE-2025-52793: Esselink.nu Settings CSRF Vulnerability

  • CVE-2025-52772: Virtual Moderator CSRF Vulnerability

  • CVE-2025-48279: WC MyParcel Belgium XSS Vulnerability

  • CVE-2025-39381: KiotViet Sync CSRF 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