Ruby/NetSSH 只尝试一次用户名和密码?
Ruby/NetSSH try username and password only once?
有没有办法在 Net::SSH.start()
尝试用户名和密码序列后立即失败?我想测试凭据是否有效然后停止,这是我的代码
output = 0
Net::SSH.start('host', 'user', :password => "pass") do |ssh|
output = ssh.exec! 'echo "1"'
end
puts output
这应该将身份验证限制为仅 password
,并且不会提示或重试:
Net::SSH.start('host', 'user',
:password => 'pass',
:auth_methods => [ 'password' ],
:number_of_password_prompts => 0)
:auth_methods
限制 SSH 仅尝试数组中列出的那些身份验证方法。在这种情况下,我们只想尝试密码验证。
:number_of_password_prompts
仅适用于 password
身份验证方法,如果将其设置为零,它永远不会提示输入密码,即使身份验证失败。
有没有办法在 Net::SSH.start()
尝试用户名和密码序列后立即失败?我想测试凭据是否有效然后停止,这是我的代码
output = 0
Net::SSH.start('host', 'user', :password => "pass") do |ssh|
output = ssh.exec! 'echo "1"'
end
puts output
这应该将身份验证限制为仅 password
,并且不会提示或重试:
Net::SSH.start('host', 'user',
:password => 'pass',
:auth_methods => [ 'password' ],
:number_of_password_prompts => 0)
:auth_methods
限制 SSH 仅尝试数组中列出的那些身份验证方法。在这种情况下,我们只想尝试密码验证。
:number_of_password_prompts
仅适用于 password
身份验证方法,如果将其设置为零,它永远不会提示输入密码,即使身份验证失败。