Skip to content

Commit

Permalink
实现插件的44种匹配识别结果算法
Browse files Browse the repository at this point in the history
  • Loading branch information
c0ny1 committed Oct 13, 2019
1 parent 338a9dd commit de5075e
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 2 deletions.
12 changes: 10 additions & 2 deletions pom.xml
Expand Up @@ -15,6 +15,14 @@
<artifactId>burp-extender-api</artifactId>
<version>1.7.22</version>
</dependency>

<!-- https://mvnrepository.com/artifact/com.alibaba/fastjson -->
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
<version>1.2.62</version>
</dependency>

</dependencies>

<build>
Expand All @@ -41,8 +49,8 @@
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<source>1.7</source>
<target>1.7</target>
<encoding>utf-8</encoding>
</configuration>
</plugin>
Expand Down
4 changes: 4 additions & 0 deletions src/main/java/entity/Rule.java
@@ -0,0 +1,4 @@
package entity;

public class Rule {
}
4 changes: 4 additions & 0 deletions src/main/java/utils/RuleMannager.java
@@ -0,0 +1,4 @@
package utils;

public class Macther {
}

0 comments on commit de5075e

Please sign in to comment.