[
https://issues.apache.org/jira/browse/SSHD-549?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14679582#comment-14679582
]
Goldstein Lyor commented on SSHD-549:
-------------------------------------
You are looking at 0.9.0 where according your own comment you should be looking
at the 0.14.0 version of
org/apache/sshd/server/auth/UserAuthKeyboardInteractive.java - FYI, there have
been some (major) changes between these versions - below is the 0.14.0 version
of the file. Also, make sure you add _new
MyUserAuthKeyboardInteractive.Factory()_ to the _userAuthFactories_
{code:java}
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.sshd.server.auth;
import org.apache.sshd.common.NamedFactory;
import org.apache.sshd.common.SshConstants;
import org.apache.sshd.common.SshException;
import org.apache.sshd.common.util.Buffer;
import org.apache.sshd.server.PasswordAuthenticator;
import org.apache.sshd.server.UserAuth;
import org.apache.sshd.server.session.ServerSession;
/**
* TODO Add javadoc
*
* @author <a href="mailto:[email protected]">Apache MINA SSHD Project</a>
*/
public class UserAuthKeyboardInteractive extends AbstractUserAuth {
public static class Factory implements NamedFactory<UserAuth> {
public String getName() {
return "keyboard-interactive";
}
public UserAuth create() {
return new UserAuthKeyboardInteractive();
}
}
@Override
protected Boolean doAuth(Buffer buffer, boolean init) throws Exception {
if (init) {
// Prompt for password
buffer =
session.createBuffer(SshConstants.SSH_MSG_USERAUTH_INFO_REQUEST);
buffer.putString("Password authentication");
buffer.putString("");
buffer.putString("en-US");
buffer.putInt(1);
buffer.putString("Password: ");
buffer.putBoolean(false);
session.writePacket(buffer);
return null;
} else {
byte cmd = buffer.getByte();
if (cmd != SshConstants.SSH_MSG_USERAUTH_INFO_RESPONSE) {
throw new SshException("Received unexpected message: " + cmd);
}
int num = buffer.getInt();
if (num != 1) {
throw new SshException("Expected 1 response from user but
received " + num);
}
String password = buffer.getString();
return checkPassword(session, username, password);
}
}
private boolean checkPassword(ServerSession session, String username,
String password) throws Exception {
PasswordAuthenticator auth =
session.getFactoryManager().getPasswordAuthenticator();
if (auth != null) {
return auth.authenticate(username, password, session);
}
throw new Exception("No PasswordAuthenticator configured");
}
}
{code}
> Need to Change the password prompt
> ----------------------------------
>
> Key: SSHD-549
> URL: https://issues.apache.org/jira/browse/SSHD-549
> Project: MINA SSHD
> Issue Type: Test
> Reporter: VENKATA DIGAVALLI
>
> Hi,
> I created the SSH server using Mina 2.0.7 libraries. During the login, the
> client application is looking for the text "Password:" and the SSH server
> handler seems to be sending back the prompt like "username@hostname
> passsword:".
> I believe this password prompt is picked from the sshd_config file on the
> linux server where this SSH server is running. Tried changing that config
> file, but still don't see any change in the password prompt text.
> This is causing a failure during login. Please let me know if there is any
> method in sshd libraries or any other solution I can use to override this
> password prompt during login.
> Thanks,
> Venkata Digavalli
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)