update go ssh app

This commit is contained in:
durbok
2025-01-01 15:03:03 +01:00
parent 12ec068339
commit d422f81a09
2 changed files with 120 additions and 18 deletions

View File

@@ -2,8 +2,10 @@ package ssh
import (
"fmt"
"io/ioutil"
"log"
"os"
"os/signal"
"syscall"
"golang.org/x/crypto/ssh"
)
@@ -16,7 +18,7 @@ type SSHConfig struct {
PrivateKey string
}
// ConnectSSH handles both key-based and password authentication dynamically.
// ConnectSSH establishes an SSH connection and starts an interactive session.
func ConnectSSH(config SSHConfig) error {
log.Printf("Attempting SSH connection to %s@%s:%s", config.User, config.Host, config.Port)
@@ -25,8 +27,8 @@ func ConnectSSH(config SSHConfig) error {
// Add key-based authentication if a private key is provided
if config.PrivateKey != "" {
log.Println("Attempting key-based authentication...")
key, err := ioutil.ReadFile(config.PrivateKey)
log.Println("Using private key authentication...")
key, err := os.ReadFile(config.PrivateKey)
if err != nil {
log.Printf("Error reading private key: %v", err)
return fmt.Errorf("failed to read private key: %w", err)
@@ -43,7 +45,7 @@ func ConnectSSH(config SSHConfig) error {
// Add password-based authentication if a password is provided
if config.Password != "" {
log.Println("Attempting password-based authentication...")
log.Println("Using password authentication...")
authMethods = append(authMethods, ssh.Password(config.Password))
}
@@ -56,13 +58,13 @@ func ConnectSSH(config SSHConfig) error {
clientConfig := &ssh.ClientConfig{
User: config.User,
Auth: authMethods,
HostKeyCallback: ssh.InsecureIgnoreHostKey(), // Use a proper host key callback for production!
HostKeyCallback: ssh.InsecureIgnoreHostKey(), // For production, use a proper host key callback!
}
// Dial the SSH server
address := fmt.Sprintf("%s:%s", config.Host, config.Port)
log.Printf("Connecting to SSH server at %s...", address)
// Connect to the SSH server
client, err := ssh.Dial("tcp", address, clientConfig)
if err != nil {
log.Printf("Failed to connect to SSH server: %v", err)
@@ -70,6 +72,50 @@ func ConnectSSH(config SSHConfig) error {
}
defer client.Close()
log.Printf("Successfully connected to %s@%s:%s", config.User, config.Host, config.Port)
return nil
log.Println("SSH connection established. Starting interactive session...")
return startInteractiveSession(client)
}
// startInteractiveSession starts an interactive shell session.
func startInteractiveSession(client *ssh.Client) error {
// Create a new session
session, err := client.NewSession()
if err != nil {
return fmt.Errorf("failed to create SSH session: %w", err)
}
defer session.Close()
// Set up terminal modes
modes := ssh.TerminalModes{
ssh.ECHO: 1, // Enable echoing
ssh.TTY_OP_ISPEED: 14400,
ssh.TTY_OP_OSPEED: 14400,
}
// Request a pseudo-terminal
if err := session.RequestPty("xterm", 80, 40, modes); err != nil {
return fmt.Errorf("failed to request pseudo-terminal: %w", err)
}
// Set up input/output for the session
session.Stdin = os.Stdin
session.Stdout = os.Stdout
session.Stderr = os.Stderr
// Start an interactive shell
if err := session.Shell(); err != nil {
return fmt.Errorf("failed to start shell: %w", err)
}
// Handle Ctrl+C and other interrupts to cleanly close the session
signalChan := make(chan os.Signal, 1)
signal.Notify(signalChan, os.Interrupt, syscall.SIGTERM)
go func() {
<-signalChan
session.Close()
os.Exit(0)
}()
// Wait for the session to end
return session.Wait()
}