SSH agent, wrong packet length
#php editor Shinichi will introduce to you a common network error today - "SSH agent, packet length error". When using the SSH agent tool, you sometimes encounter this error message, causing the network connection to fail. This error is usually caused by the packet length being set incorrectly. In this article, we will explain the cause of this error in detail and provide some solutions to fix the problem and ensure that your network connection is smooth.
Question content
Implementing ssh proxy in go, errors occur due to incorrect packet length. These are ssh errors in debug mode:
debug1: ssh2_msg_kexinit sent bad packet length 1231976033. ssh_dispatch_run_fatal: connection to ::1 port 8080: message authentication code incorrect
Code:
func handleSSH(conn net.Conn, r *bufio.Reader, protocol string) { target, err := url.Parse("ssh://localhost:3333") if err != nil { fmt.Println("Error parsing target", err) conn.Close() return } targetConn, err := net.Dial("tcp", target.Host) if err != nil { fmt.Println("error dialing SSH target:", err) conn.Close() return } defer targetConn.Close() var wg sync.WaitGroup wg.Add(2) go func() { _, err := io.Copy(targetConn, conn) if err != nil { fmt.Println("error copying data to target:", err) } wg.Done() }() go func() { _, err := io.Copy(conn, targetConn) if err != nil { fmt.Println("error copying data from target:", err) } wg.Done() }() wg.Wait() conn.Close() } // EDIT func connection(conn net.Conn) { r := bufio.NewReader(conn) protocol, err := r.ReadString('\n') if err != nil { fmt.Println("Error reading first line", err) conn.Close() return } if protocol[0:3] == "SSH" { handleSSH(conn, r, protocol) } } func main() { ln, err := net.Listen("tcp", ":8080") if err != nil { panic(err) } defer ln.Close() for { conn, err := ln.Accept() if err != nil { panic(err) } go connection(conn) } }
EDIT: Added code with relevant information on how to initiate the connection and reproduce the error.
My best guess is that the ssh negotiation process was interrupted and things got out of sync.
Workaround
The code reads the first line from the client and checks the protocol type so the appropriate handler can be called:
protocol, err := r.ReadString('\n') ... if protocol[0:3] == "SSH" { handleSSH(conn, r, protocol) } }
But the code cannot forward the read bytes to the connected server. These bytes are located in protocol
and provided to handlessh
. But once the connection is established, it cannot send these bytes to the connected server. Instead, it only copies new data between the client and server.
This means that the server did not get the first row from the client. Therefore, it may complain about protocol errors like invalid ssh id string.
which is forwarded to the client and misinterpreted as valid data from the ssh connection.
The above is the detailed content of SSH agent, wrong packet length. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics











Golang is better than Python in terms of performance and scalability. 1) Golang's compilation-type characteristics and efficient concurrency model make it perform well in high concurrency scenarios. 2) Python, as an interpreted language, executes slowly, but can optimize performance through tools such as Cython.

Golang is better than C in concurrency, while C is better than Golang in raw speed. 1) Golang achieves efficient concurrency through goroutine and channel, which is suitable for handling a large number of concurrent tasks. 2)C Through compiler optimization and standard library, it provides high performance close to hardware, suitable for applications that require extreme optimization.

Goisidealforbeginnersandsuitableforcloudandnetworkservicesduetoitssimplicity,efficiency,andconcurrencyfeatures.1)InstallGofromtheofficialwebsiteandverifywith'goversion'.2)Createandrunyourfirstprogramwith'gorunhello.go'.3)Exploreconcurrencyusinggorout

Golang is suitable for rapid development and concurrent scenarios, and C is suitable for scenarios where extreme performance and low-level control are required. 1) Golang improves performance through garbage collection and concurrency mechanisms, and is suitable for high-concurrency Web service development. 2) C achieves the ultimate performance through manual memory management and compiler optimization, and is suitable for embedded system development.

Goimpactsdevelopmentpositivelythroughspeed,efficiency,andsimplicity.1)Speed:Gocompilesquicklyandrunsefficiently,idealforlargeprojects.2)Efficiency:Itscomprehensivestandardlibraryreducesexternaldependencies,enhancingdevelopmentefficiency.3)Simplicity:

C is more suitable for scenarios where direct control of hardware resources and high performance optimization is required, while Golang is more suitable for scenarios where rapid development and high concurrency processing are required. 1.C's advantage lies in its close to hardware characteristics and high optimization capabilities, which are suitable for high-performance needs such as game development. 2.Golang's advantage lies in its concise syntax and natural concurrency support, which is suitable for high concurrency service development.

Golang and Python each have their own advantages: Golang is suitable for high performance and concurrent programming, while Python is suitable for data science and web development. Golang is known for its concurrency model and efficient performance, while Python is known for its concise syntax and rich library ecosystem.

The performance differences between Golang and C are mainly reflected in memory management, compilation optimization and runtime efficiency. 1) Golang's garbage collection mechanism is convenient but may affect performance, 2) C's manual memory management and compiler optimization are more efficient in recursive computing.
