java实现socks5

socks5

作用:将开发的服务运行在海外服务器,可以访问谷歌。

浏览器支持

chrome

首先开启socks5代理
image
image
可以正常访问
image

safari

首先开启socks5代理
image
可以正常访问
image

调试

输入: curl --socks5 192.168.1.101:1080 https://www.baidu.com

image

对应端口为50207

image

wireshark抓包

查看socks5协议

一次收发

image image

二次收发

image image

至此协议升级完成,后面开始传输数据。

查看https协议

tlsv加密正常。

image

查看http协议

输入命令行:curl --socks5 192.168.1.101:1080 http://www.baidu.com

image

压测 todo

没找到合适的工具暂没有压测。

代码

协议比较简单。
首先客户端发送一串数据进行权限校验。
服务端允许。

    public void exec() throws IOException {
        ByteBuffer writeBuffer = ByteBuffer.allocate(4096 * 5);
        CompositeByteBuf cumulation = channelWrapped.cumulation();
        String uuid = channelWrapped.uuid();
        byte VER;
        int len = cumulation.remaining();
        //auth协议最少有3位
        if (len < 3) {
            LOGGER.warn("数据包不完整 {}", uuid);
            return;
        }
        //切换读取模式
        cumulation.mark();
        VER = cumulation.get();
        if (0x05 > VER) {
            LOGGER.warn("版本号错误或版本过低,只能支持5 {}", uuid);
            closeChildChannel();
            return;
        }
        byte NMETHODS = cumulation.get();
        //读取数据不够,接着重读
        if (cumulation.remaining() < NMETHODS) {
            cumulation.reset();
            LOGGER.warn("数据包不完整 {}", uuid);
            return;
        }
        //说明读取正常,后面的method不校验了,直接clean。
        cumulation.clearAll();
        //2~255
        writeBuffer.put((byte) 5);
        writeBuffer.put((byte) 0);
        writeBuffer.flip();
        channelWrapped.channel().write(writeBuffer);
        writeBuffer.clear();
        //更换附件
        ConnectionHandler connectionHandler = new ConnectionHandler(channelWrapped);
        channelWrapped.key().attach(connectionHandler);
        LOGGER.info("鉴权成功 {}", uuid);
    }

客户端在发送ip地址和端口。
服务端回应。

 public void exec() throws IOException {
        ByteBuffer writeBuffer = ByteBuffer.allocate(4096 * 5);
        CompositeByteBuf cumulation = channelWrapped.cumulation();
        String uuid = channelWrapped.uuid();
        int len = cumulation.remaining();
        //协议最少5位
        if (len < 5) {
            LOGGER.warn("数据包不完整 {}", uuid);
            return;
        }
        cumulation.mark();
        byte VER = cumulation.get();
        if (0x05 > VER) {
            closeChildChannel();
            LOGGER.warn("版本号错误或版本过低,只能支持5 {}", uuid);
            return;
        }
        byte CMD = cumulation.get();
        if (0x01 != CMD) {
            closeChildChannel();
            LOGGER.warn("协议格式不对 {}", uuid);
            return;
        }
        byte RSV = cumulation.get();
        byte ATYP = cumulation.get();
        String host = null;
        Integer port = 0;
        SocketChannel channel = channelWrapped.channel();
        if (0x01 == ATYP) {//IPV4
            if (cumulation.remaining() + 1 < 6) {
                cumulation.reset();
                LOGGER.warn("数据包不完整 {}", uuid);
                return;
            }
            host = Utils.byteToIntV2(cumulation.get()) + "." + Utils.byteToIntV2(cumulation.get()) + "." + Utils.byteToIntV2(cumulation.get()) + "." + Utils.byteToIntV2(cumulation.get());
            port = (Utils.byteToIntV2(cumulation.get()) << 8) + Utils.byteToIntV2(cumulation.get());
            LOGGER.info("IPV4 host:{}  port:{}  remoteAddress:{} {}", host, port, channel.getRemoteAddress(), uuid);
        } else if (0x03 == ATYP) {//域名
            byte hostnameSize = cumulation.get();
            if (cumulation.remaining() < hostnameSize) {
                cumulation.reset();
                LOGGER.warn("数据包不完整 {}", uuid);
                return;
            }
            byte[] b = new byte[hostnameSize];
            for (int i = 0; i < hostnameSize; i++) {
                b[i] = cumulation.get();
            }
            host = new String(b, "utf-8");
            //按照大端
            port = Utils.byteToIntV2(cumulation.get()) * 256 + Utils.byteToIntV2(cumulation.get());
            LOGGER.info("IPV4 host:{}  port:{}  remoteAddress:{} {}", host, port, channel.getRemoteAddress(), uuid);
        } else if (0x04 == ATYP) {//IPV6
            LOGGER.warn("不支持IPV6访问 {}", uuid);
            closeChildChannel();
            return;
        } else {
            LOGGER.warn("不知道的访问方式 {}", uuid);
            closeChildChannel();
            return;
        }
        //说明正常读取结束,切换为写模式。
        cumulation.clear();
        writeBuffer.put((byte) 5);
        writeBuffer.put((byte) 0);
        writeBuffer.put((byte) 0);
        //这里写死,后面紧接着6位hose和port
        writeBuffer.put((byte) 1);
        //put host
        writeBuffer.put(new byte[]{0, 0, 0, 0});
        //put port
        writeBuffer.put(new byte[]{0, 0});
        writeBuffer.flip();
        channel.write(writeBuffer);
        writeBuffer.clear();
        //建立异步连接
        Resource resource = new RemoteConnect(host, port, uuid, channel,this).connect();
        if (Objects.nonNull(resource)) {
            //更换附件
            DeliverHandler deliverHandler = new DeliverHandler(channelWrapped, resource);
            channelWrapped.key().attach(deliverHandler);
        } else {
            closeChildChannel();
        }
    }

客户端发送代理的协议数据。
服务端访问代理的ip和端口并将代理协议数据转发给客户端。

public class DeliverHandler extends AbstractHandler {
    Resource resource;

    public DeliverHandler(ChannelWrapped channelWrapped, Resource resource) {
        super(channelWrapped);
        this.resource = resource;
    }

    public void exec() throws IOException {
        CompositeByteBuf cumulation = channelWrapped.cumulation();
        String uuid = channelWrapped.uuid();
        //判断当前channel是否已经关闭了
        if (!channelWrapped.channel().isOpen()) {
            LOGGER.warn("channel 已经关闭 {}", uuid);
            return;
        }
        //获取服务端数据
        cumulation.write(resource.remoteChannel());
        //清除读取的数据
        cumulation.clear();
        LOGGER.info("child -> remote  end {}", uuid);
    }

    public void after() {
        String uuid = channelWrapped.uuid();
        if (Objects.isNull(resource)) {
            // 走到这里说明连接远端地址失败,因为他会关闭流,所以跳过即可。
            LOGGER.warn("exception child  close {}", uuid);
            return;
        }
        try {
            resource.closeRemote();
        } catch (IOException e) {
            LOGGER.error("child  close " + uuid, e);
        }
    }

}
  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
可以使用Java Socket类来实现一个简单的Socks5代理。以下是一个示例代码: ``` import java.io.IOException; import java.io.InputStream; import java.io.OutputStream; import java.net.ServerSocket; import java.net.Socket; public class Socks5Proxy { public static void main(String[] args) throws IOException { ServerSocket serverSocket = new ServerSocket(1080); System.out.println("Socks5 proxy started on port 1080"); while (true) { Socket clientSocket = serverSocket.accept(); System.out.println("Accepted connection from " + clientSocket.getInetAddress()); new Thread(() -> { try { InputStream clientIn = clientSocket.getInputStream(); OutputStream clientOut = clientSocket.getOutputStream(); // Read the Socks5 handshake request byte[] buf = new byte[1024]; int len = clientIn.read(buf); if (buf[0] != 0x05) { throw new IOException("Invalid Socks5 handshake request"); } // Send the Socks5 handshake response clientOut.write(new byte[] { 0x05, 0x00 }); // Read the Socks5 request len = clientIn.read(buf); if (buf[0] != 0x05 || buf[1] != 0x01 || buf[2] != 0x00) { throw new IOException("Invalid Socks5 request"); } // Parse the Socks5 request int port = ((buf[len - 2] & 0xff) << 8) | (buf[len - 1] & 0xff); String host = null; switch (buf[3]) { case 0x01: host = String.format("%d.%d.%d.%d", buf[4], buf[5], buf[6], buf[7]); break; case 0x03: int hostLen = buf[4]; host = new String(buf, 5, hostLen); break; case 0x04: host = String.format("[%02x%02x:%02x%02x:%02x%02x:%02x%02x:%02x%02x:%02x%02x:%02x%02x:%02x%02x]", buf[4], buf[5], buf[6], buf[7], buf[8], buf[9], buf[10], buf[11], buf[12], buf[13], buf[14], buf[15], buf[16], buf[17], buf[18], buf[19]); break; default: throw new IOException("Invalid Socks5 request"); } System.out.println("Connecting to " + host + ":" + port); // Connect to the destination server Socket serverSocket = new Socket(host, port); InputStream serverIn = serverSocket.getInputStream(); OutputStream serverOut = serverSocket.getOutputStream(); // Send the Socks5 response byte[] response = new byte[len]; System.arraycopy(buf, 0, response, 0, len); response[1] = 0x00; clientOut.write(response); // Start forwarding data between client and server new Thread(() -> { try { byte[] buf2 = new byte[1024]; int len2; while ((len2 = serverIn.read(buf2)) != -1) { clientOut.write(buf2, 0, len2); } } catch (IOException e) { e.printStackTrace(); } }).start(); byte[] buf3 = new byte[1024]; int len3; while ((len3 = clientIn.read(buf3)) != -1) { serverOut.write(buf3, 0, len3); } } catch (IOException e) { e.printStackTrace(); } }).start(); } } } ``` 这个代理服务器监听1080端口,当有客户端连接时,它会读取Socks5握手请求,然后发送Socks5握手响应。接下来,它会读取Socks5请求,解析出目标主机和端口,然后连接到目标服务器。一旦连接建立,它会发送Socks5响应,然后开始转发数据。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值