Security Vulnerability Report
中文
CVE-2026-23659 CVSS 8.6 HIGH

CVE-2026-23659

Published: 2026-03-19 21:16:56
Last Modified: 2026-04-01 15:13:35

Description

Exposure of sensitive information to an unauthorized actor in Azure Data Factory allows an unauthorized attacker to disclose information over a network.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:microsoft:azure_data_factory:-:*:*:*:*:*:*:* - VULNERABLE
Azure Data Factory (具体受影响版本请参考官方安全通告)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# PoC for CVE-2026-23659 (Information Disclosure) # This is a conceptual check as specific endpoints are not disclosed in the summary. import requests def check_info_disclosure(target_url): """ Attempts to access sensitive information without authentication. """ headers = { "User-Agent": "CVE-2026-23659-Scanner" } # Hypothetical endpoint that might leak info response = requests.get(target_url, headers=headers, timeout=10) if response.status_code == 200: # Check for sensitive keywords in response sensitive_keywords = ['"password"', '"secret"', 'connectionString', 'accessToken'] found_keywords = [kw for kw in sensitive_keywords if kw in response.text] if found_keywords: print(f"[!] Potential Information Disclosure detected at {target_url}") print(f"[+] Found keywords: {found_keywords}") return True print(f"[-] No disclosure detected or endpoint requires auth.") return False if __name__ == "__main__": # Replace with actual target URL/Endpoint target = "https://<azure-data-factory-instance>/api/v1/sensitive-config" check_info_disclosure(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-23659", "sourceIdentifier": "[email protected]", "published": "2026-03-19T21:16:55.830", "lastModified": "2026-04-01T15:13:35.350", "vulnStatus": "Analyzed", "cveTags": [{"sourceIdentifier": "[email protected]", "tags": ["exclusively-hosted-service"]}], "descriptions": [{"lang": "en", "value": "Exposure of sensitive information to an unauthorized actor in Azure Data Factory allows an unauthorized attacker to disclose information over a network."}, {"lang": "es", "value": "Exposición de información sensible a un actor no autorizado en Azure Data Factory permite a un atacante no autorizado divulgar información a través de una red."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:N/A:N", "baseScore": 8.6, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "CHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 4.0}, {"source": "[email protected]", "type": "Primary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N", "baseScore": 7.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 3.6}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-200"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:microsoft:azure_data_factory:-:*:*:*:*:*:*:*", "matchCriteriaId": "3629F42A-8CE8-4F81-B616-A9EA9BC783F0"}]}]}], "references": [{"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-23659", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}