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.

2171+ Articles
156+ 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. CVE-2026-8457: WooCommerce Social Login Authentication Bypass (CVSS 9.8)
CVE-2026-8457: WooCommerce Social Login Authentication Bypass (CVSS 9.8)

Critical Security Alert

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

SECURITYCRITICALCVE-2026-8457

CVE-2026-8457: WooCommerce Social Login Authentication Bypass (CVSS 9.8)

A critical authentication bypass vulnerability in the WooCommerce - Social Login WordPress plugin allows unauthenticated attackers to log in as any registered user by exploiting a missing JWT signature verification in the Apple login handler.

Dylan H.

Security Team

August 2, 2026
3 min read

Affected Products

  • WooCommerce - Social Login plugin for WordPress, all versions up to and including 2.8.7

Overview

A critical authentication bypass vulnerability has been disclosed in the WooCommerce - Social Login plugin for WordPress, tracked as CVE-2026-8457 with a CVSS score of 9.8 (Critical). The flaw affects all versions up to and including 2.8.7 and allows unauthenticated attackers to bypass the login process entirely, gaining unauthorized access to any registered WordPress user account.

Vulnerability Details

The vulnerability resides in the plugin's Apple login handler. When a user authenticates via "Sign in with Apple," the plugin receives an id_token from Apple — a JSON Web Token (JWT) that identifies the authenticating user. The flawed implementation decodes only the base64-encoded payload of this JWT without verifying the cryptographic signature against Apple's public keys.

This means an attacker can craft a forged id_token with an arbitrary sub (subject) claim targeting any registered user's Apple ID, submit it to the login endpoint, and the plugin will accept it as legitimate authentication — bypassing password requirements entirely.

Technical Summary

FieldDetails
CVE IDCVE-2026-8457
CVSS Score9.8 (Critical)
Attack VectorNetwork
Attack ComplexityLow
Privileges RequiredNone
User InteractionNone
ScopeUnchanged
ImpactHigh Confidentiality, High Integrity, High Availability

Affected Products

  • WooCommerce - Social Login plugin for WordPress
  • All versions ≤ 2.8.7

Impact

An unauthenticated attacker who can reach the WordPress site's login endpoint can:

  • Log in as any registered user whose Apple ID is known or guessable
  • Gain administrator-level access if the targeted account has elevated privileges
  • Access sensitive WooCommerce order data, customer personal information, and stored payment methods
  • Pivot to full site compromise if the hijacked account has admin roles

No special knowledge of the target account's password is required — only knowledge of the Apple sub identifier associated with the account, which may be predictable or discoverable.

Recommended Actions

  1. Update immediately to a patched version of the WooCommerce - Social Login plugin (version 2.8.8 or later once available from the plugin vendor)
  2. Disable the plugin if an update is not immediately available and Apple login is not essential to site operations
  3. Audit access logs for suspicious login events via Apple social login, particularly for admin accounts
  4. Review active sessions and invalidate any suspicious authenticated sessions
  5. Enable two-factor authentication on all administrator accounts as a compensating control

Background: JWT Signature Verification

JSON Web Tokens issued by identity providers like Apple are cryptographically signed. The correct implementation requires validating the signature using the provider's published public keys (available from Apple's JWKS endpoint). Merely decoding the base64 payload without signature verification means any client can forge any identity claim — a classic and well-documented class of JWT implementation error.

WordPress plugin developers handling social authentication must always verify the full JWT signature chain before trusting any claims contained in the token payload.

References

  • NVD Entry — CVE-2026-8457
  • Apple Developer Documentation: Sign in with Apple REST API
  • RFC 7515: JSON Web Signature (JWS)
#CVE#WordPress#WooCommerce#Authentication Bypass#Critical#Apple

Related Articles

CVE-2026-15981: WordPress SAML SSO Authentication Bypass (CVSS 9.8)

A critical authentication bypass in the WordPress SAML Single Sign On plugin allows unauthenticated attackers to log in as any user, including...

4 min read

CVE-2026-12492: WooCommerce OTP Login Plugin Auth Bypass — Full Admin Takeover

The Happy Coders OTP Login for WooCommerce plugin before 2.8 allows unauthenticated attackers to bypass OTP verification and log in as any WordPress user,...

3 min read

CVE-2026-15414: WooCommerce Subscriptions Plugin Privilege Escalation (CVSS 8.8)

A high-severity privilege escalation vulnerability in the Subscriptions for WooCommerce plugin allows authenticated users to elevate their role to administrator by manipulating membership plan metadata.

3 min read
Back to all Security Alerts