Skip to content

Commit

Permalink
pachage包中含文章分析地址
Browse files Browse the repository at this point in the history
  • Loading branch information
SummerSec committed Jun 9, 2020
1 parent 8b7c739 commit 1efee27
Show file tree
Hide file tree
Showing 12 changed files with 39 additions and 10 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Java漏洞学习代码及笔记

- [x] 漏洞代码完善中
- [x] 漏洞使用和分析笔记准备中
- [x] 每一个源码分析都有在注释中给出地址
- [x] 目前文章分析地址在每一个包下package-info.java

目前所有文章分析都在博客 https://samny.blog.csdn.net/ 后期会转到项目下,所有的分析文章写完之后统一转入。

Expand Down
11 changes: 10 additions & 1 deletion javatest/.idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion javatest/src/summer/cc3bug/package-info.java
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
package summer.cc3bug;
// 主要学习org.apache.commons.collections3.2.1 也就是cc3链
// 主要学习org.apache.commons.collections3.2.1 也就是cc3链
//https://samny.gitee.io/2020/05/26/%E6%BC%AB%E8%B0%88Commons-Collections%E5%8F%8D%E5%BA%8F%E5%88%97%E5%8C%96/
2 changes: 1 addition & 1 deletion javatest/src/summer/cc3bug/readObject.java
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* @Author: Summer
* @Date: 2020/5/18 10:07
* @Version: v1.0.0
* @Description:
* @Description: 读取反序列化文件
**/
public class readObject {
public static void main(String[] args) {
Expand Down
1 change: 1 addition & 0 deletions javatest/src/summer/cc3bug/server.java
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
* @Date: 2020/4/23 16:18
* @Version: v1.0.0
* @Description: 服务器端
* https://samny.gitee.io/2020/05/26/%E6%BC%AB%E8%B0%88Commons-Collections%E5%8F%8D%E5%BA%8F%E5%88%97%E5%8C%96/
**/
public class server {
public static void main(String[] args) {
Expand Down
1 change: 1 addition & 0 deletions javatest/src/summer/cc3bug/user.java
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
* @Date: 2020/4/23 16:27
* @Version: v1.0.0
* @Description: 模拟黑客攻击
* https://samny.gitee.io/2020/05/26/%E6%BC%AB%E8%B0%88Commons-Collections%E5%8F%8D%E5%BA%8F%E5%88%97%E5%8C%96/
**/
public class user {
public static void main(String[] args) throws Exception {
Expand Down
3 changes: 2 additions & 1 deletion javatest/src/summer/classload/package-info.java
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
package summer.classload;
// 类加载学习
// 类加载学习
//https://samny.gitee.io/2020/06/01/Java%E5%8F%8D%E5%BA%8F%E5%88%97%E5%8C%96%E5%9B%9E%E6%98%BE%E8%A7%A3%E5%86%B3%E6%96%B9%E6%A1%88/
3 changes: 2 additions & 1 deletion javatest/src/summer/echodisplay/package-info.java
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
package summer.echodisplay;
// Java反序列化漏洞回显研究
// Java反序列化漏洞回显研究
//https://samny.gitee.io/2020/06/01/Java%E5%8F%8D%E5%BA%8F%E5%88%97%E5%8C%96%E5%9B%9E%E6%98%BE%E8%A7%A3%E5%86%B3%E6%96%B9%E6%A1%88/
5 changes: 3 additions & 2 deletions javatest/src/summer/reflection/package-info.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
// 反射基础知识
// reflectdemo1是开发人员通常情况下使用反射方法
// reflectdemo2是安全人员经常使用的反射执行命令方法


//https://samny.gitee.io/2020/05/13/%E4%BB%8E%E5%AE%89%E5%85%A8%E8%A7%92%E5%BA%A6%E8%B0%88Java%E5%8F%8D%E5%B0%84%E6%9C%BA%E5%88%B6--%E7%BB%88%E7%AB%A0/
//https://samny.gitee.io/2020/05/12/%E4%BB%8E%E5%AE%89%E5%85%A8%E8%A7%92%E5%BA%A6%E8%B0%88Java%E5%8F%8D%E5%B0%84%E6%9C%BA%E5%88%B6--%E5%89%8D%E7%AB%A0/
//https://samny.gitee.io/2020/05/12/%E4%BB%8E%E5%AE%89%E5%85%A8%E8%A7%92%E5%BA%A6%E8%B0%88Java%E5%8F%8D%E5%B0%84%E6%9C%BA%E5%88%B6--%E5%BA%8F%E7%AB%A0/
package summer.reflection;
3 changes: 3 additions & 0 deletions javatest/src/summer/serializable/package-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,8 @@
* @Version: 1.0.0
* @Description: 基础序列化和反序列化知识示例
*/
//https://samny.gitee.io/2020/05/13/%E4%BB%8E%E5%AE%89%E5%85%A8%E8%A7%92%E5%BA%A6%E8%B0%88Java%E5%8F%8D%E5%B0%84%E6%9C%BA%E5%88%B6--%E7%BB%88%E7%AB%A0/
//https://samny.gitee.io/2020/05/12/%E4%BB%8E%E5%AE%89%E5%85%A8%E8%A7%92%E5%BA%A6%E8%B0%88Java%E5%8F%8D%E5%B0%84%E6%9C%BA%E5%88%B6--%E5%89%8D%E7%AB%A0/
//https://samny.gitee.io/2020/05/12/%E4%BB%8E%E5%AE%89%E5%85%A8%E8%A7%92%E5%BA%A6%E8%B0%88Java%E5%8F%8D%E5%B0%84%E6%9C%BA%E5%88%B6--%E5%BA%8F%E7%AB%A0/

package summer.serializable;
12 changes: 11 additions & 1 deletion vuldemo/.idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion vuldemo/src/main/java/vul/ccbug/package-info.java
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
package vul.ccbug;
package vul.ccbug;
//https://samny.gitee.io/2020/05/26/%E6%BC%AB%E8%B0%88Commons-Collections%E5%8F%8D%E5%BA%8F%E5%88%97%E5%8C%96/

0 comments on commit 1efee27

Please sign in to comment.