Fucksocks

Fucksocks is a Java library of SOCKS5 protocol.

See Java API Documentation

References

Featrues

Client

Server

Quick start

Dependency

You should put following libraries in your project's CLASSPATH:

SCOKS5 Client

CONNECT

    SocksProxy proxy = new Socks5(new InetSocketAddress("localhost",1080));
    Socket socket = new SocksSocket(proxy, new InetSocketAddress("whois.internic.net",43));

BIND

    SocksServerSocket serverSocket = new SocksServerSocket(proxy, inetAddress,8080);
    InetAddress bindAddress = serverSocket.getBindAddress();
    int bindPort  = serverSocket.getBindPort();
    Socket socket = serverSocket.accept();

UDP ASSOCIATE

   DatagramSocket socket = new Socks5DatagramSocket(proxy);

SOCKS5 Server

     SocksProxyServer proxyServer = SocksProxyServerFactory.newNoAuthenticaionServer();
     proxyServer.start();// Creat a SOCKS5 server bind at port 1080