Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add:version 1.2.68 and two unknow hash #7

Merged
merged 1 commit into from
May 15, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,8 @@ public class Main {
| 1.2.62 | 6734240326434096246 | 0x5d74d3e5b9370476L | com.mysql.cj.jdbc.MysqlXADataSource |
| 1.2.62 | 7123326897294507060 | 0x62db241274397c34L | org.apache.commons.collections.functors. |
| 1.2.62 | 8488266005336625107 | 0x75cc60f5871d0fd3L | org.apache.commons.configuration |
| 1.2.62 | 4841947709850912914 | 0x43320dc9d2ae0892L | org.codehaus.jackson. |
| 1.2.68 | -3077205613010077203L | 0xd54b91cc77b239edL | org.apache.shiro.jndi. |

### 目前未知的列表

Expand All @@ -157,7 +159,11 @@ public class Main {
| 1.2.62 | -5472097725414717105 | 0xb40f341c746ec94fL | |
| 1.2.62 | -4608341446948126581 | 0xc00be1debaf2808bL | |
| 1.2.62 | 3256258368248066264 | 0x2d308dbbc851b0d8L | |
| 1.2.62 | 4841947709850912914 | 0x43320dc9d2ae0892L | |
| 1.2.68 | -2825378362173150292L | 0xd8ca3d595e982bacL | |
| 1.2.68 | 9140390920032557669L | 0x7ed9311d28bf1a65L | |
| 1.2.68 | 9140416208800006522L | 0x7ed9481d28bf417aL | |
| 1.2.68 | -3053747177772160511L | 0xd59ee91f0b09ea01L | |



### 感谢补充
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/leadroyal/breaker/data/V1_2_62.java
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,12 @@ public static BlackInfo getData() {
add(new BlackInfo.BlockItem(6734240326434096246L, "com.mysql.cj.jdbc.MysqlXADataSource")); //0x5d74d3e5b9370476L
add(new BlackInfo.BlockItem(7123326897294507060L, "org.apache.commons.collections.functors.")); //0x62db241274397c34L
add(new BlackInfo.BlockItem(8488266005336625107L, "org.apache.commons.configuration")); //0x75cc60f5871d0fd3L
add(new BlackInfo.BlockItem(4841947709850912914L, "org.codehaus.jackson.")); //0x43320dc9d2ae0892L
}};
data.unknown = new LinkedList<BlackInfo.BlockItem>() {{
add(new BlackInfo.BlockItem(-5472097725414717105L, "")); //0xb40f341c746ec94fL
add(new BlackInfo.BlockItem(-4608341446948126581L, "")); //0xc00be1debaf2808bL
add(new BlackInfo.BlockItem(3256258368248066264L, "")); //0x2d308dbbc851b0d8L
add(new BlackInfo.BlockItem(4841947709850912914L, "")); //0x43320dc9d2ae0892L
}};
}
return data;
Expand Down
26 changes: 26 additions & 0 deletions src/main/java/com/leadroyal/breaker/data/V1_2_68.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
package com.leadroyal.breaker.data;

import com.leadroyal.breaker.BlackInfo;

import java.util.LinkedList;

public class V1_2_68 {
private static BlackInfo data;

public static BlackInfo getData() {
if (data == null) {
data = new BlackInfo();
data.version = 1268;
data.known = new LinkedList<BlackInfo.BlockItem>() {{
add(new BlackInfo.BlockItem(-3077205613010077203L,"org.apache.shiro.jndi.")); //0xd54b91cc77b239edL
}};
data.unknown = new LinkedList<BlackInfo.BlockItem>() {{
add(new BlackInfo.BlockItem(-2825378362173150292L, "")); //0xd8ca3d595e982bacL
add(new BlackInfo.BlockItem(9140390920032557669L, "")); //0x7ed9311d28bf1a65L
add(new BlackInfo.BlockItem(9140416208800006522L, "")); //0x7ed9481d28bf417aL
add(new BlackInfo.BlockItem(-3053747177772160511L, "")); //0xd59ee91f0b09ea01L
}};
}
return data;
}
}
1 change: 1 addition & 0 deletions src/main/java/com/leadroyal/breaker/data/V1_2_all.java
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,6 @@ public class V1_2_all {
add(V1_2_60.getData());
add(V1_2_61.getData());
add(V1_2_62.getData());
add(V1_2_68.getData());
}};
}