CVE-2026-63226 Overview
CVE-2026-63226 affects printers and multifunction printers (MFPs) manufactured by Ricoh Company, Ltd. The devices do not implement restrictions on Secure Shell (SSH) port forwarding. When SSH is enabled on an affected product, an attacker can leverage port forwarding to connect to arbitrary destinations on the local area network (LAN). This turns the printer into a pivot point for reaching internal systems that should not be exposed to the SSH client. The issue is tracked under CWE-923 (Improper Restriction of Communication Channel to Intended Endpoints).
Critical Impact
An authenticated or network-adjacent attacker can abuse SSH port forwarding on Ricoh printers to pivot into internal LAN resources, bypassing perimeter controls.
Affected Products
- Ricoh printers with SSH functionality enabled
- Ricoh multifunction printers (MFPs) with SSH functionality enabled
- See Ricoh Vulnerability Advisory #ricoh-2026-000006 for the affected model list
Discovery Timeline
- 2026-07-23 - CVE-2026-63226 published to NVD
- 2026-07-23 - Last updated in NVD database
- Vendor advisory published as Ricoh #ricoh-2026-000006 and coordinated through JVN32082029
Technical Details for CVE-2026-63226
Vulnerability Analysis
The vulnerability stems from missing restrictions on SSH port forwarding in the SSH server implementation shipped with Ricoh printers and MFPs. SSH port forwarding, also known as tunneling, allows an SSH client to relay TCP connections through the SSH server to arbitrary destination hosts and ports. On a properly hardened embedded device, the SSH daemon should permit only shell or administrative operations local to the device. Ricoh's implementation does not enforce such a restriction. As a result, any user who can establish an SSH session to the printer can request direct-tcpip channels targeting other systems reachable from the device's network interface. This behavior is classified as CWE-923.
Root Cause
The root cause is a configuration and design flaw in the SSH service. The device's SSH server accepts port forwarding requests without validating the destination address or restricting forwarded channels to localhost. Options such as AllowTcpForwarding no or a PermitOpen allowlist are either absent or not enforced. Because the printer typically resides inside a trusted network segment, its forwarded connections inherit that trust.
Attack Vector
An attacker with SSH access to the printer opens a forwarded TCP channel to an internal target, for example an internal management interface or database. Traffic exits the printer's LAN interface and reaches destinations that may block direct connections from the attacker's own network location. The printer therefore functions as an unauthorized network relay. Impact is limited to confidentiality of subsequent services reached through the tunnel, consistent with the vulnerability's subsequent-system scope in the CVSS 4.0 vector.
No public proof-of-concept exploit code is available. The exploitation mechanism relies on standard OpenSSH client features such as ssh -L or ssh -D. Refer to the Ricoh security advisory for technical specifics.
Detection Methods for CVE-2026-63226
Indicators of Compromise
- Outbound TCP connections originating from a printer's IP address to non-print-related internal services such as RDP, SMB, or database ports
- SSH sessions to printer management IPs from unexpected internal or external sources
- Unusually long-lived SSH sessions to Ricoh device IP addresses, indicative of active tunnels
Detection Strategies
- Inspect NetFlow or firewall logs for connections where the source is a printer VLAN and the destination is a server VLAN on non-printing ports
- Alert on any TCP 22 (SSH) connection to devices identified as Ricoh printers or MFPs
- Correlate authentication events on internal services with source IPs belonging to printer subnets
Monitoring Recommendations
- Enumerate all Ricoh printers and confirm whether SSH is enabled on each device
- Add printer IP ranges to segmentation monitoring to detect east-west traffic anomalies
- Track SSH channel-open activity through packet inspection tools that decode direct-tcpip requests
How to Mitigate CVE-2026-63226
Immediate Actions Required
- Disable SSH on Ricoh printers and MFPs unless it is operationally required
- Restrict SSH access to the device by source IP using firewall access control lists
- Place printers in a dedicated VLAN with egress filtering that blocks connections to management and server subnets
Patch Information
Ricoh has published firmware guidance in advisory #ricoh-2026-000006. Administrators should consult the JVN advisory JVN32082029 and the English-language Ricoh advisory to identify the fixed firmware version for each affected model and apply updates through Ricoh's standard firmware distribution channels.
Workarounds
- Disable the SSH service on the device management console until firmware is updated
- Enforce network segmentation so printers cannot initiate TCP connections to sensitive internal subnets
- Require jump-host access to printer administration and log every SSH session for audit
# Example: block printer VLAN from initiating TCP to server VLAN except print protocols
# Replace 10.10.20.0/24 with the printer subnet and 10.10.50.0/24 with the server subnet
iptables -I FORWARD -s 10.10.20.0/24 -d 10.10.50.0/24 -p tcp \
-m multiport ! --dports 9100,631,515 -j DROP
Disclaimer: This content was generated using AI. While we strive for accuracy, please verify critical information with official sources.

