Sample code for 30+ languages & platforms
AutoIt

Authenticate an SSH Tunnel with a Password

See more Socket/SSL/TLS Examples

Demonstrates Socket.SshAuthenticatePw, which authenticates an SSH tunnel session using a login and password. Call SshOpenTunnel first.

Background. Authenticate before opening forwarded channels. The password should come from a secure source and never be logged; public-key authentication is often preferred.

Chilkat AutoIt Downloads

AutoIt
Local $bSuccess = False

$oSocket = ObjCreate("Chilkat.Socket")

$bSuccess = $oSocket.SshOpenTunnel("ssh.example.com",22)
If ($bSuccess = False) Then
    ConsoleWrite($oSocket.LastErrorText & @CRLF)
    Exit
EndIf

;  Authenticate the SSH tunnel session with a login and password.
;  The SSH password should come from a secure source rather than being hard-coded.
Local $sshPassword = "mySshPassword"
$bSuccess = $oSocket.SshAuthenticatePw("sshUser",$sshPassword)
If ($bSuccess = False) Then
    ConsoleWrite($oSocket.LastErrorText & @CRLF)
    Exit
EndIf

ConsoleWrite("SSH authentication succeeded." & @CRLF)