当前位置: 首页 > 知识库问答 >
问题:

JSch:用JSCH tty代码执行交互式命令,我做错了什么?

简成仁
2023-03-14

我正在尝试使用JSch连接到服务器,然后执行交互式su命令。

你能告诉我我错过了什么吗?这种东西每次都挂着,我看不出有什么理由这样做。特别是在发送密码之前,我特别等待密码字符串(实际上是assword而不是)。

这就是我正在做的:

  1. 以user1/pass1身份登录

无论如何,这里是主要的执行函数,它接受user1/pass1、user2/pass2和命令行。

public String execute (String host, String nuser, String npass,
                       String puser, String ppass, String commandLine)
    {
      try{
        synchronized(this) 
        {
          session = jsch.getSession(nuser,host,22);
          session.setConfig("StrictHostKeyChecking", "no");
          pstr=npass;
          //session.setPassword(npass);
          String authmethods=  session.getConfig("PreferredAuthentications");
          System.out.println(authmethods);
          UserInfo ui=new SUSessionExecution.UInfo();
          Thread.sleep(150);
          if(authmethods.contains("keyboard-interactive"))
          { System.out.print("keyboard-interactive"); session.setUserInfo(ui); } 
          else if ( authmethods.contains("password") )
          { System.out.print("password"); session.setPassword(pstr);  }

          session.connect();
          channel = session.openChannel("exec");
          nuser=null;
          npass=null;


          ((ChannelExec)channel).setPty(true);
          ((ChannelExec)channel).setPtyType("vt100");
          String command= "su - " + puser + " -c " + commandLine  + "\n";
          //((ChannelExec)channel).setCommand(commandLine);

          byte[] cmdBuffer=command.getBytes();
          ByteArrayInputStream bi = new ByteArrayInputStream(cmdBuffer);
          channel.setInputStream(bi);

          ByteArrayOutputStream bo = new ByteArrayOutputStream();
          ((ChannelExec)channel).setErrStream(bo);

          sessionOutput = channel.getInputStream();
          //sessionError = channel.getExtInputStream();


          channel.connect();

          session_open=true;
          // it is only here our session is fully functional.

          boolean sustatus;//=establishSU(commandIO, channel,puser,ppass);
          // NEEDS REPLACE

          //commandIO.write(command.getBytes());
          //commandIO.flush();



          String standardOutBuffer="";
          String standardErrBuffer="";

          int counter;
          byte[] byteBuffer = new byte[1024];


          while(sessionOutput.available() > 0)
            { counter=0; //byteBuffer=null;
              counter=sessionOutput.read(byteBuffer, 0, byteBuffer.length);
              if(counter < 0) { throw new java.io.IOException(); }
              standardOutBuffer += new String(byteBuffer,0,counter);
              if(standardOutBuffer.contains("assword")){break;}
            }

            /*if(sessionError.available() > 0)
            { counter=0; //byteBuffer=null;
              counter=sessionError.read(byteBuffer, 0, byteBuffer.length);
              if(counter < 0) { throw new java.io.IOException(); }
              standardErrBuffer += new String(byteBuffer,0,counter);
              if(standardErrBuffer.contains("assword")){break;}}*/


        commandIO = new PipedOutputStream();
        sessionInput = new PipedInputStream(commandIO);
        channel.setInputStream(sessionInput);
        commandIO.write(new String(ppass+"\n").getBytes());
        commandIO.flush();

        counter=0; standardOutBuffer="";
        while((counter = sessionOutput.read(byteBuffer,0,byteBuffer.length)) != -1)
        { standardOutBuffer += new String(byteBuffer,0,counter); }

        closeComponents();
        return standardOutBuffer;
        }
      }
      catch(com.jcraft.jsch.JSchException jse) 
      { session_open=false;su_space_open=false;jse.printStackTrace();
        closeComponents(); return null; }
      catch(java.io.IOException ioe)
      { session_open=false;su_space_open=false;ioe.printStackTrace();
        closeComponents(); return null; }
      catch(InterruptedException ie)
      { ie.printStackTrace(); }

        return null;
    }

这是我的错误消息:

Exception in thread "main" java.lang.NullPointerException
  at com.jcraft.jsch.Buffer.putString(Buffer.java:59)
  at com.jcraft.jsch.UserAuthKeyboardInteractive.start(UserAuthKeyboardInteractive.ja‌va:183)
  at com.jcraft.jsch.Session.connect(Session.java:442)
  at com.jcraft.jsch.Session.connect(Session.java:162)
  at susessionexecution.SUExecute.execute(SUExecute.java:53)
  at Tester.<init>(Tester.java:12)
  at Tester.main(Tester.java:17) 

这是promptKeyboardInteractive方法

public String[] promptKeyboardInteractive (String destination, String name,
                                           String instruction, String[] prompt,
                                           boolean[] echo)
{
    System.out.println("\n"+prompt.length+"\n\n");
    String[] response=new String[prompt.length];
    response[0] = passwd;
    return response;
}

共有1个答案

郑晨
2023-03-14

看来你实施了

  UIKeyboardInteractive#promptKeyboardInteractive()

返回一个String数组,其中包含null。

至于sudo,我建议参考http://www.jcraft.com/jsch/examples/Sudo.java.html

 类似资料:
  • 为什么/我的目标: 我有一个由pi组成的小型网状网络,每天大部分时间都在运行脚本。我想取消停机时间,但是代码有时会在连续循环3-4天后停止工作,(有时长达一周,代码才会出现错误并停止)。 每个节点上运行的脚本用“最后签入”字段更新mySQL数据库。 我希望用Java编写一个小型后台程序,它将在我的服务器上无限期运行,时不时地检查每个站点的“最后签入”,如果它注意到一个节点宕机,远程ssh进入该节点

  • 我正在使用EclipseIDE编程。在完成有关Apache POI的教程后: https://www.youtube.com/watch?v=RsrF2Ku7ad4 我通过eclipse和以下链接创建了一个可执行jar:http://help.eclipse.org/mars/index.jsp?topic=/org.eclipse.jdt.doc.user/tasks/tasks-37.htm

  • 我正在尝试编写一个Java代码,它可以ssh到Unix服务器并重置用户密码。所以我尝试实现SO中的一些代码。 如。 通过JavaJSch通过ssh向远程服务器发送命令 从字符串中获取命令(密码)并设置为InputStream到Java(JSCH)中的Unix服务器 使用JSch,我按照此链接获取重置用户密码的正确命令。 当我试着运行这段代码时,它似乎没有重置用户的密码。因此,我尝试直接从Unix的

  • MOAC母链客户端使用了和以太坊类似的交互式命令行。用户可以在命令行(console)中执行内置的JAVA script命令或者利用脚本(script),输出结果显示在命令行中。 这里使用的chain3对象,是MOAC参考以太坊,而开发的一套javascript库,目的是让应用程序能够与MOAC的VNODE和SCS节点进行通信。注意,这里有两层,moac启动了一个MOAC VNODE节点,cons

  • 从v1.1.1开始,应用链客户端SCS也支持使用了和以太坊类似的交互式命令行。用户可以在命令行(console)中执行内置的JAVA script命令或者利用脚本(script),输出结果显示在命令行中。 这里使用的chain3对象,是MOAC参考以太坊,而开发的一套javascript库,目的是让应用程序能够与MOAC的VNODE和SCS节点进行通信。注意,这里有两层,moac启动了一个MOAC

  • 问题内容: 我正在尝试通过paramiko运行交互式命令。该cmd执行尝试提示输入密码,但是我不知道如何通过paramiko的exec_command提供密码,并且执行挂起。如果cmd执行期望交互输入,是否可以将值发送到终端? 有谁知道如何解决?谢谢。 问题答案: 完整的paramiko发行版附带了很多很好的演示。 在demos子目录中,并有完整的交互式TTY示例,这可能对您的情况有些过分。 在您