CVE-2025-34217

9.8 CRITICAL

📋 TL;DR

This vulnerability allows attackers with the matching private SSH key to gain root access to Vasion Print (formerly PrinterLogic) Virtual Appliance systems. The undocumented 'printerlogic' user has a hardcoded SSH public key and sudo privileges without password authentication. All deployments using the Virtual Appliance Host and Application (VA/SaaS) are affected.

💻 Affected Systems

Products:
  • Vasion Print Virtual Appliance Host and Application
  • PrinterLogic Virtual Appliance
Versions: All versions prior to patched releases
Operating Systems: Linux-based appliance OS
Default Config Vulnerable: ⚠️ Yes
Notes: Affects both VA and SaaS deployments. The vulnerability exists in the default configuration.

📦 What is this software?

⚠️ Risk & Real-World Impact

🔴

Worst Case

Complete compromise of the appliance with root access, allowing data theft, lateral movement, and persistent backdoor installation.

🟠

Likely Case

Unauthorized root access leading to credential harvesting, configuration manipulation, and potential network pivoting.

🟢

If Mitigated

Limited impact if SSH access is restricted and network segmentation prevents lateral movement.

🌐 Internet-Facing: HIGH if SSH is exposed to the internet, as attackers can directly exploit the hardcoded key.
🏢 Internal Only: HIGH as any internal attacker with the private key gains immediate root access.

🎯 Exploit Status

Public PoC: ⚠️ Yes
Weaponized: LIKELY
Unauthenticated Exploit: ✅ No
Complexity: LOW

Exploitation requires possession of the matching private SSH key. The vulnerability details and exploitation method are publicly documented.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: Check vendor advisory for specific patched versions

Vendor Advisory: https://help.printerlogic.com/saas/Print/Security/Security-Bulletins.htm

Restart Required: Yes

Instructions:

1. Apply the latest security patch from Vasion. 2. Restart the appliance. 3. Verify the 'printerlogic' user and hardcoded SSH key are removed.

🔧 Temporary Workarounds

Remove hardcoded SSH key

linux

Delete the undocumented SSH public key from the authorized_keys file

sudo rm /home/printerlogic/.ssh/authorized_keys
sudo chattr +i /home/printerlogic/.ssh/authorized_keys

Restrict SSH access

linux

Configure firewall rules to limit SSH access to trusted IPs only

sudo iptables -A INPUT -p tcp --dport 22 -s TRUSTED_IP -j ACCEPT
sudo iptables -A INPUT -p tcp --dport 22 -j DROP

🧯 If You Can't Patch

  • Remove the 'printerlogic' user account entirely from the system
  • Implement strict network segmentation to isolate the appliance from critical systems

🔍 How to Verify

Check if Vulnerable:

Check if /home/printerlogic/.ssh/authorized_keys exists and contains hardcoded SSH public key. Also verify sudoers rules for printerlogic_ssh group.

Check Version:

Check appliance management interface or contact vendor for version information

Verify Fix Applied:

Confirm the authorized_keys file is empty or removed, and the printerlogic_ssh group no longer has NOPASSWD: ALL privileges.

📡 Detection & Monitoring

Log Indicators:

  • SSH authentication attempts using the printerlogic user
  • Sudo commands executed by printerlogic user without password prompt

Network Indicators:

  • SSH connections to the appliance from unexpected sources
  • Unusual root-level activity following SSH access

SIEM Query:

source="auth.log" AND "printerlogic" AND "Accepted publickey" OR source="sudo.log" AND user="printerlogic"

🔗 References

📤 Share & Export