getMessage() . "," . $server); } $output = $handle->exec("sudo " . $_SESSION['config']->get_scriptPath() . ' ' . escapeshellarg($command)); return array($output); } /** * Connects to the given SSH server. * * @param String $server server name (e.g. localhost or localhost,1234) * @return object handle */ function lamConnectSSH($server) { // add phpseclib to include path set_include_path(get_include_path() . PATH_SEPARATOR . dirname(__FILE__) . '/3rdParty/phpseclib'); include_once('Net/SSH2.php'); include_once('Crypt/RSA.php'); $serverNameParts = explode(",", $server); $handle = false; if (sizeof($serverNameParts) > 1) { $handle = @new Net_SSH2($serverNameParts[0], $serverNameParts[1]); } else { $handle = @new Net_SSH2($server); } if (!$handle) { throw new Exception(_("Unable to connect to remote server!")); } lamLoginSSH($handle); return $handle; } /** * Performs a login to the provided SSH handle. * * @param handle $handle SSH handle * @throws Exception login failed */ function lamLoginSSH($handle) { $username = $_SESSION['config']->getScriptUserName(); $credentials = $_SESSION['ldap']->decrypt_login(); if (empty($username)) { // get user name from current LAM user $sr = @ldap_read($_SESSION['ldap']->server(), $credentials[0], "objectClass=posixAccount", array('uid'), 0, 0, 0, LDAP_DEREF_NEVER); if ($sr) { $entry = @ldap_get_entries($_SESSION['ldap']->server(), $sr); $username = $entry[0]['uid'][0]; } if (empty($username)) { throw new Exception(sprintf(_("Your LAM admin user (%s) must be a valid Unix account to work with lamdaemon!"), getAbstractDN($credentials[0]))); } } $password = $credentials[1]; $keyPath = $_SESSION['config']->getScriptSSHKey(); if (!empty($keyPath)) { // use key authentication if (!file_exists($keyPath) || !is_readable($keyPath)) { throw new Exception(sprintf(_("Unable to read %s."), htmlspecialchars($keyPath))); } $key = file_get_contents($keyPath); $rsa = new Crypt_RSA(); $keyPassword = $_SESSION['config']->getScriptSSHKeyPassword(); if (!empty($keyPassword)) { $rsa->setPassword($keyPassword); } if (!$rsa->loadKey($key)) { throw new Exception(sprintf(_("Unable to load key %s."), htmlspecialchars($keyPath))); } $password = $rsa; } $login = @$handle->login($username, $password); if (!$login) { throw new Exception(_("Unable to login to remote server!")); } } ?>