public interface Handler { public void handle(); }
public class Proxy { public static final int DEFAULT_PORT = 1080; public static final int DEFAULT_VERSION = 0x05; private Socket socket; private ThreadPoolExecutor ioexecutor; private int version; private int method; public Proxy(String host) throws IOException { this(host, DEFAULT_PORT); } public Proxy(String host, int port) throws IOException { this.socket = new Socket(host, port); this.ioexecutor = new ThreadPoolExecutor(8, 50, 60L, TimeUnit.SECONDS, new SynchronousQueue<Runnable>()); this.version = DEFAULT_VERSION; } private void initConfig(Properties conf) { String ver = conf.getProperty("ver"); if (ver != null) { version = Integer.parseInt(ver); } } public void init(Properties conf) throws IOException { initConfig(conf); Nego nego = new Nego(this); String methods = conf.getProperty("methods"); if (methods != null) { String[] ss = methods.split(" "); for (String s : ss) { nego.setMethod(Integer.parseInt(s)); } } nego.setHandler(new NegotiationReplyHandler(this)); ioexecutor.execute(nego); } public int version() { return version; } public OutputStream getOutputStream() throws IOException { return socket.getOutputStream(); } public InputStream getInputStream() throws IOException { return socket.getInputStream(); } public void setMethod(int method) { this.method = method; } public int getMethod() { return method; } /** * negotiation reply message handler */ private static class NegotiationReplyHandler implements Handler { private Proxy proxy; public NegotiationReplyHandler(Proxy proxy) { this.proxy = proxy; } @Override public void handle() { try { InputStream is = proxy.getInputStream(); ByteArrayOutputStream rs = new ByteArrayOutputStream(); byte[] bytes = new byte[128]; int nbyte = -1; while ((nbyte = is.read(bytes)) != -1) { rs.write(bytes, 0, nbyte); if (rs.size() == 2) { break; } } bytes = rs.toByteArray(); ByteArrayInputStream bis = new ByteArrayInputStream(bytes); bis.read(); int method = bis.read(); System.out.println("method selected: " + method); proxy.setMethod(method); } catch (IOException e) { e.printStackTrace(); } } } }
public class Nego extends Thread { private Proxy proxy; private Set<Integer> methods; private Handler handler; public Nego(Proxy proxy) { this.proxy = proxy; this.methods = new HashSet<Integer>(); } public void setMethods(Set<Integer> newmethods) { methods.addAll(newmethods); } public void setMethod(int method) { methods.add(method); } public void setHandler(Handler handler) { this.handler = handler; } private void write(ByteArrayOutputStream buffer) throws IOException { OutputStream os = proxy.getOutputStream(); os.write(buffer.toByteArray()); os.flush(); } public void run() { if (handler == null) { throw new NullPointerException("handler is null"); } ByteArrayOutputStream bos = new ByteArrayOutputStream(); bos.write((proxy.version() << 24) >> 24); if (methods.isEmpty()) { methods.add(0x00); } bos.write((methods.size() << 24) >> 24); for (Integer method : methods) { bos.write((method << 24) >> 24); } try { write(bos); } catch (IOException e) { e.printStackTrace(); } handler.handle(); } }
// private static String host = "198.41.0.4"; private static String host = "localhost"; private static int port = 1080; private static Proxy proxy; @BeforeClass public static void initialize() throws IOException { proxy = new Proxy(host, port); Properties conf = new Properties(); // conf.setProperty("methods", "0 1 2 3 255"); proxy.init(conf); } @Test public void test() throws IOException, InterruptedException { Thread.sleep(10000); }
相关推荐
【标题】:“随便写的代码,大家随便看看” 在这个标题中,虽然没有明确指出具体的技术细节,但是我们可以推测这可能是一个代码分享...读者可以通过研究这段代码,学习如何在实际项目中应用OpenCV来解决类似的问题。
随便试试的一段遗传算法代码_Ga-learning
扫雷最简单的做法,大家来看看 内有代码。 扫雷游戏
闲来无事,上来看看,每次来都有点愧疚的感觉,老是索取代码提问,今天把我写的一个网络录音的程序放上来,本来是监视我女友用来的,我就随便写了写,录音部分是参照vckbase的录音api代码,结合了一小段socket(TCP)就可以...
1. **代码注入原理**:代码注入的基本概念是将一段代码插入到另一个进程的地址空间中,使其在该进程中执行。这样,恶意代码可以利用被注入进程的权限执行,而不会留下明显的痕迹,因为它的运行是在其他程序的上下...
1.手机先建立一个wifi网络 ssid随便写一个就ok 选中设备到设备 在填写个ip地址,跟子网掩码跟笔记本一个网段就行了 2.vs写个Server段程序,服务端负责接受客户端传过来的文件名,跟文件数据 接收文件名的代码如下 ...
根据压缩包子文件的文件名称“画面にカーの位置を表示するモジュール”,可以推测这是一段与显示汽车位置相关的代码模块,可能是用日语命名的。这个模块可能用于游戏开发,模拟车辆移动,或者是教学示例。它可能包含...
因为硬盘上有几个版本,懒得去看到底哪一个是图形识别版本或者内存扫描版本了,随便上传了一个,除了识别部分,其他差别不大,内存扫描版本也会遗留有图形识别的代码。有兴趣的可以研究其中的图形模糊识别定位以及...
然后,想想这样一个问题-----如何在已存在的文件中特定的位置上不定期地插入一段代码?(如:在典型的SSH框架的xml配置文件中,陆陆续续的添加Action,Domain,Service) 第一种方法: 解析这个文件,定位到插入位置,插入...
### 描述:“文学研究助手 用的是c语言 kmp算法 文本自己随便弄一个就行,命名为1.txt.放在相应的文件夹中” 描述提供了更多的细节: - **使用的编程语言是C语言**:C语言是一种结构化编程语言,因其高效性被广泛...
描述提到“大一c++作业,随便做的”,这表明这是一个大学一年级学生的C++课程作业,可能包含了一些基础的编程练习。 在IT领域,C++是一种强大的、通用的、面向对象的编程语言,广泛应用于系统软件、应用软件、游戏...
没错就是万恶的8086汇编. 介绍不知道怎么写,随便贴一段代码吧.懂得人也大概知道这是大概什么样的了
【描述】提到这个代码是“比较老的”,意味着它可能有一段时间没有更新或维护了。实习生编写的代码往往缺乏经验丰富的开发者所具有的规范性和可维护性,可能包含一些不常见的编程习惯或者不完善的错误处理。描述中的...
~~~ASP图片随便移动ASP图片随便移动ASP图片随便移动ASP图片随便移动” 这段描述虽然主要表达了一种兴奋和乐趣的情绪,但重复的“ASP图片随便移动”进一步强调了这个功能或应用的核心。这里的“好玩的宝物”可能意味...
- **定时截图**:结合`System.Timers.Timer`类可以实现每隔一段时间自动截图的需求。 - **自定义文件名**:可以通过用户输入等方式来自定义截图文件的名称,提高程序的灵活性。 通过以上分析,我们不仅了解了C#中...
这时候后如果我们在软件的注册失败的那段代码前面加一个跳转,说得容易理解一点就是:跳过软件注册码验证失败后应该运行的分支,而将它转到注册成功的那个分支上。那么这时候不管你输入的注册码是对是错,都会提示...
前言 快捷方式是一种特殊的文件,扩展名为 lnk。...这是最方便的方式了,因为这段代码随便放到一段代码中就能运行: /// /// 为当前正在运行的程序创建一个快捷方式。 /// /// 快捷方式的完全限定路径
从给定的文件信息来看,这是一段C语言编写的图书管理系统代码,主要涉及了图书信息的管理,包括图书的添加、查询、修改等操作。下面将详细解析这段代码的关键知识点。 ### C语言图书管理系统概览 #### 1. 数据结构...
第二,也就是代码的内容,这个全世界的影视作品都差不多,随便找一段代码粘上。战狼也不例外,东拼西凑了一些C语言代码。 只是战狼这个实在是太简单了,小编都能看懂,是粘贴的《C语言入门100例》中的一例,内容是...
例如,可以设置一个动画,使落叶在一段时间内逐渐下落,同时可能伴有微小的水平移动,以增加真实感。 此外,我们还需要处理落叶触底的情况。当落叶到达页面底部时,可以将其移除或重新定位到页面顶部,以实现无尽的...