ssh2_auth_password

(PECL ssh2 >= 0.9.0)

ssh2_auth_passwordParola kullanarak kimlik doğrulaması yapar

Açıklama

ssh2_auth_password(resource $oturum, string $kullanıcı, string $parola): bool

Düz parola kullanarak SSH üzerinden kimlik doğrulaması yapar. 0.12 sürümünden beri ayrıca etkileşimli klavye yöntemide desteklenmektedir.

Bağımsız Değişkenler

oturum

ssh2_connect() ile sağlanan bir SSH bağlantı tanıtıcısı.

kullanıcı

Uzak konaktaki kullanıcı ismi.

parola

kullanıcı için parola.

Dönen Değerler

Başarı durumunda true, başarısızlık durumunda false döner.

Örnekler

Örnek 1 - Parolalı kimlik doğrulama

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

if (
ssh2_auth_password($baglanti, 'birey', 'parola')) {
echo
"Kimlik Doğrulaması Başarılı!\n";
} else {
die(
'Kimlik Doğrulaması Başarısız...');
}
?>

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