User Michael Conigliaro - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T21:28:16Z http://stackoverflow.com/feeds/user/115635 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/936783/why-no-pure-python-ssh1-version-1-client-implementations 1 Why no pure Python SSH1 (version 1) client implementations? Michael Conigliaro 2009-06-01T21:06:31Z 2009-06-02T16:25:55Z <p>There seem to be a few good pure Python SSH2 client implementations out there, but I haven't been able to find one for SSH1. Is there some specific reason for this other than lack of interest in such a project? I am fully aware of the many SSH1 vulnerabilities, but a pure Python SSH1 client implementation would still be very useful to those of us who want to write SSH clients to manage older embedded devices which only support SSH1 (Cisco PIX for example). I also know I'm not the only person looking for this.</p> <p>The reason I'm asking is because I'm bored, and I've been thinking about taking a stab at writing this myself. I've just been hesitant to start, since I know there are a lot of people out there who are much smarter than me, and I figured there might be some reason why nobody has done it yet.</p> http://stackoverflow.com/questions/936783/why-no-pure-python-ssh1-version-1-client-implementations/940483#940483 Comment by Michael Conigliaro on Why no pure Python SSH1 (version 1) client implementations? Michael Conigliaro 2009-06-02T18:13:59Z 2009-06-02T18:13:59Z I actually did find an RFC (<a href="http://www.snailbook.com/docs/protocol-1.5.txt" rel="nofollow">snailbook.com/docs/protocol-1.5.txt</a>), but having just learned that Ettercap can apparently decode SSH1 sessions in real time, you make a good point about SSH1 not being much better than telnet. So I guess I have my answer. Thanks. http://stackoverflow.com/questions/936783/why-no-pure-python-ssh1-version-1-client-implementations/936816#936816 Comment by Michael Conigliaro on Why no pure Python SSH1 (version 1) client implementations? Michael Conigliaro 2009-06-01T21:15:55Z 2009-06-01T21:15:55Z i doubt it. as far as i know, ssh2 is a complete rewrite of the ssh protocol.