Skip to content

Commit 1efee27

Browse files
committed
pachage包中含文章分析地址
1 parent 8b7c739 commit 1efee27

File tree

12 files changed

+39
-10
lines changed

12 files changed

+39
-10
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Java漏洞学习代码及笔记
55

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

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

javatest/.idea/workspace.xml

+10-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
package summer.cc3bug;
2-
// 主要学习org.apache.commons.collections3.2.1 也就是cc3链
2+
// 主要学习org.apache.commons.collections3.2.1 也就是cc3链
3+
//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/

javatest/src/summer/cc3bug/readObject.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* @Author: Summer
99
* @Date: 2020/5/18 10:07
1010
* @Version: v1.0.0
11-
* @Description:
11+
* @Description: 读取反序列化文件
1212
**/
1313
public class readObject {
1414
public static void main(String[] args) {

javatest/src/summer/cc3bug/server.java

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
* @Date: 2020/4/23 16:18
1313
* @Version: v1.0.0
1414
* @Description: 服务器端
15+
* 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/
1516
**/
1617
public class server {
1718
public static void main(String[] args) {

javatest/src/summer/cc3bug/user.java

+1
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
* @Date: 2020/4/23 16:27
2828
* @Version: v1.0.0
2929
* @Description: 模拟黑客攻击
30+
* 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/
3031
**/
3132
public class user {
3233
public static void main(String[] args) throws Exception {
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
package summer.classload;
2-
// 类加载学习
2+
// 类加载学习
3+
//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/
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
package summer.echodisplay;
2-
// Java反序列化漏洞回显研究
2+
// Java反序列化漏洞回显研究
3+
//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/
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
// 反射基础知识
22
// reflectdemo1是开发人员通常情况下使用反射方法
33
// reflectdemo2是安全人员经常使用的反射执行命令方法
4-
5-
4+
//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/
5+
//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/
6+
//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/
67
package summer.reflection;

javatest/src/summer/serializable/package-info.java

+3
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,8 @@
44
* @Version: 1.0.0
55
* @Description: 基础序列化和反序列化知识示例
66
*/
7+
//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/
8+
//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/
9+
//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/
710

811
package summer.serializable;

vuldemo/.idea/workspace.xml

+11-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
package vul.ccbug;
1+
package vul.ccbug;
2+
//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 commit comments

Comments
 (0)