User Michael Conigliaro - Stack Overflowmost recent 30 from stackoverflow.com2009-12-18T21:28:16Zhttp://stackoverflow.com/feeds/user/115635http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/936783/why-no-pure-python-ssh1-version-1-client-implementations1Why no pure Python SSH1 (version 1) client implementations?Michael Conigliaro2009-06-01T21:06:31Z2009-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#940483Comment by Michael Conigliaro on Why no pure Python SSH1 (version 1) client implementations?Michael Conigliaro2009-06-02T18:13:59Z2009-06-02T18:13:59ZI 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#936816Comment by Michael Conigliaro on Why no pure Python SSH1 (version 1) client implementations?Michael Conigliaro2009-06-01T21:15:55Z2009-06-01T21:15:55Zi doubt it. as far as i know, ssh2 is a complete rewrite of the ssh protocol.