Skip to content

Instantly share code, notes, and snippets.

View amoxu's full-sized avatar

Amo Xu amoxu

  • Tedia
  • Suzhou, China
View GitHub Profile
@movii
movii / text.txt
Created October 24, 2017 06:26
三大运营商SSR混淆参数
# source: http://doubledou.buzz/82.html
收集自网络
说明:
1.理论上138端口免流大部分移动,137和139移动大部分地区也能免流;
2,8080端口理论上三网全免,但是需要配合混淆参数使用;
3,混淆参数如下(填写到混淆插件参数里面):
联通混淆参数有五种:
@s4553711
s4553711 / DiscardServer.java
Created June 19, 2016 16:41
A netty server example
package com.ck.server;
import io.netty.bootstrap.ServerBootstrap;
import io.netty.channel.ChannelFuture;
import io.netty.channel.ChannelInitializer;
import io.netty.channel.ChannelOption;
import io.netty.channel.EventLoopGroup;
import io.netty.channel.FixedRecvByteBufAllocator;
import io.netty.channel.nio.NioEventLoopGroup;
import io.netty.channel.socket.SocketChannel;