Skip to content

Commit

Permalink
修复端口扫描和指纹扫描阻塞无法扫描漏洞的bug
Browse files Browse the repository at this point in the history
  • Loading branch information
iSafeBlue committed Jun 19, 2019
1 parent dc89430 commit ede64c4
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions module/src/main/java/com/trackray/module/inner/SimpleVulRule.java
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,16 @@ public boolean fun(HttpResponse response) throws Exception {
).build()
);

loaders.add(Payloader.builder()
.url("/mailsms/s?func=ADMIN:appState&dumpConfig=/")
.containsStr("/home/coremail")
.vuln(Vulnerable.builder()
.title("Coremail 信息泄露漏洞")
.level(Vulnerable.Level.HIGH.getLevel())
.type(Vulnerable.Type.INFO_LEAKAGE.getType())
.build())
.build());

loaders.add(
Payloader.builder().url("/WebResource.axd?d=AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA1")
.containsStr("Microsoft .NET Framework")
Expand Down

0 comments on commit ede64c4

Please sign in to comment.