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.

2787+ Articles
166+ 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. ARVE WordPress Plugin Backdoor Grants Instant Admin Access to ~20,000 Sites
ARVE WordPress Plugin Backdoor Grants Instant Admin Access to ~20,000 Sites

Critical Security Alert

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

SECURITYCRITICALCVE-2026-18072

ARVE WordPress Plugin Backdoor Grants Instant Admin Access to ~20,000 Sites

A supply chain attack introduced a backdoor into ARVE – Advanced Responsive Video Embedder version 10.8.7, enabling any attacker to gain full WordPress admin access with a single HTTP request. Wordfence PRISM detected the compromise within two hours. The plugin has been removed from WordPress.org.

Dylan H.

Security Team

August 7, 2026
5 min read

Affected Products

  • ARVE – Advanced Responsive Video Embedder 10.8.7

Executive Summary

A critical supply chain backdoor was inserted into ARVE – Advanced Responsive Video Embedder, a WordPress plugin with approximately 20,000 active installations, on July 28, 2026. The malicious version (10.8.7) contains a hidden authentication bypass backdoor in php/fn-update-check.php that allows any attacker to establish a fully authenticated WordPress administrator session with a single HTTP request — no credentials required.

Wordfence's autonomous AI detection system, PRISM, flagged the compromise within two hours of the malicious commit being introduced. WordPress.org removed the plugin from its repository the same day.

The plugin has no patched version. All sites running ARVE version 10.8.7 must remove it immediately.

AttributeValue
CVE IDCVE-2026-18072
CVSS Score9.8 (Critical)
Attack TypeSupply Chain — Authentication Bypass Backdoor
AuthenticationNone required
Privileges RequiredNone
User InteractionNone
Plugin StatusRemoved from WordPress.org — July 28, 2026
Patch AvailableNo — remove plugin entirely
C2 Infrastructurefontswp.com

How the Backdoor Works

Infection Vector

The compromise is assessed as a supply chain attack via unauthorized access to a developer account. The attacker pushed version 10.8.7 with a hidden backdoor file — php/fn-update-check.php — that is loaded by the plugin's main entry point.

Backdoor Mechanism

The backdoor function _arve_uc_init() is registered on WordPress's init action hook at priority 1, meaning it executes before any standard authentication checks on every single page request.

Attack flow:
1. Attacker sends request with _wplogin=<hash> parameter
   (deliverable via URL query string, POST body, or cookie)
2. _arve_uc_init() compares the value to a hardcoded SHA-256 hash
3. On match: plugin selects an existing administrator account
4. Plugin creates a fully authenticated session for that admin user
5. Attacker has complete admin access — no credentials were checked
6. Plugin phones home to fontswp.com with the site URL and admin username

C2 Exfiltration

Upon successful exploitation, the backdoor transmits the compromised site URL and selected administrator username to the attacker-controlled domain fontswp.com. This allows the attacker to catalog high-value targets for follow-on attacks including webshell installation, malware injection, SEO spam campaigns, database exfiltration, and ransomware deployment.


Detection

How to Check If You Are Affected

Check your installed ARVE version:

# Via WP-CLI
wp plugin list --name=arve --fields=name,version,status

If you see version 10.8.7, your site is compromised.

Check for the backdoor file:

ls -la wp-content/plugins/arve/php/fn-update-check.php

If this file exists, the backdoor is present.

Check for C2 communication: Review server logs for outbound connections to fontswp.com. Any connection to this domain indicates the backdoor executed successfully.


Indicators of Compromise

IOCTypeDescription
fontswp.comDomainAttacker C2 — receives exfiltrated site data
php/fn-update-check.phpFileBackdoor file in ARVE plugin directory
_arve_uc_initFunctionBackdoor function registered on init hook
_wploginHTTP parameterBackdoor trigger parameter
_wpmHTTP parameterAlternative backdoor trigger parameter

Immediate Remediation

1. Remove the Plugin

# Via WP-CLI
wp plugin deactivate arve
wp plugin delete arve
 
# Or manually
rm -rf wp-content/plugins/arve/

Do not simply deactivate — the backdoor file must be physically deleted.

2. Audit and Reset All Administrator Accounts

wp user list --role=administrator

Delete any unrecognized admin accounts and reset passwords for all known administrator accounts.

3. Rotate WordPress Security Keys and Salts

Update wp-config.php with new keys from the WordPress salt generator to invalidate all existing sessions.

4. Inspect for Secondary Backdoors

grep -r "eval(base64_decode" wp-content/
grep -r "system(" wp-content/plugins/
grep -r "passthru(" wp-content/plugins/

5. Block C2 Domain

Block outbound connections to fontswp.com at your firewall or DNS resolver.

6. Block Backdoor Parameters at WAF

Add rules to block inbound HTTP requests containing _wplogin or _wpm parameters.


Timeline

DateEvent
July 28, 2026Malicious ARVE v10.8.7 pushed to WordPress.org
July 28, 2026Wordfence PRISM detects backdoor within 2 hours
July 28, 2026Wordfence pushes firewall rules to Premium users
July 28, 2026WordPress.org removes ARVE plugin from repository
August 27, 2026Wordfence free-tier firewall rules scheduled for deployment

Key Takeaways

  1. CVSS 9.8 — Complete authentication bypass; full admin takeover with a single HTTP request
  2. ~20,000 sites affected — Any site running ARVE v10.8.7 must act immediately
  3. No patched version — Remove the plugin entirely; WordPress.org has pulled it
  4. Audit all admin accounts — Attacker may have exfiltrated data to C2 before detection
  5. Block fontswp.com — Outbound connections confirm successful exploitation
  6. Rotate all WordPress security keys — Invalidate all existing sessions

References

  • Hackread — Wordfence Finds Critical Backdoor in ARVE WordPress Plugin
  • CyberSecurityNews — WordPress Plugin Backdoor Sends Details to C2
  • GBHackers — Critical WordPress Plugin Backdoor Exposes 20,000 Sites
  • ToolsLib Blog — CVE-2026-18072: ARVE Backdoor Analysis
#WordPress#CVE-2026-18072#Supply Chain#Backdoor#ARVE#Wordfence#Plugin

Related Articles

CVE-2026-15282: WordPress Instant Appointment Plugin Critical File Upload

A critical unauthenticated arbitrary file upload flaw (CVSS 9.8) in the Instant Appointment WordPress plugin allows attackers to upload and execute...

3 min read

CVE-2026-8095: WordPress Frontend File Manager Plugin Allows Arbitrary File Deletion

A high-severity authenticated file deletion vulnerability in the nmedia Frontend File Manager Plugin for WordPress allows subscribers to delete any file...

5 min read

CVE-2026-6443: WordPress Accordion Plugin Backdoor in Version 1.4.6

The Accordion and Accordion Slider WordPress plugin version 1.4.6 was sold to a malicious threat actor who embedded a persistent backdoor, granting...

6 min read
Back to all Security Alerts