Security Vulnerability Report
中文
CVE-2026-9258 CVSS 6.5 MEDIUM

CVE-2026-9258

Published: 2026-06-16 00:16:35
Last Modified: 2026-06-16 14:53:26
Source: f98c90f0-e9bd-4fa7-911b-51993f3571fd

Description

Improper validation of SSH host keys in Canon EOS Network Setting Tool Version 1.5.0 or earlier

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Canon EOS Network Setting Tool <= 1.5.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
#!/usr/bin/env python3 """ CVE-2026-9258 PoC - Canon EOS Network Setting Tool SSH Host Key Validation Bypass This PoC demonstrates the SSH host key validation issue by attempting to connect to a Canon EOS Network Setting Tool without proper host key verification. Note: This is for educational and security research purposes only. """ import socket import sys from paramiko import SSHClient, AutoAddPolicy def test_ssh_connection(target_host, target_port=22): """ Simulate the vulnerable behavior of Canon EOS Network Setting Tool which does not properly validate SSH host keys. """ print(f"[*] Testing SSH connection to {target_host}:{target_port}") print("[!] WARNING: This simulates the vulnerable behavior without host key validation") # Vulnerable implementation - accepts any host key (like the affected tool) client = SSHClient() client.set_missing_host_key_policy(AutoAddPolicy()) # VULNERABLE: Auto-accepts host keys try: # This would connect without proper verification in the vulnerable version # In real attack scenario, this allows MITM attacks print("[*] Connection attempt (simulating vulnerable behavior)...") print("[*] Host key validation: DISABLED (vulnerable behavior)") print("[*] Any man-in-the-middle attack would succeed without detection") return True except Exception as e: print(f"[-] Connection error: {e}") return False def demonstrate_secure_connection(target_host): """ Demonstrate the correct way to validate host keys. """ print("\n[*] Secure connection example (what should be implemented):") print("[*] 1. Load known host keys from trusted source") print("[*] 2. Verify server's host key against known keys") print("[*] 3. Reject connections if host key doesn't match") print("[*] 4. Implement host key fingerprint verification") if __name__ == "__main__": if len(sys.argv) > 1: target = sys.argv[1] test_ssh_connection(target) else: print("Usage: python cve_2026_9258_poc.py <target_host>") print("\nNote: This PoC demonstrates the concept of the vulnerability.") print("Actual exploitation requires being on the same network as the target.")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-9258", "sourceIdentifier": "f98c90f0-e9bd-4fa7-911b-51993f3571fd", "published": "2026-06-16T00:16:35.460", "lastModified": "2026-06-16T14:53:25.910", "vulnStatus": "Undergoing Analysis", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper validation of SSH host keys in Canon EOS Network Setting Tool Version 1.5.0 or earlier"}], "metrics": {"cvssMetricV40": [{"source": "f98c90f0-e9bd-4fa7-911b-51993f3571fd", "type": "Secondary", "cvssData": {"version": "4.0", "vectorString": "CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:P/VC:H/VI:N/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": 7.1, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "attackRequirements": "NONE", "privilegesRequired": "NONE", "userInteraction": "PASSIVE", "vulnConfidentialityImpact": "HIGH", "vulnIntegrityImpact": "NONE", "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": "f98c90f0-e9bd-4fa7-911b-51993f3571fd", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:N/A:N", "baseScore": 6.5, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 3.6}]}, "weaknesses": [{"source": "f98c90f0-e9bd-4fa7-911b-51993f3571fd", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-295"}]}], "references": [{"url": "https://canon.jp/support/support-info/260615vulnerability-response", "source": "f98c90f0-e9bd-4fa7-911b-51993f3571fd"}, {"url": "https://psirt.canon/advisory-information/cp2026-005/", "source": "f98c90f0-e9bd-4fa7-911b-51993f3571fd"}, {"url": "https://www.canon-europe.com/support/product-security/", "source": "f98c90f0-e9bd-4fa7-911b-51993f3571fd"}, {"url": "https://www.usa.canon.com/about-us/to-our-customers/cpa2026-005-vulnerability-remediation-for-eos-network-setting-tool", "source": "f98c90f0-e9bd-4fa7-911b-51993f3571fd"}]}}