Comment on SSH ProxyCommand == unexpected code execution (CVE-2023-51385)parentComments−leftcenterright2yThis is interesting insight, would you care to share some parts of your ssh config indicating how you use ssh over a proxy here, most likely through a VPN?−bdd8f1df777b2y```Host github.com ProxyCommand connect -H localhost:54321 %h %p ```localhost:54321 is a SOCK5 proxy, which forwards the traffic through TLS to my VPS server.
Comments
This is interesting insight, would you care to share some parts of your ssh config indicating how you use ssh over a proxy here, most likely through a VPN?
```
Host github.com
```localhost:54321 is a SOCK5 proxy, which forwards the traffic through TLS to my VPS server.