Is anyone aware of an ssh class for php? I've searched the web over and over and can't find anything. I'm sure I could end up writing one myself, but I'd prefer to not re-invent the wheel..
I know of a simple Telnet class, but im pretty sure there is no SSH class out there. Moreoever, im pretty sure that PHP simply is not a prog. language to handle a protocol like SSH.
well php can open an internet socket.. write arbitrary data to that socket.. and read arbitrary data from the socket... so an ssh class is possible... however ... i haven't ever seen one...
SSH connections are encrypted from point A to point B. It would be possible to use current crypto function of PHP to build a SSH class, but it would be dang slow, and waaaay to complicated to code. Just a thought.