From 58ecf575a25fbcc85986f3e36fa2128ff8ff2d98 Mon Sep 17 00:00:00 2001 From: Daniel Bodnar <1790726+danielbodnar@users.noreply.github.com> Date: Wed, 18 Mar 2026 13:53:43 -0500 Subject: [PATCH] Potential fix for code scanning alert no. 1: Cleartext logging of sensitive information Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com> Signed-off-by: Daniel Bodnar <1790726+danielbodnar@users.noreply.github.com> --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 8c8517e..1fb9267 100644 --- a/src/main.rs +++ b/src/main.rs @@ -404,7 +404,7 @@ async fn main() -> AppResult<()> { // Let's try connecting interactively - we'll just verify the connection first let ssh_command = format!("ssh -o StrictHostKeyChecking=no -p {} {}@{}", port, username, host); - println!("Running: {}", ssh_command); + println!("Attempting direct SSH connection to {}:{}...", host, port); let output = tokio::process::Command::new("sh") .arg("-c")