WordPress Under Siege: Hackers Exploit Gravity SMTP Flaw on 100,000 Sites as New Critical Plugin Threat Emerges + Video

Listen to this Post

Featured ImageIntroduction: A New Wave of WordPress Security Concerns

The WordPress ecosystem is facing another significant cybersecurity challenge as attackers actively exploit a newly disclosed vulnerability in the popular Gravity SMTP plugin. Affecting more than 100,000 websites worldwide, the flaw allows unauthorized users to access highly sensitive system information without needing any login credentials. While the vulnerability has been classified with a medium severity score, security researchers warn that its real-world impact could be far more damaging due to the exposure of email service credentials, API keys, server configurations, and internal website details.

At the same time, a separate critical vulnerability affecting the Avada Builder plugin has intensified concerns among website administrators. Together, these incidents highlight a growing trend where attackers increasingly target WordPress plugins as entry points into larger website compromises.

Gravity SMTP Vulnerability Exposes Sensitive Data

Security researchers have identified an unauthenticated information disclosure vulnerability in the Gravity SMTP plugin, tracked as CVE-2026-4020. The flaw affects all versions up to and including 2.1.4 and was officially patched in version 2.1.5 released on March 17.

The vulnerability originates from a misconfigured REST API endpoint within the plugin. Specifically, the endpoint’s permission callback function improperly returns a value that grants unrestricted access to anyone making a request. As a result, attackers can retrieve a detailed JSON-based system report without authentication.

The exposed report may reveal a treasure trove of sensitive information, including:

Exposed API Keys and Authentication Tokens

One of the most concerning aspects of the vulnerability is the exposure of API keys, OAuth tokens, and authentication secrets associated with email service providers. Attackers may gain access to credentials connected to platforms such as Amazon SES, Google email services, Mailjet, Resend, and Zoho.

Possession of these credentials could allow threat actors to impersonate legitimate organizations, distribute phishing emails, conduct spam campaigns, or abuse trusted communication channels.

Internal WordPress Infrastructure Disclosure

Beyond credentials, attackers can also obtain detailed information about the WordPress installation itself. This includes plugin inventories, active themes, software versions, and system configurations.

Such intelligence dramatically reduces the reconnaissance phase required for future attacks, enabling criminals to identify outdated components and chain multiple vulnerabilities together.

Server and Database Information Exposure

The leaked system report can also expose server-side information such as PHP versions, hosting environments, database server details, and table structures.

While these details may not immediately compromise a website, they provide attackers with valuable context for designing highly targeted exploitation attempts.

Massive Exploitation Campaign Detected

WordPress security firm Wordfence has reported large-scale exploitation attempts targeting vulnerable websites. According to the company, its firewall systems blocked more than 17 million attack requests directed at protected customers.

Security telemetry revealed a major spike in activity on June 7, when approximately four million exploit requests were detected and blocked in a single day. Elevated attack volumes continued for several days afterward, indicating a coordinated scanning campaign across the internet.

The volume of exploitation attempts demonstrates how quickly cybercriminals weaponize newly disclosed vulnerabilities, often scanning millions of websites within hours of public disclosure.

Indicators of Compromise Website Owners Should Watch

Administrators concerned about potential targeting should immediately review their web server access logs.

A particularly important indicator of compromise involves requests directed at:

/wp-json/gravitysmtp/v1/tests/mock-data

Additional suspicion should be raised when the request contains the parameter:

?page=gravitysmtp-settings

Repeated requests to these paths may indicate automated reconnaissance activity or active exploitation attempts.

Avada Builder Vulnerability Raises Further Alarm

As organizations respond to the Gravity SMTP issue, another serious WordPress plugin vulnerability has emerged.

Researchers recently disclosed CVE-2026-8713, a critical arbitrary file deletion vulnerability affecting the Avada Builder plugin, which is installed on approximately one million websites.

Unlike the Gravity SMTP issue, this vulnerability enables attackers to delete files from the server through a path traversal weakness. The attack becomes possible when a published Avada form is configured to store submissions in the site’s database.

Potential for Complete Website Takeover

The consequences of arbitrary file deletion can be devastating.

Attackers may target critical WordPress files such as wp-config.php, effectively forcing the website into a reinstallation state. Under certain circumstances, this can create pathways toward complete site compromise, privilege escalation, and even remote code execution.

Security experts warn that although active exploitation has not yet been observed, the vulnerability possesses characteristics that make it highly attractive to attackers.

The issue has been fixed in Avada Builder version 3.15.4, and administrators are strongly encouraged to update immediately.

Why Medium Severity Ratings Can Be Misleading

Many organizations prioritize vulnerabilities solely based on CVSS severity scores. However, the Gravity SMTP incident serves as a reminder that medium-rated vulnerabilities can still create significant operational risk.

When exposed data includes active credentials, API secrets, or detailed infrastructure intelligence, attackers gain powerful tools for conducting secondary attacks. In many cases, information disclosure vulnerabilities act as the first stage of larger intrusion campaigns.

Organizations that ignore medium-severity findings may unknowingly leave valuable reconnaissance data publicly accessible for months.

The Growing WordPress Plugin Security Challenge

WordPress remains the

Thousands of third-party plugins provide valuable functionality, but each additional component introduces new attack surfaces. Security issues often emerge not from WordPress itself but from plugin developers making mistakes in authentication checks, access controls, or input validation.

The latest vulnerabilities demonstrate how a single coding oversight can place hundreds of thousands of websites at risk almost overnight.

Deep Analysis: Technical Perspective and Defensive Commands

Understanding the technical side of these attacks can help defenders verify exposure and improve monitoring capabilities.

Check Installed Plugin Versions

Linux

wp plugin list

Windows PowerShell

wp plugin list

Search for Gravity SMTP Exploitation Attempts

Linux

grep "gravitysmtp" /var/log/apache2/access.log
Nginx
grep "gravitysmtp" /var/log/nginx/access.log

Detect Suspicious REST API Requests

grep "mock-data" access.log

Verify WordPress Configuration Integrity

ls -la wp-config.php

Monitor Recent File Changes

find /var/www/html -mtime -7

Check Running PHP Version

php -v

Identify Vulnerable Components

wp plugin update –all

Audit Web Server Logs

tail -f /var/log/nginx/access.log

Scan for Exposed Credentials

grep -Ri "apikey" wp-content/

Verify Active Security Plugins

wp plugin status

Consistent auditing, log analysis, and proactive patch management remain the most effective defenses against plugin-based attacks.

What Undercode Say:

The Gravity SMTP vulnerability is a textbook example of how information disclosure flaws are often underestimated.

Many administrators see the phrase “information disclosure” and assume the issue merely leaks harmless technical details.

In reality, exposed API keys can become more dangerous than some remote code execution vulnerabilities.

Attackers frequently begin campaigns with reconnaissance.

The easier reconnaissance becomes, the faster a complete compromise follows.

The

No brute force attempts are needed.

No stolen credentials are required.

No social engineering is necessary.

An attacker only needs internet access.

The volume of blocked requests reported by Wordfence demonstrates industrial-scale automation.

Modern attackers rarely target a single website.

They scan entire internet ranges looking for exposed endpoints.

The leaked system reports effectively act as attack blueprints.

Every disclosed plugin version becomes a clue.

Every server detail becomes intelligence.

Every API token becomes a potential weapon.

What makes this incident particularly concerning is the combination of credential exposure and environmental disclosure.

Together, they provide both access and context.

Cybercriminal groups increasingly rely on this exact formula.

Gather intelligence first.

Exploit weaknesses second.

Monetize access third.

The simultaneous disclosure of the Avada Builder flaw creates an even more troubling scenario.

Attackers often chain vulnerabilities.

One weakness provides visibility.

Another provides execution.

Combined vulnerabilities frequently produce impacts greater than either flaw alone.

Organizations running large WordPress deployments should reassess plugin governance policies.

Routine updates are no longer optional.

They are part of operational survival.

Security monitoring must evolve beyond malware detection.

Configuration exposure deserves equal attention.

The biggest lesson from this event is simple.

Attackers move faster than patch cycles.

Every delayed update expands the attack window.

Every forgotten plugin becomes a future liability.

Website security today is less about preventing every vulnerability and more about reducing the time between disclosure and remediation.

The organizations that patch fastest will continue to outperform those relying solely on perimeter defenses.

✅ Gravity SMTP vulnerability CVE-2026-4020 affects versions 2.1.4 and earlier and was addressed in version 2.1.5.

✅ Security researchers reported active exploitation attempts, with millions of requests being blocked against protected websites.

✅ Avada

Prediction

(+1) WordPress plugin developers will increasingly adopt stricter security audits and automated code-review processes, reducing the frequency of authentication bypass and information disclosure flaws over the next few years. 🚀

(+1) Hosting providers are likely to implement stronger plugin vulnerability monitoring systems that automatically alert customers when high-risk components require updates. 🔐

(-1) Attackers will continue targeting widely deployed plugins because a single vulnerability can expose hundreds of thousands of websites simultaneously, making plugin ecosystems one of the most profitable attack surfaces. ⚠️

(-1) Organizations that delay patching WordPress plugins may experience a rise in credential theft, phishing abuse, and chained attacks as cybercriminal groups become more efficient at automating exploitation campaigns. 📉

▶️ Related Video (74% 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: www.bleepingcomputer.com
Extra Source Hub (Possible Sources for article):
https://www.digitaltrends.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