]> git.mxchange.org Git - friendica.git/blobdiff - library/phpsec/Net/SSH1.php
bug #96 move libraries to library - better alignment of like rotator
[friendica.git] / library / phpsec / Net / SSH1.php
diff --git a/library/phpsec/Net/SSH1.php b/library/phpsec/Net/SSH1.php
new file mode 100644 (file)
index 0000000..6986a84
--- /dev/null
@@ -0,0 +1,1160 @@
+<?php\r
+/* vim: set expandtab tabstop=4 shiftwidth=4 softtabstop=4: */\r
+\r
+/**\r
+ * Pure-PHP implementation of SSHv1.\r
+ *\r
+ * PHP versions 4 and 5\r
+ *\r
+ * Here's a short example of how to use this library:\r
+ * <code>\r
+ * <?php\r
+ *    include('Net/SSH1.php');\r
+ *\r
+ *    $ssh = new Net_SSH1('www.domain.tld');\r
+ *    if (!$ssh->login('username', 'password')) {\r
+ *        exit('Login Failed');\r
+ *    }\r
+ *\r
+ *    while (true) {\r
+ *        echo $ssh->interactiveRead();\r
+ *\r
+ *        $read = array(STDIN);\r
+ *        $write = $except = NULL;\r
+ *        if (stream_select($read, $write, $except, 0)) {\r
+ *            $ssh->interactiveWrite(fread(STDIN, 1));\r
+ *        }\r
+ *    }\r
+ * ?>\r
+ * </code>\r
+ *\r
+ * Here's another short example:\r
+ * <code>\r
+ * <?php\r
+ *    include('Net/SSH1.php');\r
+ *\r
+ *    $ssh = new Net_SSH1('www.domain.tld');\r
+ *    if (!$ssh->login('username', 'password')) {\r
+ *        exit('Login Failed');\r
+ *    }\r
+ *\r
+ *    echo $ssh->exec('ls -la');\r
+ * ?>\r
+ * </code>\r
+ *\r
+ * More information on the SSHv1 specification can be found by reading \r
+ * {@link http://www.snailbook.com/docs/protocol-1.5.txt protocol-1.5.txt}.\r
+ *\r
+ * LICENSE: This library is free software; you can redistribute it and/or\r
+ * modify it under the terms of the GNU Lesser General Public\r
+ * License as published by the Free Software Foundation; either\r
+ * version 2.1 of the License, or (at your option) any later version.\r
+ *\r
+ * This library is distributed in the hope that it will be useful,\r
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of\r
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\r
+ * Lesser General Public License for more details.\r
+ *\r
+ * You should have received a copy of the GNU Lesser General Public\r
+ * License along with this library; if not, write to the Free Software\r
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston,\r
+ * MA  02111-1307  USA\r
+ *\r
+ * @category   Net\r
+ * @package    Net_SSH1\r
+ * @author     Jim Wigginton <terrafrost@php.net>\r
+ * @copyright  MMVII Jim Wigginton\r
+ * @license    http://www.gnu.org/licenses/lgpl.txt\r
+ * @version    $Id: SSH1.php,v 1.15 2010/03/22 22:01:38 terrafrost Exp $\r
+ * @link       http://phpseclib.sourceforge.net\r
+ */\r
+\r
+/**\r
+ * Include Math_BigInteger\r
+ *\r
+ * Used to do RSA encryption.\r
+ */\r
+require_once('Math/BigInteger.php');\r
+\r
+/**\r
+ * Include Crypt_Null\r
+ */\r
+//require_once('Crypt/Null.php');\r
+\r
+/**\r
+ * Include Crypt_DES\r
+ */\r
+require_once('Crypt/DES.php');\r
+\r
+/**\r
+ * Include Crypt_TripleDES\r
+ */\r
+require_once('Crypt/TripleDES.php');\r
+\r
+/**\r
+ * Include Crypt_RC4\r
+ */\r
+require_once('Crypt/RC4.php');\r
+\r
+/**\r
+ * Include Crypt_Random\r
+ */\r
+require_once('Crypt/Random.php');\r
+\r
+/**#@+\r
+ * Protocol Flags\r
+ *\r
+ * @access private\r
+ */\r
+define('NET_SSH1_MSG_DISCONNECT',          1);\r
+define('NET_SSH1_SMSG_PUBLIC_KEY',         2);\r
+define('NET_SSH1_CMSG_SESSION_KEY',        3);\r
+define('NET_SSH1_CMSG_USER',               4);\r
+define('NET_SSH1_CMSG_AUTH_PASSWORD',      9);\r
+define('NET_SSH1_CMSG_REQUEST_PTY',       10);\r
+define('NET_SSH1_CMSG_EXEC_SHELL',        12);\r
+define('NET_SSH1_CMSG_EXEC_CMD',          13);\r
+define('NET_SSH1_SMSG_SUCCESS',           14);\r
+define('NET_SSH1_SMSG_FAILURE',           15);\r
+define('NET_SSH1_CMSG_STDIN_DATA',        16);\r
+define('NET_SSH1_SMSG_STDOUT_DATA',       17);\r
+define('NET_SSH1_SMSG_STDERR_DATA',       18);\r
+define('NET_SSH1_SMSG_EXITSTATUS',        20);\r
+define('NET_SSH1_CMSG_EXIT_CONFIRMATION', 33);\r
+/**#@-*/\r
+\r
+/**#@+\r
+ * Encryption Methods\r
+ *\r
+ * @see Net_SSH1::getSupportedCiphers()\r
+ * @access public\r
+ */\r
+/**\r
+ * No encryption\r
+ *\r
+ * Not supported.\r
+ */\r
+define('NET_SSH1_CIPHER_NONE',       0);\r
+/**\r
+ * IDEA in CFB mode\r
+ *\r
+ * Not supported.\r
+ */\r
+define('NET_SSH1_CIPHER_IDEA',       1);\r
+/**\r
+ * DES in CBC mode\r
+ */\r
+define('NET_SSH1_CIPHER_DES',        2);\r
+/**\r
+ * Triple-DES in CBC mode\r
+ *\r
+ * All implementations are required to support this\r
+ */\r
+define('NET_SSH1_CIPHER_3DES',       3);\r
+/**\r
+ * TRI's Simple Stream encryption CBC\r
+ *\r
+ * Not supported nor is it defined in the official SSH1 specs.  OpenSSH, however, does define it (see cipher.h),\r
+ * although it doesn't use it (see cipher.c)\r
+ */\r
+define('NET_SSH1_CIPHER_BROKEN_TSS', 4);\r
+/**\r
+ * RC4\r
+ *\r
+ * Not supported.\r
+ *\r
+ * @internal According to the SSH1 specs:\r
+ *\r
+ *        "The first 16 bytes of the session key are used as the key for\r
+ *         the server to client direction.  The remaining 16 bytes are used\r
+ *         as the key for the client to server direction.  This gives\r
+ *         independent 128-bit keys for each direction."\r
+ *\r
+ *     This library currently only supports encryption when the same key is being used for both directions.  This is\r
+ *     because there's only one $crypto object.  Two could be added ($encrypt and $decrypt, perhaps).\r
+ */\r
+define('NET_SSH1_CIPHER_RC4',        5);\r
+/**\r
+ * Blowfish\r
+ *\r
+ * Not supported nor is it defined in the official SSH1 specs.  OpenSSH, however, defines it (see cipher.h) and\r
+ * uses it (see cipher.c)\r
+ */\r
+define('NET_SSH1_CIPHER_BLOWFISH',   6);\r
+/**#@-*/\r
+\r
+/**#@+\r
+ * Authentication Methods\r
+ *\r
+ * @see Net_SSH1::getSupportedAuthentications()\r
+ * @access public\r
+ */\r
+/**\r
+ * .rhosts or /etc/hosts.equiv\r
+ */\r
+define('NET_SSH1_AUTH_RHOSTS',     1);\r
+/**\r
+ * pure RSA authentication\r
+ */\r
+define('NET_SSH1_AUTH_RSA',        2);\r
+/**\r
+ * password authentication\r
+ *\r
+ * This is the only method that is supported by this library.\r
+ */\r
+define('NET_SSH1_AUTH_PASSWORD',   3);\r
+/**\r
+ * .rhosts with RSA host authentication\r
+ */\r
+define('NET_SSH1_AUTH_RHOSTS_RSA', 4);\r
+/**#@-*/\r
+\r
+/**#@+\r
+ * Terminal Modes\r
+ *\r
+ * @link http://3sp.com/content/developer/maverick-net/docs/Maverick.SSH.PseudoTerminalModesMembers.html\r
+ * @access private\r
+ */\r
+define('NET_SSH1_TTY_OP_END',  0);\r
+/**#@-*/\r
+\r
+/**\r
+ * The Response Type\r
+ *\r
+ * @see Net_SSH1::_get_binary_packet()\r
+ * @access private\r
+ */\r
+define('NET_SSH1_RESPONSE_TYPE', 1);\r
+\r
+/**\r
+ * The Response Data\r
+ *\r
+ * @see Net_SSH1::_get_binary_packet()\r
+ * @access private\r
+ */\r
+define('NET_SSH1_RESPONSE_DATA', 2);\r
+\r
+/**#@+\r
+ * Execution Bitmap Masks\r
+ *\r
+ * @see Net_SSH1::bitmap\r
+ * @access private\r
+ */\r
+define('NET_SSH1_MASK_CONSTRUCTOR', 0x00000001);\r
+define('NET_SSH1_MASK_LOGIN',       0x00000002);\r
+define('NET_SSH1_MASK_SHELL',       0x00000004);\r
+/**#@-*/\r
+\r
+/**\r
+ * Pure-PHP implementation of SSHv1.\r
+ *\r
+ * @author  Jim Wigginton <terrafrost@php.net>\r
+ * @version 0.1.0\r
+ * @access  public\r
+ * @package Net_SSH1\r
+ */\r
+class Net_SSH1 {\r
+    /**\r
+     * The SSH identifier\r
+     *\r
+     * @var String\r
+     * @access private\r
+     */\r
+    var $identifier = 'SSH-1.5-phpseclib';\r
+\r
+    /**\r
+     * The Socket Object\r
+     *\r
+     * @var Object\r
+     * @access private\r
+     */\r
+    var $fsock;\r
+\r
+    /**\r
+     * The cryptography object\r
+     *\r
+     * @var Object\r
+     * @access private\r
+     */\r
+    var $crypto = false;\r
+\r
+    /**\r
+     * Execution Bitmap\r
+     *\r
+     * The bits that are set reprsent functions that have been called already.  This is used to determine\r
+     * if a requisite function has been successfully executed.  If not, an error should be thrown.\r
+     *\r
+     * @var Integer\r
+     * @access private\r
+     */\r
+    var $bitmap = 0;\r
+\r
+    /**\r
+     * The Server Key Public Exponent\r
+     *\r
+     * Logged for debug purposes\r
+     *\r
+     * @see Net_SSH1::getServerKeyPublicExponent()\r
+     * @var String\r
+     * @access private\r
+     */\r
+    var $server_key_public_exponent;\r
+\r
+    /**\r
+     * The Server Key Public Modulus\r
+     *\r
+     * Logged for debug purposes\r
+     *\r
+     * @see Net_SSH1::getServerKeyPublicModulus()\r
+     * @var String\r
+     * @access private\r
+     */\r
+    var $server_key_public_modulus;\r
+\r
+    /**\r
+     * The Host Key Public Exponent\r
+     *\r
+     * Logged for debug purposes\r
+     *\r
+     * @see Net_SSH1::getHostKeyPublicExponent()\r
+     * @var String\r
+     * @access private\r
+     */\r
+    var $host_key_public_exponent;\r
+\r
+    /**\r
+     * The Host Key Public Modulus\r
+     *\r
+     * Logged for debug purposes\r
+     *\r
+     * @see Net_SSH1::getHostKeyPublicModulus()\r
+     * @var String\r
+     * @access private\r
+     */\r
+    var $host_key_public_modulus;\r
+\r
+    /**\r
+     * Supported Ciphers\r
+     *\r
+     * Logged for debug purposes\r
+     *\r
+     * @see Net_SSH1::getSupportedCiphers()\r
+     * @var Array\r
+     * @access private\r
+     */\r
+    var $supported_ciphers = array(\r
+        NET_SSH1_CIPHER_NONE       => 'No encryption',\r
+        NET_SSH1_CIPHER_IDEA       => 'IDEA in CFB mode',\r
+        NET_SSH1_CIPHER_DES        => 'DES in CBC mode',\r
+        NET_SSH1_CIPHER_3DES       => 'Triple-DES in CBC mode',\r
+        NET_SSH1_CIPHER_BROKEN_TSS => 'TRI\'s Simple Stream encryption CBC',\r
+        NET_SSH1_CIPHER_RC4        => 'RC4',\r
+        NET_SSH1_CIPHER_BLOWFISH   => 'Blowfish'\r
+    );\r
+\r
+    /**\r
+     * Supported Authentications\r
+     *\r
+     * Logged for debug purposes\r
+     *\r
+     * @see Net_SSH1::getSupportedAuthentications()\r
+     * @var Array\r
+     * @access private\r
+     */\r
+    var $supported_authentications = array(\r
+        NET_SSH1_AUTH_RHOSTS     => '.rhosts or /etc/hosts.equiv',\r
+        NET_SSH1_AUTH_RSA        => 'pure RSA authentication',\r
+        NET_SSH1_AUTH_PASSWORD   => 'password authentication',\r
+        NET_SSH1_AUTH_RHOSTS_RSA => '.rhosts with RSA host authentication'\r
+    );\r
+\r
+    /**\r
+     * Server Identification\r
+     *\r
+     * @see Net_SSH1::getServerIdentification()\r
+     * @var String\r
+     * @access private\r
+     */\r
+    var $server_identification = '';\r
+\r
+    /**\r
+     * Default Constructor.\r
+     *\r
+     * Connects to an SSHv1 server\r
+     *\r
+     * @param String $host\r
+     * @param optional Integer $port\r
+     * @param optional Integer $timeout\r
+     * @param optional Integer $cipher\r
+     * @return Net_SSH1\r
+     * @access public\r
+     */\r
+    function Net_SSH1($host, $port = 22, $timeout = 10, $cipher = NET_SSH1_CIPHER_3DES)\r
+    {\r
+        $this->fsock = @fsockopen($host, $port, $errno, $errstr, $timeout);\r
+        if (!$this->fsock) {\r
+            user_error(rtrim("Cannot connect to $host. Error $errno. $errstr"), E_USER_NOTICE);\r
+            return;\r
+        }\r
+\r
+        $this->server_identification = $init_line = fgets($this->fsock, 255);\r
+        if (!preg_match('#SSH-([0-9\.]+)-(.+)#', $init_line, $parts)) {\r
+            user_error('Can only connect to SSH servers', E_USER_NOTICE);\r
+            return;\r
+        }\r
+        if ($parts[1][0] != 1) {\r
+            user_error("Cannot connect to SSH $parts[1] servers", E_USER_NOTICE);\r
+            return;\r
+        }\r
+\r
+        fputs($this->fsock, $this->identifier."\r\n");\r
+\r
+        $response = $this->_get_binary_packet();\r
+        if ($response[NET_SSH1_RESPONSE_TYPE] != NET_SSH1_SMSG_PUBLIC_KEY) {\r
+            user_error('Expected SSH_SMSG_PUBLIC_KEY', E_USER_NOTICE);\r
+            return;\r
+        }\r
+\r
+        $anti_spoofing_cookie = $this->_string_shift($response[NET_SSH1_RESPONSE_DATA], 8);\r
+\r
+        $this->_string_shift($response[NET_SSH1_RESPONSE_DATA], 4);\r
+\r
+        $temp = unpack('nlen', $this->_string_shift($response[NET_SSH1_RESPONSE_DATA], 2));\r
+        $server_key_public_exponent = new Math_BigInteger($this->_string_shift($response[NET_SSH1_RESPONSE_DATA], ceil($temp['len'] / 8)), 256);\r
+        $this->server_key_public_exponent = $server_key_public_exponent;\r
+\r
+        $temp = unpack('nlen', $this->_string_shift($response[NET_SSH1_RESPONSE_DATA], 2));\r
+        $server_key_public_modulus = new Math_BigInteger($this->_string_shift($response[NET_SSH1_RESPONSE_DATA], ceil($temp['len'] / 8)), 256);\r
+        $this->server_key_public_modulus = $server_key_public_modulus;\r
+\r
+        $this->_string_shift($response[NET_SSH1_RESPONSE_DATA], 4);\r
+\r
+        $temp = unpack('nlen', $this->_string_shift($response[NET_SSH1_RESPONSE_DATA], 2));\r
+        $host_key_public_exponent = new Math_BigInteger($this->_string_shift($response[NET_SSH1_RESPONSE_DATA], ceil($temp['len'] / 8)), 256);\r
+        $this->host_key_public_exponent = $host_key_public_exponent;\r
+\r
+        $temp = unpack('nlen', $this->_string_shift($response[NET_SSH1_RESPONSE_DATA], 2));\r
+        $host_key_public_modulus = new Math_BigInteger($this->_string_shift($response[NET_SSH1_RESPONSE_DATA], ceil($temp['len'] / 8)), 256);\r
+        $this->host_key_public_modulus = $host_key_public_modulus;\r
+\r
+        $this->_string_shift($response[NET_SSH1_RESPONSE_DATA], 4);\r
+\r
+        // get a list of the supported ciphers\r
+        extract(unpack('Nsupported_ciphers_mask', $this->_string_shift($response[NET_SSH1_RESPONSE_DATA], 4)));\r
+        foreach ($this->supported_ciphers as $mask=>$name) {\r
+            if (($supported_ciphers_mask & (1 << $mask)) == 0) {\r
+                unset($this->supported_ciphers[$mask]);\r
+            }\r
+        }\r
+\r
+        // get a list of the supported authentications\r
+        extract(unpack('Nsupported_authentications_mask', $this->_string_shift($response[NET_SSH1_RESPONSE_DATA], 4)));\r
+        foreach ($this->supported_authentications as $mask=>$name) {\r
+            if (($supported_authentications_mask & (1 << $mask)) == 0) {\r
+                unset($this->supported_authentications[$mask]);\r
+            }\r
+        }\r
+\r
+        $session_id = pack('H*', md5($host_key_public_modulus->toBytes() . $server_key_public_modulus->toBytes() . $anti_spoofing_cookie));\r
+\r
+        $session_key = '';\r
+        for ($i = 0; $i < 32; $i++) {\r
+            $session_key.= chr(crypt_random(0, 255));\r
+        }\r
+        $double_encrypted_session_key = $session_key ^ str_pad($session_id, 32, chr(0));\r
+\r
+        if ($server_key_public_modulus->compare($host_key_public_modulus) < 0) {\r
+            $double_encrypted_session_key = $this->_rsa_crypt(\r
+                $double_encrypted_session_key,\r
+                array(\r
+                    $server_key_public_exponent,\r
+                    $server_key_public_modulus\r
+                )\r
+            );\r
+            $double_encrypted_session_key = $this->_rsa_crypt(\r
+                $double_encrypted_session_key,\r
+                array(\r
+                    $host_key_public_exponent,\r
+                    $host_key_public_modulus\r
+                )\r
+            );\r
+        } else {\r
+            $double_encrypted_session_key = $this->_rsa_crypt(\r
+                $double_encrypted_session_key,\r
+                array(\r
+                    $host_key_public_exponent,\r
+                    $host_key_public_modulus\r
+                )\r
+            );\r
+            $double_encrypted_session_key = $this->_rsa_crypt(\r
+                $double_encrypted_session_key,\r
+                array(\r
+                    $server_key_public_exponent,\r
+                    $server_key_public_modulus\r
+                )\r
+            );\r
+        }\r
+\r
+        $cipher = isset($this->supported_ciphers[$cipher]) ? $cipher : NET_SSH1_CIPHER_3DES;\r
+        $data = pack('C2a*na*N', NET_SSH1_CMSG_SESSION_KEY, $cipher, $anti_spoofing_cookie, 8 * strlen($double_encrypted_session_key), $double_encrypted_session_key, 0);\r
+\r
+        if (!$this->_send_binary_packet($data)) {\r
+            user_error('Error sending SSH_CMSG_SESSION_KEY', E_USER_NOTICE);\r
+            return;\r
+        }\r
+\r
+        switch ($cipher) {\r
+            //case NET_SSH1_CIPHER_NONE:\r
+            //    $this->crypto = new Crypt_Null();\r
+            //    break;\r
+            case NET_SSH1_CIPHER_DES:\r
+                $this->crypto = new Crypt_DES();\r
+                $this->crypto->disablePadding();\r
+                $this->crypto->enableContinuousBuffer();\r
+                $this->crypto->setKey(substr($session_key, 0,  8));\r
+                break;\r
+            case NET_SSH1_CIPHER_3DES:\r
+                $this->crypto = new Crypt_TripleDES(CRYPT_DES_MODE_3CBC);\r
+                $this->crypto->disablePadding();\r
+                $this->crypto->enableContinuousBuffer();\r
+                $this->crypto->setKey(substr($session_key, 0, 24));\r
+                break;\r
+            //case NET_SSH1_CIPHER_RC4:\r
+            //    $this->crypto = new Crypt_RC4();\r
+            //    $this->crypto->enableContinuousBuffer();\r
+            //    $this->crypto->setKey(substr($session_key, 0,  16));\r
+            //    break;\r
+        }\r
+\r
+        $response = $this->_get_binary_packet();\r
+\r
+        if ($response[NET_SSH1_RESPONSE_TYPE] != NET_SSH1_SMSG_SUCCESS) {\r
+            user_error('Expected SSH_SMSG_SUCCESS', E_USER_NOTICE);\r
+            return;\r
+        }\r
+\r
+        $this->bitmap = NET_SSH1_MASK_CONSTRUCTOR;\r
+    }\r
+\r
+    /**\r
+     * Login\r
+     *\r
+     * @param String $username\r
+     * @param optional String $password\r
+     * @return Boolean\r
+     * @access public\r
+     */\r
+    function login($username, $password = '')\r
+    {\r
+        if (!($this->bitmap & NET_SSH1_MASK_CONSTRUCTOR)) {\r
+            return false;\r
+        }\r
+\r
+        $data = pack('CNa*', NET_SSH1_CMSG_USER, strlen($username), $username);\r
+\r
+        if (!$this->_send_binary_packet($data)) {\r
+            user_error('Error sending SSH_CMSG_USER', E_USER_NOTICE);\r
+            return false;\r
+        }\r
+\r
+        $response = $this->_get_binary_packet();\r
+\r
+        if ($response[NET_SSH1_RESPONSE_TYPE] == NET_SSH1_SMSG_SUCCESS) {\r
+            $this->bitmap |= NET_SSH1_MASK_LOGIN;\r
+            return true;\r
+        } else if ($response[NET_SSH1_RESPONSE_TYPE] != NET_SSH1_SMSG_FAILURE) {\r
+            user_error('Expected SSH_SMSG_SUCCESS or SSH_SMSG_FAILURE', E_USER_NOTICE);\r
+            return false;\r
+        }\r
+\r
+        $data = pack('CNa*', NET_SSH1_CMSG_AUTH_PASSWORD, strlen($password), $password);\r
+\r
+        if (!$this->_send_binary_packet($data)) {\r
+            user_error('Error sending SSH_CMSG_AUTH_PASSWORD', E_USER_NOTICE);\r
+            return false;\r
+        }\r
+\r
+        $response = $this->_get_binary_packet();\r
+\r
+        if ($response[NET_SSH1_RESPONSE_TYPE] == NET_SSH1_SMSG_SUCCESS) {\r
+            $this->bitmap |= NET_SSH1_MASK_LOGIN;\r
+            return true;\r
+        } else if ($response[NET_SSH1_RESPONSE_TYPE] == NET_SSH1_SMSG_FAILURE) {\r
+            return false;\r
+        } else {\r
+            user_error('Expected SSH_SMSG_SUCCESS or SSH_SMSG_FAILURE', E_USER_NOTICE);\r
+            return false;\r
+        }\r
+    }\r
+\r
+    /**\r
+     * Executes a command on a non-interactive shell, returns the output, and quits.\r
+     *\r
+     * An SSH1 server will close the connection after a command has been executed on a non-interactive shell.  SSH2\r
+     * servers don't, however, this isn't an SSH2 client.  The way this works, on the server, is by initiating a\r
+     * shell with the -s option, as discussed in the following links:\r
+     *\r
+     * {@link http://www.faqs.org/docs/bashman/bashref_65.html http://www.faqs.org/docs/bashman/bashref_65.html}\r
+     * {@link http://www.faqs.org/docs/bashman/bashref_62.html http://www.faqs.org/docs/bashman/bashref_62.html}\r
+     *\r
+     * To execute further commands, a new Net_SSH1 object will need to be created.\r
+     *\r
+     * Returns false on failure and the output, otherwise.\r
+     *\r
+     * @see Net_SSH1::interactiveRead()\r
+     * @see Net_SSH1::interactiveWrite()\r
+     * @param String $cmd\r
+     * @return mixed\r
+     * @access public\r
+     */\r
+    function exec($cmd)\r
+    {\r
+        if (!($this->bitmap & NET_SSH1_MASK_LOGIN)) {\r
+            user_error('Operation disallowed prior to login()', E_USER_NOTICE);\r
+            return false;\r
+        }\r
+\r
+        // connect using the sample parameters in protocol-1.5.txt.\r
+        // according to wikipedia.org's entry on text terminals, "the fundamental type of application running on a text\r
+        // terminal is a command line interpreter or shell".  thus, opening a terminal session to run the shell.\r
+        $data = pack('CNa*N4C', NET_SSH1_CMSG_REQUEST_PTY, strlen('vt100'), 'vt100', 24, 80, 0, 0, NET_SSH1_TTY_OP_END);\r
+\r
+        if (!$this->_send_binary_packet($data)) {\r
+            user_error('Error sending SSH_CMSG_REQUEST_PTY', E_USER_NOTICE);\r
+            return false;\r
+        }\r
+\r
+        $response = $this->_get_binary_packet();\r
+\r
+        if ($response[NET_SSH1_RESPONSE_TYPE] != NET_SSH1_SMSG_SUCCESS) {\r
+            user_error('Expected SSH_SMSG_SUCCESS', E_USER_NOTICE);\r
+            return false;\r
+        }\r
+\r
+        $data = pack('CNa*', NET_SSH1_CMSG_EXEC_CMD, strlen($cmd), $cmd);\r
+\r
+        if (!$this->_send_binary_packet($data)) {\r
+            user_error('Error sending SSH_CMSG_EXEC_CMD', E_USER_NOTICE);\r
+            return false;\r
+        }\r
+\r
+        $output = '';\r
+        $response = $this->_get_binary_packet();\r
+\r
+        do {\r
+            $output.= substr($response[NET_SSH1_RESPONSE_DATA], 4);\r
+            $response = $this->_get_binary_packet();\r
+        } while ($response[NET_SSH1_RESPONSE_TYPE] != NET_SSH1_SMSG_EXITSTATUS);\r
+\r
+        $data = pack('C', NET_SSH1_CMSG_EXIT_CONFIRMATION);\r
+\r
+        // i don't think it's really all that important if this packet gets sent or not.\r
+        $this->_send_binary_packet($data);\r
+\r
+        fclose($this->fsock);\r
+\r
+        // reset the execution bitmap - a new Net_SSH1 object needs to be created.\r
+        $this->bitmap = 0;\r
+\r
+        return $output;\r
+    }\r
+\r
+    /**\r
+     * Creates an interactive shell\r
+     *\r
+     * @see Net_SSH1::interactiveRead()\r
+     * @see Net_SSH1::interactiveWrite()\r
+     * @return Boolean\r
+     * @access private\r
+     */\r
+    function _initShell()\r
+    {\r
+        $data = pack('CNa*N4C', NET_SSH1_CMSG_REQUEST_PTY, strlen('vt100'), 'vt100', 24, 80, 0, 0, NET_SSH1_TTY_OP_END);\r
+\r
+        if (!$this->_send_binary_packet($data)) {\r
+            user_error('Error sending SSH_CMSG_REQUEST_PTY', E_USER_NOTICE);\r
+            return false;\r
+        }\r
+\r
+        $response = $this->_get_binary_packet();\r
+\r
+        if ($response[NET_SSH1_RESPONSE_TYPE] != NET_SSH1_SMSG_SUCCESS) {\r
+            user_error('Expected SSH_SMSG_SUCCESS', E_USER_NOTICE);\r
+            return false;\r
+        }\r
+\r
+        $data = pack('C', NET_SSH1_CMSG_EXEC_SHELL);\r
+\r
+        if (!$this->_send_binary_packet($data)) {\r
+            user_error('Error sending SSH_CMSG_EXEC_SHELL', E_USER_NOTICE);\r
+            return false;\r
+        }\r
+\r
+        $this->bitmap |= NET_SSH1_MASK_SHELL;\r
+\r
+        //stream_set_blocking($this->fsock, 0);\r
+\r
+        return true;\r
+    }\r
+\r
+    /**\r
+     * Inputs a command into an interactive shell.\r
+     *\r
+     * @see Net_SSH1::interactiveRead()\r
+     * @param String $cmd\r
+     * @return Boolean\r
+     * @access public\r
+     */\r
+    function interactiveWrite($cmd)\r
+    {\r
+        if (!($this->bitmap & NET_SSH1_MASK_LOGIN)) {\r
+            user_error('Operation disallowed prior to login()', E_USER_NOTICE);\r
+            return false;\r
+        }\r
+\r
+        if (!($this->bitmap & NET_SSH1_MASK_SHELL) && !$this->_initShell()) {\r
+            user_error('Unable to initiate an interactive shell session', E_USER_NOTICE);\r
+            return false;\r
+        }\r
+\r
+        $data = pack('CNa*', NET_SSH1_CMSG_STDIN_DATA, strlen($cmd), $cmd);\r
+\r
+        if (!$this->_send_binary_packet($data)) {\r
+            user_error('Error sending SSH_CMSG_STDIN', E_USER_NOTICE);\r
+            return false;\r
+        }\r
+\r
+        return true;\r
+    }\r
+\r
+    /**\r
+     * Reads the output of an interactive shell.\r
+     *\r
+     * Requires PHP 4.3.0 or later due to the use of the stream_select() function.  If you see stuff like\r
+     * "\e[00m", you're seeing ANSI escape codes.  According to\r
+     * {@link http://support.microsoft.com/kb/101875 How to Enable ANSI.SYS in a Command Window}, "Windows NT\r
+     * does not support ANSI escape sequences in Win32 Console applications", so if you're a Windows user,\r
+     * there's not going to be much recourse.\r
+     *\r
+     * @see Net_SSH1::interactiveRead()\r
+     * @return String\r
+     * @access public\r
+     */\r
+    function interactiveRead()\r
+    {\r
+        if (!($this->bitmap & NET_SSH1_MASK_LOGIN)) {\r
+            user_error('Operation disallowed prior to login()', E_USER_NOTICE);\r
+            return false;\r
+        }\r
+\r
+        if (!($this->bitmap & NET_SSH1_MASK_SHELL) && !$this->_initShell()) {\r
+            user_error('Unable to initiate an interactive shell session', E_USER_NOTICE);\r
+            return false;\r
+        }\r
+\r
+        $read = array($this->fsock);\r
+        $write = $except = null;\r
+        if (stream_select($read, $write, $except, 0)) {\r
+            $response = $this->_get_binary_packet();\r
+            return substr($response[NET_SSH1_RESPONSE_DATA], 4);\r
+        } else {\r
+            return '';\r
+        }\r
+    }\r
+\r
+    /**\r
+     * Disconnect\r
+     *\r
+     * @access public\r
+     */\r
+    function disconnect()\r
+    {\r
+        $this->_disconnect();\r
+    }\r
+\r
+    /**\r
+     * Destructor.\r
+     *\r
+     * Will be called, automatically, if you're supporting just PHP5.  If you're supporting PHP4, you'll need to call\r
+     * disconnect().\r
+     *\r
+     * @access public\r
+     */\r
+    function __destruct()\r
+    {\r
+        $this->_disconnect();\r
+    }\r
+\r
+    /**\r
+     * Disconnect\r
+     *\r
+     * @param String $msg\r
+     * @access private\r
+     */\r
+    function _disconnect($msg = 'Client Quit')\r
+    {\r
+        if ($this->bitmap) {\r
+            $data = pack('CNa*', NET_SSH1_MSG_DISCONNECT, strlen($msg), $msg);\r
+            $this->_send_binary_packet($data);\r
+            fclose($this->fsock);\r
+            $this->bitmap = 0;\r
+        }\r
+    }\r
+\r
+    /**\r
+     * Gets Binary Packets\r
+     *\r
+     * See 'The Binary Packet Protocol' of protocol-1.5.txt for more info.\r
+     *\r
+     * Also, this function could be improved upon by adding detection for the following exploit:\r
+     * http://www.securiteam.com/securitynews/5LP042K3FY.html\r
+     *\r
+     * @see Net_SSH1::_send_binary_packet()\r
+     * @return Array\r
+     * @access private\r
+     */\r
+    function _get_binary_packet()\r
+    {\r
+        if (feof($this->fsock)) {\r
+            //user_error('connection closed prematurely', E_USER_NOTICE);\r
+            return false;\r
+        }\r
+\r
+        $temp = unpack('Nlength', fread($this->fsock, 4));\r
+\r
+        $padding_length = 8 - ($temp['length'] & 7);\r
+        $length = $temp['length'] + $padding_length;\r
+\r
+        $raw = fread($this->fsock, $length);\r
+\r
+        if ($this->crypto !== false) {\r
+            $raw = $this->crypto->decrypt($raw);\r
+        }\r
+\r
+        $padding = substr($raw, 0, $padding_length);\r
+        $type = $raw[$padding_length];\r
+        $data = substr($raw, $padding_length + 1, -4);\r
+\r
+        $temp = unpack('Ncrc', substr($raw, -4));\r
+\r
+        //if ( $temp['crc'] != $this->_crc($padding . $type . $data) ) {\r
+        //    user_error('Bad CRC in packet from server', E_USER_NOTICE);\r
+        //    return false;\r
+        //}\r
+\r
+        return array(\r
+            NET_SSH1_RESPONSE_TYPE => ord($type),\r
+            NET_SSH1_RESPONSE_DATA => $data\r
+        );\r
+    }\r
+\r
+    /**\r
+     * Sends Binary Packets\r
+     *\r
+     * Returns true on success, false on failure.\r
+     *\r
+     * @see Net_SSH1::_get_binary_packet()\r
+     * @param String $data\r
+     * @return Boolean\r
+     * @access private\r
+     */\r
+    function _send_binary_packet($data) {\r
+        if (feof($this->fsock)) {\r
+            //user_error('connection closed prematurely', E_USER_NOTICE);\r
+            return false;\r
+        }\r
+\r
+        $length = strlen($data) + 4;\r
+\r
+        $padding_length = 8 - ($length & 7);\r
+        $padding = '';\r
+        for ($i = 0; $i < $padding_length; $i++) {\r
+            $padding.= chr(crypt_random(0, 255));\r
+        }\r
+\r
+        $data = $padding . $data;\r
+        $data.= pack('N', $this->_crc($data));\r
+\r
+        if ($this->crypto !== false) {\r
+            $data = $this->crypto->encrypt($data);\r
+        }\r
+\r
+        $packet = pack('Na*', $length, $data);\r
+\r
+        return strlen($packet) == fputs($this->fsock, $packet);\r
+    }\r
+\r
+    /**\r
+     * Cyclic Redundancy Check (CRC)\r
+     *\r
+     * PHP's crc32 function is implemented slightly differently than the one that SSH v1 uses, so\r
+     * we've reimplemented it. A more detailed discussion of the differences can be found after\r
+     * $crc_lookup_table's initialization.\r
+     *\r
+     * @see Net_SSH1::_get_binary_packet()\r
+     * @see Net_SSH1::_send_binary_packet()\r
+     * @param String $data\r
+     * @return Integer\r
+     * @access private\r
+     */\r
+    function _crc($data)\r
+    {\r
+        static $crc_lookup_table = array(\r
+            0x00000000, 0x77073096, 0xEE0E612C, 0x990951BA,\r
+            0x076DC419, 0x706AF48F, 0xE963A535, 0x9E6495A3,\r
+            0x0EDB8832, 0x79DCB8A4, 0xE0D5E91E, 0x97D2D988,\r
+            0x09B64C2B, 0x7EB17CBD, 0xE7B82D07, 0x90BF1D91,\r
+            0x1DB71064, 0x6AB020F2, 0xF3B97148, 0x84BE41DE,\r
+            0x1ADAD47D, 0x6DDDE4EB, 0xF4D4B551, 0x83D385C7,\r
+            0x136C9856, 0x646BA8C0, 0xFD62F97A, 0x8A65C9EC,\r
+            0x14015C4F, 0x63066CD9, 0xFA0F3D63, 0x8D080DF5,\r
+            0x3B6E20C8, 0x4C69105E, 0xD56041E4, 0xA2677172,\r
+            0x3C03E4D1, 0x4B04D447, 0xD20D85FD, 0xA50AB56B,\r
+            0x35B5A8FA, 0x42B2986C, 0xDBBBC9D6, 0xACBCF940,\r
+            0x32D86CE3, 0x45DF5C75, 0xDCD60DCF, 0xABD13D59,\r
+            0x26D930AC, 0x51DE003A, 0xC8D75180, 0xBFD06116,\r
+            0x21B4F4B5, 0x56B3C423, 0xCFBA9599, 0xB8BDA50F,\r
+            0x2802B89E, 0x5F058808, 0xC60CD9B2, 0xB10BE924,\r
+            0x2F6F7C87, 0x58684C11, 0xC1611DAB, 0xB6662D3D,\r
+            0x76DC4190, 0x01DB7106, 0x98D220BC, 0xEFD5102A,\r
+            0x71B18589, 0x06B6B51F, 0x9FBFE4A5, 0xE8B8D433,\r
+            0x7807C9A2, 0x0F00F934, 0x9609A88E, 0xE10E9818,\r
+            0x7F6A0DBB, 0x086D3D2D, 0x91646C97, 0xE6635C01,\r
+            0x6B6B51F4, 0x1C6C6162, 0x856530D8, 0xF262004E,\r
+            0x6C0695ED, 0x1B01A57B, 0x8208F4C1, 0xF50FC457,\r
+            0x65B0D9C6, 0x12B7E950, 0x8BBEB8EA, 0xFCB9887C,\r
+            0x62DD1DDF, 0x15DA2D49, 0x8CD37CF3, 0xFBD44C65,\r
+            0x4DB26158, 0x3AB551CE, 0xA3BC0074, 0xD4BB30E2,\r
+            0x4ADFA541, 0x3DD895D7, 0xA4D1C46D, 0xD3D6F4FB,\r
+            0x4369E96A, 0x346ED9FC, 0xAD678846, 0xDA60B8D0,\r
+            0x44042D73, 0x33031DE5, 0xAA0A4C5F, 0xDD0D7CC9,\r
+            0x5005713C, 0x270241AA, 0xBE0B1010, 0xC90C2086,\r
+            0x5768B525, 0x206F85B3, 0xB966D409, 0xCE61E49F,\r
+            0x5EDEF90E, 0x29D9C998, 0xB0D09822, 0xC7D7A8B4,\r
+            0x59B33D17, 0x2EB40D81, 0xB7BD5C3B, 0xC0BA6CAD,\r
+            0xEDB88320, 0x9ABFB3B6, 0x03B6E20C, 0x74B1D29A,\r
+            0xEAD54739, 0x9DD277AF, 0x04DB2615, 0x73DC1683,\r
+            0xE3630B12, 0x94643B84, 0x0D6D6A3E, 0x7A6A5AA8,\r
+            0xE40ECF0B, 0x9309FF9D, 0x0A00AE27, 0x7D079EB1,\r
+            0xF00F9344, 0x8708A3D2, 0x1E01F268, 0x6906C2FE,\r
+            0xF762575D, 0x806567CB, 0x196C3671, 0x6E6B06E7,\r
+            0xFED41B76, 0x89D32BE0, 0x10DA7A5A, 0x67DD4ACC,\r
+            0xF9B9DF6F, 0x8EBEEFF9, 0x17B7BE43, 0x60B08ED5,\r
+            0xD6D6A3E8, 0xA1D1937E, 0x38D8C2C4, 0x4FDFF252,\r
+            0xD1BB67F1, 0xA6BC5767, 0x3FB506DD, 0x48B2364B,\r
+            0xD80D2BDA, 0xAF0A1B4C, 0x36034AF6, 0x41047A60,\r
+            0xDF60EFC3, 0xA867DF55, 0x316E8EEF, 0x4669BE79,\r
+            0xCB61B38C, 0xBC66831A, 0x256FD2A0, 0x5268E236,\r
+            0xCC0C7795, 0xBB0B4703, 0x220216B9, 0x5505262F,\r
+            0xC5BA3BBE, 0xB2BD0B28, 0x2BB45A92, 0x5CB36A04,\r
+            0xC2D7FFA7, 0xB5D0CF31, 0x2CD99E8B, 0x5BDEAE1D,\r
+            0x9B64C2B0, 0xEC63F226, 0x756AA39C, 0x026D930A,\r
+            0x9C0906A9, 0xEB0E363F, 0x72076785, 0x05005713,\r
+            0x95BF4A82, 0xE2B87A14, 0x7BB12BAE, 0x0CB61B38,\r
+            0x92D28E9B, 0xE5D5BE0D, 0x7CDCEFB7, 0x0BDBDF21,\r
+            0x86D3D2D4, 0xF1D4E242, 0x68DDB3F8, 0x1FDA836E,\r
+            0x81BE16CD, 0xF6B9265B, 0x6FB077E1, 0x18B74777,\r
+            0x88085AE6, 0xFF0F6A70, 0x66063BCA, 0x11010B5C,\r
+            0x8F659EFF, 0xF862AE69, 0x616BFFD3, 0x166CCF45,\r
+            0xA00AE278, 0xD70DD2EE, 0x4E048354, 0x3903B3C2,\r
+            0xA7672661, 0xD06016F7, 0x4969474D, 0x3E6E77DB,\r
+            0xAED16A4A, 0xD9D65ADC, 0x40DF0B66, 0x37D83BF0,\r
+            0xA9BCAE53, 0xDEBB9EC5, 0x47B2CF7F, 0x30B5FFE9,\r
+            0xBDBDF21C, 0xCABAC28A, 0x53B39330, 0x24B4A3A6,\r
+            0xBAD03605, 0xCDD70693, 0x54DE5729, 0x23D967BF,\r
+            0xB3667A2E, 0xC4614AB8, 0x5D681B02, 0x2A6F2B94,\r
+            0xB40BBE37, 0xC30C8EA1, 0x5A05DF1B, 0x2D02EF8D\r
+        );\r
+\r
+        // For this function to yield the same output as PHP's crc32 function, $crc would have to be\r
+        // set to 0xFFFFFFFF, initially - not 0x00000000 as it currently is.\r
+        $crc = 0x00000000;\r
+        $length = strlen($data);\r
+\r
+        for ($i=0;$i<$length;$i++) {\r
+            // We AND $crc >> 8 with 0x00FFFFFF because we want the eight newly added bits to all\r
+            // be zero.  PHP, unfortunately, doesn't always do this.  0x80000000 >> 8, as an example,\r
+            // yields 0xFF800000 - not 0x00800000.  The following link elaborates:\r
+            // http://www.php.net/manual/en/language.operators.bitwise.php#57281\r
+            $crc = (($crc >> 8) & 0x00FFFFFF) ^ $crc_lookup_table[($crc & 0xFF) ^ ord($data[$i])];\r
+        }\r
+\r
+        // In addition to having to set $crc to 0xFFFFFFFF, initially, the return value must be XOR'd with\r
+        // 0xFFFFFFFF for this function to return the same thing that PHP's crc32 function would.\r
+        return $crc;\r
+    }\r
+\r
+    /**\r
+     * String Shift\r
+     *\r
+     * Inspired by array_shift\r
+     *\r
+     * @param String $string\r
+     * @param optional Integer $index\r
+     * @return String\r
+     * @access private\r
+     */\r
+    function _string_shift(&$string, $index = 1)\r
+    {\r
+        $substr = substr($string, 0, $index);\r
+        $string = substr($string, $index);\r
+        return $substr;\r
+    }\r
+\r
+    /**\r
+     * RSA Encrypt\r
+     *\r
+     * Returns mod(pow($m, $e), $n), where $n should be the product of two (large) primes $p and $q and where $e\r
+     * should be a number with the property that gcd($e, ($p - 1) * ($q - 1)) == 1.  Could just make anything that\r
+     * calls this call modexp, instead, but I think this makes things clearer, maybe...\r
+     *\r
+     * @see Net_SSH1::Net_SSH1()\r
+     * @param Math_BigInteger $m\r
+     * @param Array $key\r
+     * @return Math_BigInteger\r
+     * @access private\r
+     */\r
+    function _rsa_crypt($m, $key)\r
+    {\r
+        /*\r
+        if (!class_exists('Crypt_RSA')) {\r
+            require_once('Crypt/RSA.php');\r
+        }\r
+\r
+        $rsa = new Crypt_RSA();\r
+        $rsa->loadKey($key, CRYPT_RSA_PUBLIC_FORMAT_RAW);\r
+        $rsa->setEncryptionMode(CRYPT_RSA_ENCRYPTION_PKCS1);\r
+        return $rsa->encrypt($m);\r
+        */\r
+\r
+        // To quote from protocol-1.5.txt:\r
+        // The most significant byte (which is only partial as the value must be\r
+        // less than the public modulus, which is never a power of two) is zero.\r
+        //\r
+        // The next byte contains the value 2 (which stands for public-key\r
+        // encrypted data in the PKCS standard [PKCS#1]).  Then, there are non-\r
+        // zero random bytes to fill any unused space, a zero byte, and the data\r
+        // to be encrypted in the least significant bytes, the last byte of the\r
+        // data in the least significant byte.\r
+\r
+        // Presumably the part of PKCS#1 they're refering to is "Section 7.2.1 Encryption Operation",\r
+        // under "7.2 RSAES-PKCS1-v1.5" and "7 Encryption schemes" of the following URL:\r
+        // ftp://ftp.rsasecurity.com/pub/pkcs/pkcs-1/pkcs-1v2-1.pdf\r
+        $temp = chr(0) . chr(2);\r
+        $modulus = $key[1]->toBytes();\r
+        $length = strlen($modulus) - strlen($m) - 3;\r
+        for ($i = 0; $i < $length; $i++) {\r
+            $temp.= chr(crypt_random(1, 255));\r
+        }\r
+        $temp.= chr(0) . $m;\r
+\r
+        $m = new Math_BigInteger($temp, 256);\r
+        $m = $m->modPow($key[0], $key[1]);\r
+\r
+        return $m->toBytes();\r
+    }\r
+\r
+    /**\r
+     * Return the server key public exponent\r
+     *\r
+     * Returns, by default, the base-10 representation.  If $raw_output is set to true, returns, instead,\r
+     * the raw bytes.  This behavior is similar to PHP's md5() function.\r
+     *\r
+     * @param optional Boolean $raw_output\r
+     * @return String\r
+     * @access public\r
+     */\r
+    function getServerKeyPublicExponent($raw_output = false)\r
+    {\r
+        return $raw_output ? $this->server_key_public_exponent->toBytes() : $this->server_key_public_exponent->toString();\r
+    }\r
+\r
+    /**\r
+     * Return the server key public modulus\r
+     *\r
+     * Returns, by default, the base-10 representation.  If $raw_output is set to true, returns, instead,\r
+     * the raw bytes.  This behavior is similar to PHP's md5() function.\r
+     *\r
+     * @param optional Boolean $raw_output\r
+     * @return String\r
+     * @access public\r
+     */\r
+    function getServerKeyPublicModulus($raw_output = false)\r
+    {\r
+        return $raw_output ? $this->server_key_public_modulus->toBytes() : $this->server_key_public_modulus->toString();\r
+    }\r
+\r
+    /**\r
+     * Return the host key public exponent\r
+     *\r
+     * Returns, by default, the base-10 representation.  If $raw_output is set to true, returns, instead,\r
+     * the raw bytes.  This behavior is similar to PHP's md5() function.\r
+     *\r
+     * @param optional Boolean $raw_output\r
+     * @return String\r
+     * @access public\r
+     */\r
+    function getHostKeyPublicExponent($raw_output = false)\r
+    {\r
+        return $raw_output ? $this->host_key_public_exponent->toBytes() : $this->host_key_public_exponent->toString();\r
+    }\r
+\r
+    /**\r
+     * Return the host key public modulus\r
+     *\r
+     * Returns, by default, the base-10 representation.  If $raw_output is set to true, returns, instead,\r
+     * the raw bytes.  This behavior is similar to PHP's md5() function.\r
+     *\r
+     * @param optional Boolean $raw_output\r
+     * @return String\r
+     * @access public\r
+     */\r
+    function getHostKeyPublicModulus($raw_output = false)\r
+    {\r
+        return $raw_output ? $this->host_key_public_modulus->toBytes() : $this->host_key_public_modulus->toString();\r
+    }\r
+\r
+    /**\r
+     * Return a list of ciphers supported by SSH1 server.\r
+     *\r
+     * Just because a cipher is supported by an SSH1 server doesn't mean it's supported by this library. If $raw_output\r
+     * is set to true, returns, instead, an array of constants.  ie. instead of array('Triple-DES in CBC mode'), you'll\r
+     * get array(NET_SSH1_CIPHER_3DES).\r
+     *\r
+     * @param optional Boolean $raw_output\r
+     * @return Array\r
+     * @access public\r
+     */\r
+    function getSupportedCiphers($raw_output = false)\r
+    {\r
+        return $raw_output ? array_keys($this->supported_ciphers) : array_values($this->supported_ciphers);\r
+    }\r
+\r
+    /**\r
+     * Return a list of authentications supported by SSH1 server.\r
+     *\r
+     * Just because a cipher is supported by an SSH1 server doesn't mean it's supported by this library. If $raw_output\r
+     * is set to true, returns, instead, an array of constants.  ie. instead of array('password authentication'), you'll\r
+     * get array(NET_SSH1_AUTH_PASSWORD).\r
+     *\r
+     * @param optional Boolean $raw_output\r
+     * @return Array\r
+     * @access public\r
+     */\r
+    function getSupportedAuthentications($raw_output = false)\r
+    {\r
+        return $raw_output ? array_keys($this->supported_authentications) : array_values($this->supported_authentications);\r
+    }\r
+\r
+    /**\r
+     * Return the server identification.\r
+     *\r
+     * @return String\r
+     * @access public\r
+     */\r
+    function getServerIdentification()\r
+    {\r
+        return rtrim($this->server_identification);\r
+    }\r
+}\r
+?>
\ No newline at end of file