即使我可以使用libssh库在我的服务器上使用各种方法进行身份验证,也不会检测到任何身份验证方法。这是一个代码示例:
#include <libssh/libssh.h>
#include <stdio.h>
int main(int,char**)
{
ssh_session session = ssh_new();
unsigned short port = 22;
int verbosity = SSH_LOG_PROTOCOL;
ssh_options_set(session, SSH_OPTIONS_HOST, "localhost");
ssh_options_set(session, SSH_OPTIONS_PORT, &port);
ssh_options_set(session, SSH_OPTIONS_LOG_VERBOSITY, &verbosity);
ssh_connect(session);
int supported_authentication_methods = ssh_userauth_list(session, NULL);
printf("Supported methods: %d\n", supported_authentication_methods);
return (0);
}
这是它产生的输出:
[2015/04/16 19:30:34.367528, 1] ssh_connect: libssh 0.6.4 (c) 2003-2014 Aris Adamantiadis, Andreas Schneider, and libssh contributors. Distributed under the LGPL, please refer to COPYING file for information about your rights, using threading threads_noop
[2015/04/16 19:30:34.368626, 2] ssh_socket_connect: Nonblocking connection socket: 5
[2015/04/16 19:30:34.368643, 2] ssh_connect: Socket connecting, now waiting for the callbacks to work
[2015/04/16 19:30:34.368675, 1] socket_callback_connected: Socket connection callback: 1 (0)
[2015/04/16 19:30:34.400420, 1] ssh_client_connection_callback: SSH server banner: SSH-2.0-OpenSSH_6.2
[2015/04/16 19:30:34.400445, 1] ssh_analyze_banner: Analyzing banner: SSH-2.0-OpenSSH_6.2
[2015/04/16 19:30:34.400456, 1] ssh_analyze_banner: We are talking to an OpenSSH client version: 6.2 (60200)
[2015/04/16 19:30:34.426885, 2] ssh_packet_dh_reply: Received SSH_KEXDH_REPLY
[2015/04/16 19:30:34.427292, 2] ssh_client_dh_reply: SSH_MSG_NEWKEYS sent
[2015/04/16 19:30:34.427311, 2] ssh_packet_newkeys: Received SSH_MSG_NEWKEYS
[2015/04/16 19:30:34.427908, 2] ssh_packet_newkeys: Signature verified and valid
Supported methods: 0
正如输出显示的那样,没有检测到任何身份验证方法......这很奇怪,因为我绝对可以使用密码登录localhost,使用密钥......具体是什么?
答案 0 :(得分:2)
根据docs:
这需要在方法可用之前调用函数ssh_userauth_none()。
首先请致电ssh_userauth_none()
。服务器响应可用选项列表,这是ssh_userauth_list()
知道返回什么的方式。
(void)ssh_userauth_none(session, NULL);
int supported_authentication_methods = ssh_userauth_list(session, NULL);