8 4 4 3 3 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 Java 中的文章

IProxy代理服务器

项目地址 Github Gitee 简介 IProxy 是一个 JAVA 编写的 HTTP 代理服务器类库,支持 HTTP、HTTPS、Websocket 协议,并且支持 MITM(中间人攻击),可以对 HTTP、HTTPS 协议的报文进行捕获和篡改。 使用 1 2 3 4 5 <dependency> <groupId>com.rplees</groupId> <artifactId>iproxy</artifactId> <version>1.1.3</version> </dependency> 示例 普通 HTTP 代理服务器 1 new ServerStarter().start(1113); 中间人 HTTP 代理服务器 以下是一个中间人攻击演示,在……

阅读全文

Java工程师面试题

#Java工程师面试题 1、下面哪些是Thread类的方法( ) A、start() B、 run() C、exit() D、 getPriority() 2、下列说法正确的有( ) A. class中的constructor不可省略 B. constructor必须与class同名,但方法不能与class同名 C. constructor在……

阅读全文

Java工程师面试题-有答案

#Java工程师面试题-有答案 1、下面哪些是Thread类的方法( ABD ) A、start() B、 run() C、exit() D、 getPriority() 2、下列说法正确的有( C ) A. class中的constructor不可省略 B. constructor必须与class同名,但方法不能与class同名 C. constr……

阅读全文