目前只是个简单版本,有一些难点没有突破(vi编辑器的处理)
package telnet. server ; import jinghai. base. Environment ;
import telnet. TelnetProxyMain ;
import telnet. handle. Handle ; import java. io. ByteArrayOutputStream ;
import java. io. IOException ;
import java. io. InputStream ;
import java. io. OutputStream ;
import java. net. Socket ;
import java. util. LinkedList ;
import java. util. concurrent. CountDownLatch ;
public class TelnetProxyServer extends Thread { Socket client; Socket accept; InputStream inServer; OutputStream outClient; CountDownLatch countDownLatch; public volatile static STATUS status; public static STATUS login; private static int index = 0 ; private static final int temp13 = 13 ; public TelnetProxyServer ( Socket client, Socket accept, InputStream inServer, OutputStream outClient, CountDownLatch countDownLatch) throws IOException { this . client = client; this . accept = accept; this . inServer = inServer; this . outClient = outClient; this . countDownLatch = countDownLatch; } @Override public void run ( ) { LinkedList < Integer > linkedListProxyClient = new LinkedList < > ( ) ; status = STATUS. CONNECT; login = STATUS. CONNECT; while ( ! accept. isClosed ( ) && ! client. isClosed ( ) ) { try { if ( TelnetProxyMain . readClient == - 1 || TelnetProxyMain . readServer == - 1 ) break ; TelnetProxyMain . readServer = inServer. read ( ) ; } catch ( IOException e) { e. printStackTrace ( ) ; } if ( status. getStatus ( ) . equalsIgnoreCase ( "CONNECT" ) ) { connectStatus ( outClient) ; } else { try { statusPublic ( inServer, outClient, linkedListProxyClient) ; } catch ( IOException e) { e. printStackTrace ( ) ; } } } countDownLatch. countDown ( ) ; } private void connectStatus ( OutputStream outClient) { try { outClient. write ( TelnetProxyMain . readServer) ; if ( TelnetProxyMain . readServer == 3 ) { status = status. nextState ( ) ; } } catch ( IOException e) { e. printStackTrace ( ) ; } } private void checkLogin ( boolean b, InputStream inServer, OutputStream outClient, LinkedList < Integer > linkedListProxyClient, byte [ ] bytes) throws IOException { if ( b) { outClient. write ( TelnetProxyMain . readServer) ; outClient. write ( inServer. read ( ) ) ; login = login. nextState ( ) ; System . out. println ( "LegalOrder: " + new String ( bytes) ) ; } else { inServer. read ( ) ; outClient. write ( 27 ) ; outClient. write ( 27 ) ; } linkedListProxyClient. clear ( ) ; index = 0 ; } private void statusPublic ( InputStream inServer, OutputStream outClient, LinkedList < Integer > linkedListProxyClient) throws IOException { if ( TelnetProxyMain . readServer == 10 ) {
interactiveStatus ( inServer, outClient, linkedListProxyClient) ;
} else if ( TelnetProxyMain . readServer == 8 ) { if ( index != 0 && linkedListProxyClient. size ( ) != 0 ) { linkedListProxyClient. remove ( -- index) ; } outClient. write ( TelnetProxyMain . readServer) ; } else if ( TelnetProxyMain . readServer == 27 ) { specialButtons ( inServer, outClient, linkedListProxyClient) ; } else if ( TelnetProxyMain . readServer == 127 ) { } else if ( TelnetProxyMain . readServer != 3 && TelnetProxyMain . readServer != 13 ) { linkedListProxyClient. add ( index++ , TelnetProxyMain . readServer) ; outClient. write ( TelnetProxyMain . readServer) ; } } private void specialButtons ( InputStream inServer, OutputStream outClient, LinkedList < Integer > linkedListProxyClient) throws IOException { ByteArrayOutputStream special = new ByteArrayOutputStream ( ) ; special. write ( TelnetProxyMain . readServer) ; int read = inServer. read ( ) ; if ( read == 91 ) { special. write ( 91 ) ; int read1 = inServer. read ( ) ; if ( read1 == 68 || read1 == 67 ) { special. write ( read1) ; outClient. write ( special. toByteArray ( ) ) ; if ( read1 == 68 && index > 0 ) { index-- ; } if ( read1 == 67 && index < linkedListProxyClient. size ( ) ) { index++ ; } } else if ( read1 == 65 || read1 == 66 ) { special. write ( read1) ; outClient. write ( special. toByteArray ( ) ) ; } else if ( read1 == 49 || read1 == 52 ) { special. write ( inServer. read ( ) ) ; outClient. write ( special. toByteArray ( ) ) ; } } else if ( read == 27 ) { outClient. write ( TelnetProxyMain . readServer) ; outClient. write ( read) ; linkedListProxyClient. clear ( ) ; index = 0 ; } } private void loginStatus ( InputStream inServer, OutputStream outClient, LinkedList < Integer > linkedListProxyClient) throws IOException { byte [ ] bytes = listToBytes ( linkedListProxyClient) ; if ( login. getStatus ( ) . equalsIgnoreCase ( "CONNECT" ) ) { boolean b = Handle . checkUserName ( bytes) ; checkLogin ( b, inServer, outClient, linkedListProxyClient, bytes) ; } else if ( login. getStatus ( ) . equalsIgnoreCase ( "LOGIN" ) ) { boolean b = Handle . checkPassWord ( bytes) ; checkLogin ( b, inServer, outClient, linkedListProxyClient, bytes) ; } else if ( login. getStatus ( ) . equalsIgnoreCase ( "INTERACTIVE" ) ) { boolean b = Handle . checkDomainName ( bytes) ; checkLogin ( b, inServer, outClient, linkedListProxyClient, bytes) ; if ( b) status = status. nextState ( ) ; index = 0 ; } } private void interactiveStatus ( InputStream inServer, OutputStream outClient, LinkedList < Integer > linkedListProxyClient) throws IOException { byte [ ] bytes = listToBytes ( linkedListProxyClient) ; String command = new String ( bytes) . trim ( ) ; boolean b = Handle . checkCommand ( command) ; if ( b) { if ( Environment . isWindows) outClient. write ( temp13) ; outClient. write ( TelnetProxyMain . readServer) ; System . out. println ( "LegalOrder: " + new String ( bytes) ) ; } else { for ( int i = 0 ; i < bytes. length; i++ ) { outClient. write ( 8 ) ; } System . out. println ( bytes. length + "个8" ) ; } linkedListProxyClient. clear ( ) ; index = 0 ; } private byte [ ] listToBytes ( LinkedList < Integer > linkedListProxyClient) { Integer [ ] ints = linkedListProxyClient. toArray ( new Integer [ 0 ] ) ; int len = ints. length; byte [ ] bytes = new byte [ len] ; for ( int i = 0 ; i < len; i++ ) { bytes[ i] = ( byte ) ( int ) ints[ i] ; } return bytes; } }
package telnet. client ; import telnet. TelnetProxyMain ; import java. io. IOException ;
import java. io. InputStream ;
import java. io. OutputStream ;
import java. net. Socket ;
import java. util. concurrent. CountDownLatch ;
public class TelnetProxyClient extends Thread { Socket client; Socket accept; InputStream inClient; OutputStream outServer; CountDownLatch countDownLatch; public TelnetProxyClient ( Socket client, Socket accept, InputStream inClient, OutputStream outServer, CountDownLatch countDownLatch) { this . client = client; this . accept = accept; this . inClient = inClient; this . outServer = outServer; this . countDownLatch = countDownLatch; } @Override public void run ( ) { while ( ! accept. isClosed ( ) && ! client. isClosed ( ) ) { try { if ( TelnetProxyMain . readServer == - 1 || TelnetProxyMain . readClient == - 1 ) break ; TelnetProxyMain . readClient = inClient. read ( ) ;
outServer. write ( TelnetProxyMain . readClient) ; } catch ( IOException e) { try { outServer. flush ( ) ; e. printStackTrace ( ) ; } catch ( IOException ioException) { ioException. printStackTrace ( ) ; } break ; } } countDownLatch. countDown ( ) ; }
}
package telnet ; import telnet. client. TelnetProxyClient ;
import telnet. server. TelnetProxyServer ; import java. io. IOException ;
import java. io. InputStream ;
import java. io. OutputStream ;
import java. net. ServerSocket ;
import java. net. Socket ;
import java. util. concurrent. CountDownLatch ;
public class TelnetProxyMain { private final ServerSocket serverSocket; private final Socket client; private final Socket accept; private final InputStream inServer; private final OutputStream outServer; private final InputStream inClient; private final OutputStream outClient; public volatile static int readServer = 0 ; public volatile static int readClient = 0 ; private final CountDownLatch countDownLatch = new CountDownLatch ( 2 ) ; public TelnetProxyMain ( String ip, int serverPort) throws IOException { serverSocket = new ServerSocket ( 55 ) ; accept = serverSocket. accept ( ) ; inServer = accept. getInputStream ( ) ; outServer = accept. getOutputStream ( ) ; client = new Socket ( ip, serverPort) ; inClient = client. getInputStream ( ) ; outClient = client. getOutputStream ( ) ; } public void run ( ) { try { new TelnetProxyServer ( client, accept, inServer, outClient, countDownLatch) . start ( ) ; new TelnetProxyClient ( client, accept, inClient, outServer, countDownLatch) . start ( ) ; countDownLatch. await ( ) ; } catch ( InterruptedException | IOException e) { e. printStackTrace ( ) ; } finally { try { client. close ( ) ; accept. close ( ) ; serverSocket. close ( ) ; } catch ( IOException e) { e. printStackTrace ( ) ; } } } public static void main ( String [ ] args) { try { TelnetProxyMain telnetProxyMain = new TelnetProxyMain ( args[ 0 ] , 50000 ) ; telnetProxyMain. run ( ) ; } catch ( IOException e) { e. printStackTrace ( ) ; } }
}