Advertisement
Guest User

Commands

a guest
Jun 7th, 2024
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.99 KB | None | 0 0
  1. package cnc;
  2.  
  3. import java.io.IOException;
  4. import java.io.InputStream;
  5. import java.io.OutputStream;
  6.  
  7. import org.apache.sshd.server.Environment;
  8. import org.apache.sshd.server.ExitCallback;
  9. import org.apache.sshd.server.channel.ChannelSession;
  10. import org.apache.sshd.server.command.Command;
  11.  
  12. public class CNCCommands implements Command, Runnable{
  13.  
  14.     public CNCCommands() {
  15.         super();
  16.     }
  17.    
  18.     private InputStream in;
  19.     private OutputStream out, errorStream;
  20.     private ExitCallback callback;
  21.     private String cmd = "cmd";
  22.    
  23.     @Override
  24.     public void setInputStream(InputStream in) {
  25.         this.in = in;
  26.     }
  27.  
  28.     @Override
  29.     public void setOutputStream(OutputStream out) {
  30.         this.out = out;
  31.     }
  32.  
  33.     @Override
  34.     public void setErrorStream(OutputStream err) {
  35.         this.errorStream = err;
  36.     }
  37.  
  38.     @Override
  39.     public void setExitCallback(ExitCallback callback) {
  40.         this.callback = callback;
  41.     }
  42.  
  43.     @Override
  44.     public void start(ChannelSession channel, Environment env) throws IOException {
  45.         // TODO Auto-generated method stub
  46.        
  47.     }
  48.  
  49.     @Override
  50.     public void destroy(ChannelSession channel) throws Exception {
  51.         // TODO Auto-generated method stub
  52.        
  53.     }
  54.  
  55.  
  56.     @Override
  57.     public void run() {
  58.         while(!cmd.equalsIgnoreCase("exit")) {
  59.             try {
  60.                 readCommand(in);
  61.                 handleCommand(cmd, out);
  62.             } catch (Exception e) {
  63.                 writeError(errorStream, e);
  64.                 callback.onExit(-1, e.getMessage());
  65.                 return;
  66.             }
  67.  
  68.             callback.onExit(0);
  69.  
  70.         }
  71.  
  72.     }
  73.  
  74.     private void writeError(OutputStream error, Exception e) {
  75.         // TODO Auto-generated method stub
  76.        
  77.     }
  78.  
  79.     private void handleCommand(String commmandReceived, OutputStream outHandler) {
  80.         // TODO Auto-generated method stub
  81.        
  82.     }
  83.  
  84.     private void readCommand(InputStream receivedCmd) throws IOException {
  85.  
  86.         String tmp = receivedCmd.toString();
  87.  
  88.        
  89.     }
  90.    
  91. }
  92.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement