Skip to content

CVE-2026-9048: Slider Revolution Sensitive Information Exposure via slider.get.full

HERMES

HERMES THREAT SCORE & CLOUD CREDENTIAL EXFILTRATION

Target: Slider Revolution WordPress Plugin
Confidence: 96%
76 / 100
MEDIUM

Measures real-world operational relevance, exploit weaponization, and active threat posture.

Dimension Breakdown
Exploitability 17 / 20
Threat Activity 16 / 20
Weaponization 16 / 20
Exposure 18 / 20
Prevalence 19 / 20
Impact 15 / 20
Exploit Maturity 17 / 20
Attack Chain Potential 18 / 20
⚖️ Divergence & Operational Rationale

CVSS v3.1 rates CVE-2026-9048 at 4.3 Medium (CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:N/A:N). The Hermes Threat Score assesses it at 76 (MEDIUM). The risk is heightened in enterprise setups where sliders connect to corporate social channels, as exposed Instagram OAuth tokens, Flickr API keys, YouTube Data API keys, and Facebook App IDs permit secondary lateral movement and corporate impersonation.

🕸️ Connected Knowledge Graph & Provenance

CVE-2026-9048: Slider Revolution Sensitive Information Exposure via slider.get.fullVULNERABILITY

Connected Nodes: 1
Active Relationships (Outgoing)
→ affectsPRODUCTSlider Revolution
98% VERY_HIGH

Software platform affected by security vulnerabilities and agentic attack patterns.

🔍 Why is this related? (Evidence & Provenance)

“Confirmed security vulnerability in Slider Revolution documented in Hermes dossier.”

Supporting Verified Evidence:

Slider Revolution v7 introduced modernized integration panels allowing marketing teams to dynamically stream media from social networks.

ParameterTechnical SpecificationThreat Intelligence Context
CVE IdentifierCVE-2026-9048Official NVD & Wordfence advisory
Common Weakness EnumerationCWE-200 (Information Exposure)Unmasked API tokens in serialized slider settings
Network VectorHTTP/HTTPS (80/TCP, 443/TCP)Authenticated AJAX POST (Contributor+)
Vulnerable Actionslider.get.fullAJAX endpoint returning unmasked slider JSON
Affected Versions7.0.0 to 7.0.14Slider Revolution 7.x series
Remediated Versions7.0.15Security release

When slider.get.full is called:

// Vulnerable logic in Slider Revolution 7.x
public function get_slider_full( $slider_id ) {
$slider_data = $this->get_slider_by_id( $slider_id );
// FLAW: Entire settings object returned without stripping API secrets
wp_send_json_success( $slider_data );
}

The returned JSON payload contains sensitive enterprise API keys:

{
"success": true,
"data": {
"settings": {
"instagram": { "token": "IGQVJ..." },
"youtube": { "api_key": "AIzaSy..." },
"facebook": { "app_id": "987654321", "app_secret": "ab12cd34..." }
}
}
}

  1. Update Slider Revolution to 7.0.15: Update immediately via the WordPress dashboard or FTP.
  2. Rotate Exposed API Credentials: Regenerate all Instagram OAuth tokens, YouTube API keys, and Facebook App Secrets configured within slider instances.