Skip to main content
COSMICBYTEZLABS
NewsSecurityHOWTOsToolsTraining
StudyProjectsNewsletterHire MeAbout
Subscribe

Press Enter to search or Esc to close

News
Security
HOWTOs
Tools
Training
Study
Projects
Newsletter
Hire Me
About
RSS Feed
Reading List
Subscribe

Stay in the Loop

Get the latest security alerts, tutorials, and tech insights delivered to your inbox.

Subscribe NowFree forever. No spam.
COSMICBYTEZLABS

Your trusted source for IT intelligence, cybersecurity insights, and hands-on technical guides.

2696+ Articles
165+ Guides

CONTENT

  • Latest News
  • Security Alerts
  • HOWTOs
  • Checklists
  • Projects
  • Exam Prep

RESOURCES

  • Search
  • Browse Tags
  • Newsletter Archive
  • Reading List
  • RSS Feed

COMPANY

  • About Us
  • Contact
  • Privacy Policy
  • Terms of Service

© 2026 CosmicBytez Labs. All rights reserved.

System Status: Operational
  1. Home
  2. Security
  3. Critical Auth Bypass in Frontend Admin Plugin Enables Full Account Takeover
Critical Auth Bypass in Frontend Admin Plugin Enables Full Account Takeover

Critical Security Alert

This vulnerability is actively being exploited. Immediate action is recommended.

SECURITYCRITICALCVE-2026-75816

Critical Auth Bypass in Frontend Admin Plugin Enables Full Account Takeover

A critical flaw in the Frontend Admin by DynamiApps WordPress plugin lets unauthenticated attackers hijack any account, including admins.

Dylan H.

Security Team

September 6, 2026
5 min read

Affected Products

  • Frontend Admin by DynamiApps ≤ 3.29.12

Executive Summary

A critical authentication bypass vulnerability (CVE-2026-75816) has been disclosed in Frontend Admin by DynamiApps, a popular WordPress plugin used to build front-end forms and dashboards. The flaw carries a CVSS score of 9.8 and lets an unauthenticated attacker overwrite the email address on any user account — including an administrator's — and then ride WordPress's native password-reset flow straight to full account takeover.

CVSS Score: 9.8 (Critical)

The bug lives in the plugin's pre_update_value function, which performs no capability or ownership check before writing form submissions to user records. A companion logic flaw in ActionPost::conditions_logic() short-circuits its current_user_can('edit_post') gate whenever the submitted post ID is non-numeric (a string like user_1, for example) instead of a real post ID. Chaining the two lets an anonymous visitor route a form submission to arbitrary user records with no authorization check at all.


Vulnerability Overview

AttributeValue
CVE IDCVE-2026-75816
CVSS Score9.8 (Critical)
CWECWE-287 (Improper Authentication)
TypeAuthentication Bypass → Account Takeover
Attack VectorNetwork (no authentication required)
Privileges RequiredNone
User InteractionNone
DisclosedSeptember 6, 2026

Affected Versions

PluginAffected VersionsFixed Version
Frontend Admin by DynamiApps≤ 3.29.123.29.13

This is not the plugin's first authentication issue. A related flaw, CVE-2026-15606, affected versions up to 3.29.9 and let authenticated subscriber-level users reset any user's password. WPScan's advisory history for this plugin also lists prior privilege-escalation and SQL injection findings — sites running older forks should treat a full update, not just a point patch, as the safe move.


Attack Vector

1. Attacker locates a site running Frontend Admin ≤ 3.29.12 with a public-facing form
2. Attacker submits the form with a non-numeric post ID (e.g. "user_1")
3. ActionPost::conditions_logic() short-circuits its current_user_can('edit_post') check
4. pre_update_value() writes the submitted value directly to a target user's record
   with no ownership check — attacker sets the victim's email to an address they control
5. Attacker triggers WordPress's native "lost password" flow for that account
6. Password-reset link is delivered to the attacker-controlled email
7. Attacker sets a new password and logs in as the victim — including as an administrator

Impact of Successful Exploitation

ImpactDescription
Full Account TakeoverAttacker gains control of any targeted account, including admins
Site-Wide CompromiseAdmin takeover enables plugin/theme editing and arbitrary PHP execution
Data ExposureAccess to any content or PII gated behind the compromised account
PersistenceAttacker can create additional rogue admin accounts
No Credentials NeededExploitation requires no prior authentication whatsoever

Immediate Remediation

Step 1: Update Immediately

# Via WP-CLI
wp plugin update frontend-admin
 
# Verify the installed version
wp plugin get frontend-admin --field=version

Or update via Plugins > Installed Plugins > Frontend Admin > Update Now in the WordPress dashboard. Confirm the reported version is 3.29.13 or later.

Step 2: Audit Recent Account Activity

# Check for unexpected email-address changes on user accounts
wp user list --fields=ID,user_login,user_email,user_registered
 
# Review the password-reset and login audit trail if a security plugin logs it
grep -i "password reset\|user_email" /path/to/wordpress/wp-content/debug.log

Look specifically for administrator accounts whose registered email address doesn't match what your team expects.

If Immediate Patching Is Not Possible

  1. Deactivate the Frontend Admin plugin until the update can be applied
  2. Disable or restrict public-facing forms built with the plugin
  3. Enable two-factor authentication for all administrator accounts as defense in depth
  4. Monitor for unauthorized email changes via a file/database integrity monitor

Detection Indicators

IndicatorDescription
Unexpected user_email changesCore sign of exploitation attempts
Password-reset emails not requested by the userAttacker triggering the reset flow post-hijack
New administrator accountsPost-takeover persistence
Form submissions with non-numeric ID-like fieldsExploitation attempt against the vulnerable logic gate

Post-Remediation Steps

  1. Confirm plugin updated to 3.29.13 or later
  2. Force-reset passwords for all administrator and editor accounts
  3. Verify email addresses on record for every privileged account
  4. Review for unauthorized admin accounts created during the exposure window
  5. Rotate WordPress security keys and salts (wp config shuffle-salts)
  6. Enable 2FA for all privileged accounts going forward

References

  • Mallory — Critical Frontend Admin WordPress Plugin Flaw Enables Administrator Takeover
  • WPScan — Frontend Admin by DynamiApps Vulnerability Database
  • NIST NVD — CVE-2026-75816

Related Reading

  • WordPress Plugin Vulnerability (CVSS 10.0) Under Active
  • Critical Auth Bypass in Tutor LMS Pro Exposes 30,000+
  • Critical RCE in WPvivid Backup Plugin Threatens 900,000+
#WordPress#Authentication Bypass#CVE-2026-75816#Account Takeover#Web Security

Related Articles

MyHome Core WordPress Plugin: Auth Bypass Enables Admin Takeover (CVE-2026-15980)

CVE-2026-15980 (CVSS 9.8) lets unauthenticated attackers forge activation tokens to hijack WordPress accounts via MyHome Core.

5 min read

CVE-2026-14545: TrueBooker WordPress Plugin Lets Anyone Take Over Admin Accounts

An unauthenticated password reset flaw in TrueBooker (before v1.2.4) lets any attacker set an arbitrary password on any WordPress account — including administrators — and take full control of the site.

4 min read

CVE-2026-12761: miniOrange WordPress Social Login Auth Bypass Enables Full Admin Takeover

A critical authentication bypass chain in the miniOrange Social Login and Register WordPress plugin allows unauthenticated attackers to crack a trivially...

4 min read
Back to all Security Alerts