WordPress Under Siege: Critical CVE-2026-63030 Exploited in Active Attacks, Immediate Action Required + Video

Listen to this Post

Featured ImageIntroduction: A Dangerous New Chapter for WordPress Security

WordPress has long been one of the most targeted platforms on the internet because it powers millions of websites worldwide. While administrators are accustomed to patching vulnerable plugins and themes, a newly disclosed flaw has changed the threat landscape dramatically. Unlike the majority of WordPress security issues, CVE-2026-63030 exists within WordPress Core itself, making it significantly more dangerous and far-reaching.

Security researchers from Searchlight Cyber recently disclosed the vulnerability, nicknamed “wp2shell.” Shortly after the public announcement, attackers began exploiting the flaw in real-world attacks. Security monitoring systems and honeypots quickly observed scanning activity that rapidly evolved into full exploitation attempts capable of compromising vulnerable websites.

This vulnerability represents one of the most serious WordPress Core issues in recent years because it combines SQL Injection with the potential for unauthenticated Remote Code Execution (RCE). Any exposed WordPress REST API endpoint may become the entry point for attackers to gain complete control over a website.

Understanding CVE-2026-63030

The vulnerability, officially tracked as CVE-2026-63030, is an SQL Injection flaw affecting WordPress Core rather than any optional plugin.

This distinction is extremely important.

While plugin vulnerabilities usually impact only websites running specific extensions, a Core vulnerability potentially affects a massive portion of the WordPress ecosystem. Since WordPress powers over 40% of websites on the internet, the attack surface is enormous.

Researchers have demonstrated that exploitation can eventually lead to unauthenticated remote code execution, allowing attackers to execute arbitrary PHP code on vulnerable servers.

Exploitation Started Almost Immediately

One of the most alarming aspects of this vulnerability is the speed at which attackers weaponized it.

Within days of disclosure, security researchers monitoring internet-wide attacks observed automated exploitation attempts targeting WordPress installations.

Initial scans were relatively harmless vulnerability probes designed to determine whether a server could be exploited. However, researchers later captured complete attack payloads capable of installing persistent webshells on compromised systems.

This rapid transition from disclosure to active exploitation demonstrates how closely cybercriminals monitor newly published vulnerabilities.

How Attackers Identify Vulnerable Servers

The attacks target the WordPress REST API, specifically abusing requests sent through the batch API endpoint.

The initial payload performs a carefully crafted SQL Injection using a UNION SELECT statement.

Instead of immediately deploying malware, attackers first test whether SQL Injection is successful by inserting a recognizable string into the database response.

If the server returns the expected response, attackers know the target is vulnerable.

This reconnaissance phase helps attackers avoid wasting resources on patched systems.

From SQL Injection to Remote Code Execution

Once vulnerability confirmation succeeds, attackers escalate their attack dramatically.

The second-stage payload writes malicious PHP code directly onto the server.

Rather than stealing database contents or modifying posts, the exploit creates a fully functional PHP webshell capable of executing operating system commands remotely.

The malicious file is stored inside the WordPress cache directory, allowing attackers to revisit the compromised server whenever needed.

Because the webshell accepts remote commands through HTTP requests, attackers can completely control the affected system without requiring valid administrator credentials.

A Stealthy Webshell Designed to Avoid Detection

Researchers noted an interesting characteristic of the deployed webshell.

Even though the malicious PHP file exists on the server, browsing directly to it returns a fake 404 Not Found response.

This deceptive behavior hides the webshell from casual inspection while still allowing attackers to communicate with it using a secret authentication parameter.

This technique significantly complicates manual incident response because administrators may incorrectly assume the file does not exist.

The approach has been humorously described as producing “Jedi Errors”—the file exists, but appears invisible to anyone without the correct request.

Persistence Through Administrative Accounts

The attack does not end after installing the webshell.

Researchers observed attackers creating entirely new WordPress administrator accounts inside compromised databases.

This provides a secondary persistence mechanism.

Even if the malicious PHP file is discovered and deleted, attackers may still regain access through the newly created administrator credentials.

For this reason, website owners should never assume removing one malicious file completely eliminates the threat.

Indicators of Compromise

Administrators investigating potential compromises should immediately look for several warning signs.

Common indicators include:

Unexpected PHP files inside the wp-content/cache/ directory.

Recently created administrator accounts.

Unknown login activity.

Unusual REST API requests.

Database modifications without administrator approval.

Unexpected outbound network connections.

Suspicious web server logs involving UNION SELECT statements.

If any of these indicators are present, the safest assumption is that the website has already been compromised.

Immediate Incident Response

Organizations operating WordPress websites should respond with urgency.

Recommended actions include:

Determine whether the website is vulnerable.

Apply available security updates immediately.

Inspect the wp-content/cache/ directory for unknown PHP files.

Audit administrator accounts.

Rotate all administrator passwords.

Reset database credentials.

Rotate API secrets.

Review server logs for suspicious REST API activity.

Restore from trusted backups if compromise is confirmed.

Perform a complete malware scan before returning the site to production.

A compromised website should never be considered trustworthy until a full forensic investigation has been completed.

Deep Analysis

This incident highlights how dangerous modern web application vulnerabilities have become.

Unlike traditional SQL Injection attacks that primarily expose sensitive data, CVE-2026-63030 demonstrates how attackers increasingly chain database vulnerabilities into full operating system compromise.

The exploitation workflow follows a sophisticated yet efficient sequence:

Scan for exposed REST API endpoints.

Test SQL Injection using a harmless UNION SELECT.

Confirm vulnerability.

Write a PHP webshell onto the filesystem.

Establish persistence.

Create a hidden administrator account.

Execute arbitrary operating system commands.

Maintain long-term remote access.

Security teams should monitor for suspicious SQL injection activity and unexpected REST API usage.

Useful defensive investigation commands include:

find /var/www -name ".php" -newermt "7 days ago"
find wp-content/cache -type f -name ".php"
grep -Ri "UNION SELECT" /var/log/
grep -Ri "batch/v1" /var/log/

wp user list

wp core verify-checksums

find . -type f -mtime -7
tail -500 access.log
tail -500 error.log

mysql -u root -p

SELECT user_login,user_registered FROM wp_users ORDER BY user_registered DESC;

Additional security recommendations include:

Enable Web Application Firewall (WAF) protection.

Restrict REST API exposure whenever possible.

Monitor file integrity continuously.

Deploy Endpoint Detection and Response (EDR).

Enable multi-factor authentication for all administrators.

Implement centralized logging and SIEM monitoring.

Perform regular integrity verification of WordPress Core files.

Use least-privilege database permissions wherever possible.

The attack chain also illustrates how attackers increasingly prioritize persistence over immediate disruption. By combining a hidden webshell with unauthorized administrator accounts, they maximize the chances of maintaining access even after initial cleanup attempts. Organizations should therefore treat any successful exploitation as a full server compromise rather than a simple website infection.

What Undercode Say:

The emergence of CVE-2026-63030 is a reminder that the greatest risks to popular platforms no longer come solely from third-party plugins. A vulnerability in WordPress Core has the potential to affect millions of websites simultaneously, making rapid patch management and incident response more important than ever.

The attack chain observed in this campaign is technically elegant but operationally dangerous. Attackers begin with lightweight reconnaissance, validate the SQL injection safely, and only then deploy a webshell. This staged approach reduces noise, improves success rates, and makes automated exploitation highly scalable.

The use of the WordPress REST API as the attack vector reflects a broader trend in web application security. APIs have become essential to modern applications, but they also expand the attack surface significantly. Organizations often focus on protecting login pages while overlooking API endpoints that expose equivalent functionality.

Another notable aspect is the emphasis on persistence. Installing a hidden webshell and creating a secondary administrator account ensures attackers have multiple ways to regain access if one backdoor is removed. This is a common tactic in professional intrusion campaigns and highlights why partial remediation is rarely sufficient.

The deceptive “404” behavior of the webshell demonstrates increasing attention to operational stealth. Rather than relying on advanced malware, attackers are using simple techniques that exploit administrator assumptions. A hidden file returning a fake error can remain undetected for long periods if organizations rely only on superficial inspections.

For defenders, the lesson is clear: monitoring must extend beyond malware detection. File integrity monitoring, REST API logging, administrator account audits, and anomaly detection are now essential components of WordPress security.

From a strategic perspective, this incident reinforces the importance of defense in depth. Even if a Core vulnerability exists, layered controls such as WAFs, endpoint protection, least-privilege permissions, immutable backups, and continuous monitoring can significantly reduce the impact of successful exploitation.

Security teams should also recognize that disclosure-to-exploitation timelines continue to shrink. Attackers are increasingly automating the weaponization of newly published vulnerabilities, leaving organizations with little time to react. Rapid vulnerability management and emergency patch deployment processes are no longer optional—they are critical operational requirements.

Finally, administrators should assume that internet-facing applications are under constant automated scanning. Waiting to investigate until unusual behavior becomes visible often means attackers have already established persistence. Proactive validation, continuous monitoring, and disciplined incident response remain the strongest defenses against threats like CVE-2026-63030.

✅ Confirmed: CVE-2026-63030 has been assigned to the disclosed WordPress Core vulnerability, and researchers have reported active exploitation attempts shortly after public disclosure.

✅ Confirmed: The observed attack chain leverages the WordPress REST API, performs SQL Injection validation using a UNION SELECT query, and can deploy a PHP webshell to achieve persistent remote access.

✅ Confirmed: Investigating the wp-content/cache/ directory for unauthorized PHP files and auditing newly created administrator accounts are valid indicators of compromise based on the documented attack behavior.

Prediction

(+1) WordPress maintainers and hosting providers will accelerate emergency patch deployment, while managed hosting platforms are likely to introduce temporary mitigations and enhanced detection rules to protect customers automatically.

(-1) Cybercriminals will continue mass-scanning the internet for unpatched WordPress installations, and organizations that delay remediation may experience large-scale compromises, website defacement, credential theft, ransomware deployment, or use of their servers in broader malicious campaigns.

▶️ Related Video (84% Match):

🕵️‍📝Let’s dive deep and fact‑check.

🎓 Live Courses & Certifications:

Join Undercode Academy for Verified Certifications

🚀 Request a Custom Project:

Secure, high-velocity infrastructure and disruptive technological engineering. Contact our engineering team for high-tier development and proprietary systems:
[email protected]
💎 Smart Architecture | 🛡️ Secure by Design | ⭐ Trusted by Thousands

References:

Reported By: isc.sans.edu
Extra Source Hub (Possible Sources for article):
https://www.stackexchange.com
Wikipedia
OpenAi & Undercode AI

Image Source:

Unsplash
Undercode AI DI v2

🔐JOIN OUR CYBER WORLD [ CVE News • HackMonitor • UndercodeNews ]

💬 Whatsapp | 💬 Telegram

📢 Follow UndercodeNews & Stay Tuned:

𝕏 formerly Twitter 🐦 | @ Threads | 🔗 Linkedin | 🦋BlueSky | 🐘Mastodon | 📺Youtube