ssh2_auth_password

(PECL ssh2 >= 0.9.0)

ssh2_auth_passwordSSH 上でプレーンなパスワードを使用した認証を行う

説明

ssh2_auth_password(resource $session, string $username, string $password): bool

SSH 上でプレーンなパスワードを使用した認証を行います。 バージョン 0.12 以降、この関数は keyboard_interactive 方式にも対応するようになりました。

パラメータ

session

ssh2_connect() のコールによって取得した SSH 接続リンク ID。

username

リモートのユーザー名。

password

username のパスワード。

戻り値

成功した場合に true を、失敗した場合に false を返します。

例1 パスワードを用いた認証

<?php
$connection
= ssh2_connect('shell.example.com', 22);

if (
ssh2_auth_password($connection, 'username', 'secret')) {
echo
"Authentication Successful!\n";
} else {
die(
'Authentication Failed...');
}
?>

add a note

User Contributed Notes 1 note

up
0
sgchris at gmail dot com
9 years ago
Please note that the function ssh2_auth_password raises PHP warning(!) on bad authentication. To avoid the warning, use the "silence" ("@") operator.

<?php
$ssh
= ssh2_connect($host);
if (
false === $ssh) {
die(
'connection failed');
}

$auth = @ssh2_auth_password($ssh, $user, $password);
if (
false === $auth) {
die(
'authentication failed');
}
?>
To Top