Compare commits
18 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
15f84028bb | ||
|
|
1238e536d1 | ||
|
|
5d23a68c0e | ||
|
|
d7f04526b4 | ||
|
|
acff96ed7b | ||
|
|
350c093162 | ||
|
|
0d3d4f88e9 | ||
|
|
37ca315aba | ||
|
|
241247a4a0 | ||
|
|
08bfb69fce | ||
|
|
a6d5f3a204 | ||
|
|
c4d8743fe3 | ||
|
|
903077c830 | ||
|
|
daddf15af2 | ||
|
|
e747011ec0 | ||
|
|
f7b2e99eb2 | ||
|
|
59cd0a88b9 | ||
|
|
b16cbf5b60 |
136
.gitignore
vendored
136
.gitignore
vendored
@@ -1,3 +1,137 @@
|
|||||||
|
# User-specific stuff
|
||||||
|
.idea/**/workspace.xml
|
||||||
|
.idea/**/tasks.xml
|
||||||
|
.idea/**/usage.statistics.xml
|
||||||
|
.idea/**/dictionaries
|
||||||
|
.idea/**/shelf
|
||||||
|
|
||||||
|
# AWS User-specific
|
||||||
|
.idea/**/aws.xml
|
||||||
|
|
||||||
|
# Generated files
|
||||||
|
.idea/**/contentModel.xml
|
||||||
|
|
||||||
|
# Sensitive or high-churn files
|
||||||
|
.idea/**/dataSources/
|
||||||
|
.idea/**/dataSources.ids
|
||||||
|
.idea/**/dataSources.local.xml
|
||||||
|
.idea/**/sqlDataSources.xml
|
||||||
|
.idea/**/dynamic.xml
|
||||||
|
.idea/**/uiDesigner.xml
|
||||||
|
.idea/**/dbnavigator.xml
|
||||||
|
|
||||||
|
# Gradle
|
||||||
|
.idea/**/gradle.xml
|
||||||
|
.idea/**/libraries
|
||||||
|
|
||||||
|
# Gradle and Maven with auto-import
|
||||||
|
# When using Gradle or Maven with auto-import, you should exclude module files,
|
||||||
|
# since they will be recreated, and may cause churn. Uncomment if using
|
||||||
|
# auto-import.
|
||||||
|
# .idea/artifacts
|
||||||
|
# .idea/compiler.xml
|
||||||
|
# .idea/jarRepositories.xml
|
||||||
|
# .idea/modules.xml
|
||||||
|
# .idea/*.iml
|
||||||
|
# .idea/modules
|
||||||
|
# *.iml
|
||||||
|
# *.ipr
|
||||||
|
|
||||||
|
# CMake
|
||||||
|
cmake-build-*/
|
||||||
|
|
||||||
|
# Mongo Explorer plugin
|
||||||
|
.idea/**/mongoSettings.xml
|
||||||
|
|
||||||
|
# File-based project format
|
||||||
|
*.iws
|
||||||
|
|
||||||
|
# IntelliJ
|
||||||
|
out/
|
||||||
|
|
||||||
|
# mpeltonen/sbt-idea plugin
|
||||||
|
.idea_modules/
|
||||||
|
|
||||||
|
# JIRA plugin
|
||||||
|
atlassian-ide-plugin.xml
|
||||||
|
|
||||||
|
# Cursive Clojure plugin
|
||||||
|
.idea/replstate.xml
|
||||||
|
|
||||||
|
# SonarLint plugin
|
||||||
|
.idea/sonarlint/
|
||||||
|
|
||||||
|
# Crashlytics plugin (for Android Studio and IntelliJ)
|
||||||
|
com_crashlytics_export_strings.xml
|
||||||
|
crashlytics.properties
|
||||||
|
crashlytics-build.properties
|
||||||
|
fabric.properties
|
||||||
|
|
||||||
|
# Editor-based Rest Client
|
||||||
|
.idea/httpRequests
|
||||||
|
|
||||||
|
# Android studio 3.1+ serialized cache file
|
||||||
|
.idea/caches/build_file_checksums.ser
|
||||||
|
|
||||||
|
### JetBrains+all Patch ###
|
||||||
|
# Ignore everything but code style settings and run configurations
|
||||||
|
# that are supposed to be shared within teams.
|
||||||
|
|
||||||
|
.idea/*
|
||||||
|
|
||||||
|
!.idea/codeStyles
|
||||||
|
!.idea/runConfigurations
|
||||||
|
|
||||||
|
### macOS ###
|
||||||
|
# General
|
||||||
.DS_Store
|
.DS_Store
|
||||||
.idea
|
.AppleDouble
|
||||||
|
.LSOverride
|
||||||
|
|
||||||
|
# Icon must end with two \r
|
||||||
|
Icon
|
||||||
|
|
||||||
|
|
||||||
|
# Thumbnails
|
||||||
|
._*
|
||||||
|
|
||||||
|
# Files that might appear in the root of a volume
|
||||||
|
.DocumentRevisions-V100
|
||||||
|
.fseventsd
|
||||||
|
.Spotlight-V100
|
||||||
|
.TemporaryItems
|
||||||
|
.Trashes
|
||||||
|
.VolumeIcon.icns
|
||||||
|
.com.apple.timemachine.donotpresent
|
||||||
|
|
||||||
|
# Directories potentially created on remote AFP share
|
||||||
|
.AppleDB
|
||||||
|
.AppleDesktop
|
||||||
|
Network Trash Folder
|
||||||
|
Temporary Items
|
||||||
|
.apdisk
|
||||||
|
|
||||||
|
### Gradle ###
|
||||||
.gradle
|
.gradle
|
||||||
|
**/build/
|
||||||
|
!src/**/build/
|
||||||
|
|
||||||
|
# Ignore Gradle GUI config
|
||||||
|
gradle-app.setting
|
||||||
|
|
||||||
|
# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
|
||||||
|
!gradle-wrapper.jar
|
||||||
|
|
||||||
|
# Avoid ignore Gradle wrappper properties
|
||||||
|
!gradle-wrapper.properties
|
||||||
|
|
||||||
|
# Cache of project
|
||||||
|
.gradletasknamecache
|
||||||
|
|
||||||
|
# Eclipse Gradle plugin generated files
|
||||||
|
# Eclipse Core
|
||||||
|
.project
|
||||||
|
# JDT-specific (Eclipse Java Development Tools)
|
||||||
|
.classpath
|
||||||
|
|
||||||
|
# End of https://www.toptal.com/developers/gitignore/api/macos,gradle,jetbrains+all
|
||||||
10
README.md
10
README.md
@@ -4,9 +4,13 @@
|
|||||||
|
|
||||||
架构作者: [@0chencc](https://github.com/0Chencc)
|
架构作者: [@0chencc](https://github.com/0Chencc)
|
||||||
|
|
||||||
## 公共规则网站
|
## 公共规则 & 打赏
|
||||||
|
|
||||||
https://gh0st.cn/HaE/
|
公共规则下载地址:https://gh0st.cn/HaE/
|
||||||
|
|
||||||
|
如果你觉得HaE好用,可以打赏一下作者,给作者持续更新下去的动力!
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
## 介绍
|
## 介绍
|
||||||
|
|
||||||
@@ -48,7 +52,7 @@ https://gh0st.cn/HaE/
|
|||||||
|
|
||||||
访问该地址,在`Proxy - HTTP History`中可以看见高亮请求,响应标签页中含有`MarkINFO`标签,其中将匹配到的信息提取了出来。
|
访问该地址,在`Proxy - HTTP History`中可以看见高亮请求,响应标签页中含有`MarkINFO`标签,其中将匹配到的信息提取了出来。
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
|
|
||||||
## 正则优化
|
## 正则优化
|
||||||
|
|||||||
Binary file not shown.
|
Before Width: | Height: | Size: 297 KiB |
BIN
images/16000720732854.png
Normal file
BIN
images/16000720732854.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 167 KiB |
BIN
images/reward.jpeg
Normal file
BIN
images/reward.jpeg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 132 KiB |
@@ -3,15 +3,18 @@ package burp;
|
|||||||
import burp.action.*;
|
import burp.action.*;
|
||||||
import burp.ui.MainUI;
|
import burp.ui.MainUI;
|
||||||
|
|
||||||
|
import java.util.Map;
|
||||||
import javax.swing.*;
|
import javax.swing.*;
|
||||||
import java.awt.*;
|
import java.awt.*;
|
||||||
import java.nio.charset.StandardCharsets;
|
import java.nio.charset.StandardCharsets;
|
||||||
import java.io.PrintWriter;
|
import java.io.PrintWriter;
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
import javax.swing.event.ChangeEvent;
|
||||||
|
import javax.swing.event.ChangeListener;
|
||||||
|
|
||||||
/*
|
/**
|
||||||
* @author EvilChen
|
* @author EvilChen & 0chencc
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public class BurpExtender implements IBurpExtender, IHttpListener, IMessageEditorTabFactory, ITab {
|
public class BurpExtender implements IBurpExtender, IHttpListener, IMessageEditorTabFactory, ITab {
|
||||||
@@ -29,12 +32,12 @@ public class BurpExtender implements IBurpExtender, IHttpListener, IMessageEdito
|
|||||||
this.callbacks = callbacks;
|
this.callbacks = callbacks;
|
||||||
BurpExtender.helpers = callbacks.getHelpers();
|
BurpExtender.helpers = callbacks.getHelpers();
|
||||||
|
|
||||||
String version = "2.1.1";
|
String version = "2.2.3";
|
||||||
callbacks.setExtensionName(String.format("HaE (%s) - Highlighter and Extractor", version));
|
callbacks.setExtensionName(String.format("HaE (%s) - Highlighter and Extractor", version));
|
||||||
// 定义输出
|
// 定义输出
|
||||||
stdout = new PrintWriter(callbacks.getStdout(), true);
|
stdout = new PrintWriter(callbacks.getStdout(), true);
|
||||||
stdout.println("@Core Author: EvilChen");
|
stdout.println("@Core Author: EvilChen");
|
||||||
stdout.println("@UI Author: 0chencc");
|
stdout.println("@Architecture Author: 0chencc");
|
||||||
stdout.println("@Github: https://github.com/gh0stkey/HaE");
|
stdout.println("@Github: https://github.com/gh0stkey/HaE");
|
||||||
// UI
|
// UI
|
||||||
SwingUtilities.invokeLater(this::initialize);
|
SwingUtilities.invokeLater(this::initialize);
|
||||||
@@ -42,10 +45,12 @@ public class BurpExtender implements IBurpExtender, IHttpListener, IMessageEdito
|
|||||||
callbacks.registerHttpListener(BurpExtender.this);
|
callbacks.registerHttpListener(BurpExtender.this);
|
||||||
callbacks.registerMessageEditorTabFactory(BurpExtender.this);
|
callbacks.registerMessageEditorTabFactory(BurpExtender.this);
|
||||||
}
|
}
|
||||||
|
|
||||||
private void initialize(){
|
private void initialize(){
|
||||||
callbacks.customizeUiComponent(main);
|
callbacks.customizeUiComponent(main);
|
||||||
callbacks.addSuiteTab(BurpExtender.this);
|
callbacks.addSuiteTab(BurpExtender.this);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String getTabCaption(){
|
public String getTabCaption(){
|
||||||
return "HaE";
|
return "HaE";
|
||||||
@@ -56,7 +61,7 @@ public class BurpExtender implements IBurpExtender, IHttpListener, IMessageEdito
|
|||||||
return main;
|
return main;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/**
|
||||||
* 使用processHttpMessage用来做Highlighter
|
* 使用processHttpMessage用来做Highlighter
|
||||||
*/
|
*/
|
||||||
@Override
|
@Override
|
||||||
@@ -69,8 +74,9 @@ public class BurpExtender implements IBurpExtender, IHttpListener, IMessageEdito
|
|||||||
} else {
|
} else {
|
||||||
content = messageInfo.getResponse();
|
content = messageInfo.getResponse();
|
||||||
}
|
}
|
||||||
|
|
||||||
String c = new String(content, StandardCharsets.UTF_8).intern();
|
String c = new String(content, StandardCharsets.UTF_8).intern();
|
||||||
List<String> result = pm.processMessageByContent(helpers, messageInfo.getHttpService(), content, messageIsRequest, true);
|
List<Map<String, String>> result = pm.processMessageByContent(helpers, content, messageIsRequest, true);
|
||||||
if (result != null && !result.isEmpty() && result.size() > 0) {
|
if (result != null && !result.isEmpty() && result.size() > 0) {
|
||||||
String originalColor = messageInfo.getHighlight();
|
String originalColor = messageInfo.getHighlight();
|
||||||
String originalComment = messageInfo.getComment();
|
String originalComment = messageInfo.getComment();
|
||||||
@@ -78,30 +84,27 @@ public class BurpExtender implements IBurpExtender, IHttpListener, IMessageEdito
|
|||||||
if (originalColor != null) {
|
if (originalColor != null) {
|
||||||
colorList.add(originalColor);
|
colorList.add(originalColor);
|
||||||
}
|
}
|
||||||
colorList.add(result.get(0));
|
colorList.add(result.get(0).get("color"));
|
||||||
String color = uc.getEndColor(gck.getColorKeys(colorList));
|
String color = uc.getEndColor(gck.getColorKeys(colorList));
|
||||||
|
|
||||||
messageInfo.setHighlight(color);
|
messageInfo.setHighlight(color);
|
||||||
String addComment = String.join(", ", result.get(1));
|
String addComment = String.join(", ", result.get(1).get("comment"));
|
||||||
String resComment = originalComment != null ? String.format("%s, %s", originalComment, addComment) : addComment;
|
String resComment = originalComment != null ? String.format("%s, %s", originalComment, addComment) : addComment;
|
||||||
|
|
||||||
messageInfo.setComment(resComment);
|
messageInfo.setComment(resComment);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
class MarkInfoTab implements IMessageEditorTab {
|
class MarkInfoTab implements IMessageEditorTab {
|
||||||
private final ITextEditor markInfoText;
|
private final JTabbedPane jTabbedPane = new JTabbedPane();
|
||||||
private byte[] currentMessage;
|
private JTable jTable = new JTable();
|
||||||
private final IMessageEditorController controller;
|
private final IMessageEditorController controller;
|
||||||
private byte[] extractRequestContent;
|
private Map<String, String> extractRequestMap;
|
||||||
private byte[] extractResponseContent;
|
private Map<String, String> extractResponseMap;
|
||||||
|
|
||||||
public MarkInfoTab(IMessageEditorController controller, boolean editable) {
|
public MarkInfoTab(IMessageEditorController controller, boolean editable) {
|
||||||
this.controller = controller;
|
this.controller = controller;
|
||||||
markInfoText = callbacks.createTextEditor();
|
|
||||||
markInfoText.setEditable(editable);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@@ -111,43 +114,58 @@ public class BurpExtender implements IBurpExtender, IHttpListener, IMessageEdito
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Component getUiComponent() {
|
public Component getUiComponent() {
|
||||||
return markInfoText.getComponent();
|
jTabbedPane.addChangeListener(new ChangeListener() {
|
||||||
|
@Override
|
||||||
|
public void stateChanged(ChangeEvent arg0) {
|
||||||
|
jTable = (JTable) ((JScrollPane)jTabbedPane.getSelectedComponent()).getViewport().getView();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
return this.jTabbedPane;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean isEnabled(byte[] content, boolean isRequest) {
|
public boolean isEnabled(byte[] content, boolean isRequest) {
|
||||||
String c = new String(content, StandardCharsets.UTF_8).intern();
|
String c = new String(content, StandardCharsets.UTF_8).intern();
|
||||||
List<String> result = pm.processMessageByContent(helpers, controller.getHttpService(), content, isRequest, false);
|
List<Map<String, String>> result = pm.processMessageByContent(helpers, content, isRequest, false);
|
||||||
|
|
||||||
if (result != null && !result.isEmpty()) {
|
if (result != null && !result.isEmpty()) {
|
||||||
|
Map<String, String> dataMap = result.get(0);
|
||||||
if (isRequest) {
|
if (isRequest) {
|
||||||
extractRequestContent = result.get(0).getBytes();
|
extractRequestMap = dataMap;
|
||||||
} else {
|
} else {
|
||||||
extractResponseContent = result.get(0).getBytes();
|
extractResponseMap = dataMap;
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public byte[] getMessage() {
|
public byte[] getMessage() {
|
||||||
return currentMessage;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean isModified() {
|
public boolean isModified() {
|
||||||
return markInfoText.isTextModified();
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 快捷键复制功能
|
||||||
|
*/
|
||||||
@Override
|
@Override
|
||||||
public byte[] getSelectedData() {
|
public byte[] getSelectedData() {
|
||||||
return markInfoText.getSelectedText();
|
int[] selectRows = jTable.getSelectedRows();
|
||||||
|
StringBuilder selectData = new StringBuilder();
|
||||||
|
for (int row : selectRows) {
|
||||||
|
selectData.append(jTable.getValueAt(row, 0).toString()).append("\n");
|
||||||
|
}
|
||||||
|
// 便于单行复制,去除最后一个换行符
|
||||||
|
String revData = selectData.reverse().toString().replaceFirst("\n", "");
|
||||||
|
StringBuilder retData = new StringBuilder(revData).reverse();
|
||||||
|
return helpers.stringToBytes(retData.toString());
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/**
|
||||||
* 使用setMessage用来做Extractor
|
* 使用setMessage用来做Extractor
|
||||||
*/
|
*/
|
||||||
@Override
|
@Override
|
||||||
@@ -155,15 +173,36 @@ public class BurpExtender implements IBurpExtender, IHttpListener, IMessageEdito
|
|||||||
String c = new String(content, StandardCharsets.UTF_8).intern();
|
String c = new String(content, StandardCharsets.UTF_8).intern();
|
||||||
if (content.length > 0) {
|
if (content.length > 0) {
|
||||||
if (isRequest) {
|
if (isRequest) {
|
||||||
markInfoText.setText(extractRequestContent);
|
makeTable(extractRequestMap);
|
||||||
} else {
|
} else {
|
||||||
markInfoText.setText(extractResponseContent);
|
makeTable(extractResponseMap);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
currentMessage = content;
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 创建MarkInfo表单
|
||||||
|
*/
|
||||||
|
public void makeTable(Map<String, String> dataMap) {
|
||||||
|
dataMap.keySet().forEach(i->{
|
||||||
|
String[] extractData = dataMap.get(i).split("\n");
|
||||||
|
Object[][] data = new Object[extractData.length][1];
|
||||||
|
for (int x = 0; x < extractData.length; x++) {
|
||||||
|
data[x][0] = extractData[x];
|
||||||
|
}
|
||||||
|
int indexOfTab = this.jTabbedPane.indexOfTab(i);
|
||||||
|
JScrollPane jScrollPane = new JScrollPane(new JTable(data, new Object[] {"Information"}));
|
||||||
|
this.jTabbedPane.addTab(i, jScrollPane);
|
||||||
|
// 使用removeAll会导致UI出现空白的情况,为了改善用户侧体验,采用remove的方式进行删除
|
||||||
|
if (indexOfTab != -1) {
|
||||||
|
this.jTabbedPane.remove(indexOfTab);
|
||||||
|
}
|
||||||
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public IMessageEditorTab createNewInstance(IMessageEditorController controller, boolean editable) {
|
public IMessageEditorTab createNewInstance(IMessageEditorController controller, boolean editable) {
|
||||||
return new MarkInfoTab(controller, editable);
|
return new MarkInfoTab(controller, editable);
|
||||||
|
|||||||
@@ -1,9 +1,11 @@
|
|||||||
package burp;
|
package burp;
|
||||||
|
|
||||||
/*
|
/**
|
||||||
* @author EvilChen
|
* @author EvilChen
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
import java.util.Map;
|
||||||
|
|
||||||
public class Config {
|
public class Config {
|
||||||
public static String excludeSuffix = "3g2|3gp|7z|aac|abw|aif|aifc|aiff|arc|au|avi|azw|bin|bmp|bz|bz2|cmx|cod|csh|css|csv|doc|docx|eot|epub|gif|gz|ico|ics|ief|jar|jfif|jpe|jpeg|jpg|m3u|mid|midi|mjs|mp2|mp3|mpa|mpe|mpeg|mpg|mpkg|mpp|mpv2|odp|ods|odt|oga|ogv|ogx|otf|pbm|pdf|pgm|png|pnm|ppm|ppt|pptx|ra|ram|rar|ras|rgb|rmi|rtf|snd|svg|swf|tar|tif|tiff|ttf|vsd|wav|weba|webm|webp|woff|woff2|xbm|xls|xlsx|xpm|xul|xwd|zip|zip";
|
public static String excludeSuffix = "3g2|3gp|7z|aac|abw|aif|aifc|aiff|arc|au|avi|azw|bin|bmp|bz|bz2|cmx|cod|csh|css|csv|doc|docx|eot|epub|gif|gz|ico|ics|ief|jar|jfif|jpe|jpeg|jpg|m3u|mid|midi|mjs|mp2|mp3|mpa|mpe|mpeg|mpg|mpkg|mpp|mpv2|odp|ods|odt|oga|ogv|ogx|otf|pbm|pdf|pgm|png|pnm|ppm|ppt|pptx|ra|ram|rar|ras|rgb|rmi|rtf|snd|svg|swf|tar|tif|tiff|ttf|vsd|wav|weba|webm|webp|woff|woff2|xbm|xls|xlsx|xpm|xul|xwd|zip|zip";
|
||||||
|
|
||||||
@@ -22,8 +24,6 @@ public class Config {
|
|||||||
"dfa"
|
"dfa"
|
||||||
};
|
};
|
||||||
|
|
||||||
public static String outputTplString = "[%s]\n%s\n\n";
|
|
||||||
|
|
||||||
public static String[] colorArray = new String[] {
|
public static String[] colorArray = new String[] {
|
||||||
"red",
|
"red",
|
||||||
"orange",
|
"orange",
|
||||||
@@ -35,4 +35,6 @@ public class Config {
|
|||||||
"magenta",
|
"magenta",
|
||||||
"gray"
|
"gray"
|
||||||
};
|
};
|
||||||
|
|
||||||
|
public static Map<String,Object[][]> ruleConfig = null;
|
||||||
}
|
}
|
||||||
@@ -1,24 +1,24 @@
|
|||||||
package burp.action;
|
package burp.action;
|
||||||
|
|
||||||
|
import java.util.HashMap;
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
import burp.Config;
|
import burp.Config;
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
/*
|
/**
|
||||||
* @author EvilChen
|
* @author EvilChen
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public class DoAction {
|
public class DoAction {
|
||||||
public String extractString(Map<String, Map<String, Object>> obj) {
|
public Map<String, String> extractString(Map<String, Map<String, Object>> obj) {
|
||||||
String[] result = {""};
|
Map<String, String> resultMap = new HashMap<String, String>();
|
||||||
obj.keySet().forEach(i->{
|
obj.keySet().forEach(i->{
|
||||||
Map<String, Object> tmpMap = obj.get(i);
|
Map<String, Object> tmpMap = obj.get(i);
|
||||||
String data = tmpMap.get("data").toString();
|
String data = tmpMap.get("data").toString();
|
||||||
String tmpStr = String.format(Config.outputTplString, i, data).intern();
|
resultMap.put(i, String.format("%s\n", data).intern());
|
||||||
result[0] += tmpStr;
|
|
||||||
});
|
});
|
||||||
return result[0];
|
return resultMap;
|
||||||
}
|
}
|
||||||
|
|
||||||
public List<List<String>> highlightAndComment(Map<String, Map<String, Object>> obj) {
|
public List<List<String>> highlightAndComment(Map<String, Map<String, Object>> obj) {
|
||||||
|
|||||||
@@ -3,6 +3,8 @@ package burp.action;
|
|||||||
import java.nio.charset.StandardCharsets;
|
import java.nio.charset.StandardCharsets;
|
||||||
import java.util.*;
|
import java.util.*;
|
||||||
|
|
||||||
|
import burp.Config;
|
||||||
|
import burp.yaml.LoadConfig;
|
||||||
import dk.brics.automaton.Automaton;
|
import dk.brics.automaton.Automaton;
|
||||||
import dk.brics.automaton.AutomatonMatcher;
|
import dk.brics.automaton.AutomatonMatcher;
|
||||||
import dk.brics.automaton.RegExp;
|
import dk.brics.automaton.RegExp;
|
||||||
@@ -10,10 +12,7 @@ import dk.brics.automaton.RunAutomaton;
|
|||||||
import jregex.Matcher;
|
import jregex.Matcher;
|
||||||
import jregex.Pattern;
|
import jregex.Pattern;
|
||||||
|
|
||||||
import burp.yaml.LoadRule;
|
/**
|
||||||
import burp.yaml.LoadConfigFile;
|
|
||||||
|
|
||||||
/*
|
|
||||||
* @author EvilChen
|
* @author EvilChen
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@@ -21,11 +20,9 @@ public class ExtractContent {
|
|||||||
|
|
||||||
public Map<String, Map<String, Object>> matchRegex(byte[] content, String headers, byte[] body, String scopeString) {
|
public Map<String, Map<String, Object>> matchRegex(byte[] content, String headers, byte[] body, String scopeString) {
|
||||||
Map<String, Map<String, Object>> map = new HashMap<>(); // 最终返回的结果
|
Map<String, Map<String, Object>> map = new HashMap<>(); // 最终返回的结果
|
||||||
new LoadRule(LoadConfigFile.getConfigPath());
|
Config.ruleConfig.keySet().forEach(i -> {
|
||||||
Map<String,Object[][]> rules = LoadRule.getConfig();
|
|
||||||
rules.keySet().forEach(i -> {
|
|
||||||
String matchContent = "";
|
String matchContent = "";
|
||||||
for (Object[] objects : rules.get(i)) {
|
for (Object[] objects : Config.ruleConfig.get(i)) {
|
||||||
// 遍历获取规则
|
// 遍历获取规则
|
||||||
List<String> result = new ArrayList<>();
|
List<String> result = new ArrayList<>();
|
||||||
Map<String, Object> tmpMap = new HashMap<>();
|
Map<String, Object> tmpMap = new HashMap<>();
|
||||||
@@ -37,7 +34,7 @@ public class ExtractContent {
|
|||||||
String scope = objects[4].toString();
|
String scope = objects[4].toString();
|
||||||
String engine = objects[5].toString();
|
String engine = objects[5].toString();
|
||||||
// 判断规则是否开启与作用域
|
// 判断规则是否开启与作用域
|
||||||
if (loaded && (scope.contains(scopeString) || scope.equals("any"))) {
|
if (loaded && (scope.contains(scopeString) || "any".equals(scope))) {
|
||||||
switch (scope) {
|
switch (scope) {
|
||||||
case "any":
|
case "any":
|
||||||
case "request":
|
case "request":
|
||||||
@@ -52,9 +49,11 @@ public class ExtractContent {
|
|||||||
case "response body":
|
case "response body":
|
||||||
matchContent = new String(body, StandardCharsets.UTF_8).intern();
|
matchContent = new String(body, StandardCharsets.UTF_8).intern();
|
||||||
break;
|
break;
|
||||||
|
default:
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (engine.equals("nfa")) {
|
if ("nfa".equals(engine)) {
|
||||||
Pattern pattern = new Pattern(regex);
|
Pattern pattern = new Pattern(regex);
|
||||||
Matcher matcher = pattern.matcher(matchContent);
|
Matcher matcher = pattern.matcher(matchContent);
|
||||||
while (matcher.find()) {
|
while (matcher.find()) {
|
||||||
|
|||||||
@@ -4,12 +4,12 @@ import burp.Config;
|
|||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
/*
|
/**
|
||||||
* @author EvilChen
|
* @author EvilChen
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public class GetColorKey {
|
public class GetColorKey {
|
||||||
/*
|
/**
|
||||||
* 颜色下标获取
|
* 颜色下标获取
|
||||||
*/
|
*/
|
||||||
public List<Integer> getColorKeys(List<String> keys){
|
public List<Integer> getColorKeys(List<String> keys){
|
||||||
|
|||||||
@@ -3,15 +3,15 @@ package burp.action;
|
|||||||
import jregex.Matcher;
|
import jregex.Matcher;
|
||||||
import jregex.Pattern;
|
import jregex.Pattern;
|
||||||
import jregex.REFlags;
|
import jregex.REFlags;
|
||||||
import burp.yaml.LoadConfigFile;
|
import burp.yaml.LoadConfig;
|
||||||
|
|
||||||
/*
|
/**
|
||||||
* @author EvilChen
|
* @author EvilChen
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public class MatchHTTP {
|
public class MatchHTTP {
|
||||||
// 匹配后缀
|
// 匹配后缀
|
||||||
LoadConfigFile lc = new LoadConfigFile();
|
LoadConfig lc = new LoadConfig();
|
||||||
public boolean matchSuffix(String str) {
|
public boolean matchSuffix(String str) {
|
||||||
Pattern pattern = new Pattern(String.format("[\\w]+[\\.](%s)", lc.getExcludeSuffix()), REFlags.IGNORE_CASE);
|
Pattern pattern = new Pattern(String.format("[\\w]+[\\.](%s)", lc.getExcludeSuffix()), REFlags.IGNORE_CASE);
|
||||||
Matcher matcher = pattern.matcher(str);
|
Matcher matcher = pattern.matcher(str);
|
||||||
|
|||||||
@@ -5,6 +5,7 @@ import burp.IHttpService;
|
|||||||
|
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.Arrays;
|
import java.util.Arrays;
|
||||||
|
import java.util.HashMap;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
|
|
||||||
@@ -15,14 +16,19 @@ public class ProcessMessage {
|
|||||||
GetColorKey gck = new GetColorKey();
|
GetColorKey gck = new GetColorKey();
|
||||||
UpgradeColor uc = new UpgradeColor();
|
UpgradeColor uc = new UpgradeColor();
|
||||||
|
|
||||||
public List<String> processMessageByContent(IExtensionHelpers helpers, IHttpService httpService, byte[] content, boolean isRequest, boolean messageInfo) {
|
public List<Map<String, String>> processMessageByContent(IExtensionHelpers helpers, byte[] content, boolean isRequest, boolean messageInfo) {
|
||||||
List<String> result = new ArrayList<>();;
|
List<Map<String, String>> result = new ArrayList<>();;
|
||||||
Map<String, Map<String, Object>> obj;
|
Map<String, Map<String, Object>> obj;
|
||||||
|
|
||||||
if (isRequest) {
|
if (isRequest) {
|
||||||
|
|
||||||
|
// 获取报文头
|
||||||
|
List<String> requestTmpHeaders = helpers.analyzeRequest(content).getHeaders();
|
||||||
|
String requestHeaders = String.join("\n", requestTmpHeaders);
|
||||||
|
|
||||||
try {
|
try {
|
||||||
// 流量清洗
|
// 流量清洗
|
||||||
String urlString = helpers.analyzeRequest(httpService, content).getUrl().toString();
|
String urlString = requestTmpHeaders.get(0).split(" ")[1];
|
||||||
urlString = urlString.indexOf("?") > 0 ? urlString.substring(0, urlString.indexOf("?")) : urlString;
|
urlString = urlString.indexOf("?") > 0 ? urlString.substring(0, urlString.indexOf("?")) : urlString;
|
||||||
|
|
||||||
// 正则判断
|
// 正则判断
|
||||||
@@ -32,12 +38,10 @@ public class ProcessMessage {
|
|||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
// 获取报文头
|
|
||||||
List<String> requestTmpHeaders = helpers.analyzeRequest(httpService, content).getHeaders();
|
|
||||||
String requestHeaders = String.join("\n", requestTmpHeaders);
|
|
||||||
|
|
||||||
// 获取报文主体
|
// 获取报文主体
|
||||||
int requestBodyOffset = helpers.analyzeRequest(httpService, content).getBodyOffset();
|
int requestBodyOffset = helpers.analyzeRequest(content).getBodyOffset();
|
||||||
byte[] requestBody = Arrays.copyOfRange(content, requestBodyOffset, content.length);
|
byte[] requestBody = Arrays.copyOfRange(content, requestBodyOffset, content.length);
|
||||||
|
|
||||||
obj = ec.matchRegex(content, requestHeaders, requestBody, "request");
|
obj = ec.matchRegex(content, requestHeaders, requestBody, "request");
|
||||||
@@ -70,8 +74,14 @@ public class ProcessMessage {
|
|||||||
List<String> commentList = resultList.get(1);
|
List<String> commentList = resultList.get(1);
|
||||||
if (colorList.size() != 0 && commentList.size() != 0) {
|
if (colorList.size() != 0 && commentList.size() != 0) {
|
||||||
String color = uc.getEndColor(gck.getColorKeys(colorList));
|
String color = uc.getEndColor(gck.getColorKeys(colorList));
|
||||||
result.add(color);
|
Map<String, String> colorMap = new HashMap<String, String>(){{
|
||||||
result.add(String.join(", ", commentList));
|
put("color", color);
|
||||||
|
}};
|
||||||
|
Map<String, String> commentMap = new HashMap<String, String>(){{
|
||||||
|
put("comment", String.join(", ", commentList));
|
||||||
|
}};
|
||||||
|
result.add(colorMap);
|
||||||
|
result.add(commentMap);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
if (obj.size() > 0) {
|
if (obj.size() > 0) {
|
||||||
|
|||||||
@@ -4,13 +4,13 @@ import burp.Config;
|
|||||||
|
|
||||||
import java.util.*;
|
import java.util.*;
|
||||||
|
|
||||||
/*
|
/**
|
||||||
* @author EvilChen
|
* @author EvilChen
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public class UpgradeColor {
|
public class UpgradeColor {
|
||||||
private String endColor = "";
|
private String endColor = "";
|
||||||
/*
|
/**
|
||||||
* 颜色升级递归算法
|
* 颜色升级递归算法
|
||||||
*/
|
*/
|
||||||
private void colorUpgrade(List<Integer> colorList) {
|
private void colorUpgrade(List<Integer> colorList) {
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ import java.awt.*;
|
|||||||
import java.awt.event.MouseEvent;
|
import java.awt.event.MouseEvent;
|
||||||
import java.awt.event.MouseListener;
|
import java.awt.event.MouseListener;
|
||||||
|
|
||||||
/*
|
/**
|
||||||
* @author 6dc
|
* @author 6dc
|
||||||
*
|
*
|
||||||
* A class which creates a JTabbedPane and auto sets a close button when you add a tab
|
* A class which creates a JTabbedPane and auto sets a close button when you add a tab
|
||||||
@@ -18,7 +18,7 @@ public class JTabbedPaneCloseButton extends JTabbedPane {
|
|||||||
super();
|
super();
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Override Addtab in order to add the close Button everytime */
|
/** Override Addtab in order to add the close Button everytime */
|
||||||
@Override
|
@Override
|
||||||
public void addTab(String title, Icon icon, Component component, String tip) {
|
public void addTab(String title, Icon icon, Component component, String tip) {
|
||||||
super.addTab(title, icon, component, tip);
|
super.addTab(title, icon, component, tip);
|
||||||
@@ -45,7 +45,7 @@ public class JTabbedPaneCloseButton extends JTabbedPane {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* addTabNoExit */
|
/** addTabNoExit */
|
||||||
public void addTabNoExit(String title, Icon icon, Component component, String tip) {
|
public void addTabNoExit(String title, Icon icon, Component component, String tip) {
|
||||||
super.addTab(title, icon, component, tip);
|
super.addTab(title, icon, component, tip);
|
||||||
}
|
}
|
||||||
@@ -58,12 +58,10 @@ public class JTabbedPaneCloseButton extends JTabbedPane {
|
|||||||
addTabNoExit(title, null, component);
|
addTabNoExit(title, null, component);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Button */
|
/** Button */
|
||||||
public class CloseButtonTab extends JPanel {
|
public class CloseButtonTab extends JPanel {
|
||||||
private Component tab;
|
|
||||||
|
|
||||||
public CloseButtonTab(final Component tab, String title, Icon icon) {
|
public CloseButtonTab(final Component tab, String title, Icon icon) {
|
||||||
this.tab = tab;
|
|
||||||
setOpaque(false);
|
setOpaque(false);
|
||||||
FlowLayout flowLayout = new FlowLayout(FlowLayout.CENTER, 3, 3);
|
FlowLayout flowLayout = new FlowLayout(FlowLayout.CENTER, 3, 3);
|
||||||
setLayout(flowLayout);
|
setLayout(flowLayout);
|
||||||
@@ -76,10 +74,10 @@ public class JTabbedPaneCloseButton extends JTabbedPane {
|
|||||||
add(button);
|
add(button);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
/* ClickListener */
|
/** ClickListener */
|
||||||
public class CloseListener implements MouseListener
|
public class CloseListener implements MouseListener
|
||||||
{
|
{
|
||||||
private Component tab;
|
private final Component tab;
|
||||||
|
|
||||||
public CloseListener(Component tab){
|
public CloseListener(Component tab){
|
||||||
this.tab=tab;
|
this.tab=tab;
|
||||||
|
|||||||
@@ -1,9 +1,8 @@
|
|||||||
package burp.ui;
|
package burp.ui;
|
||||||
|
|
||||||
import org.jetbrains.annotations.NotNull;
|
import burp.Config;
|
||||||
import burp.yaml.LoadConfigFile;
|
import burp.yaml.LoadConfig;
|
||||||
import burp.yaml.LoadRule;
|
import burp.yaml.SetConfig;
|
||||||
import burp.yaml.SetRuleConfig;
|
|
||||||
|
|
||||||
import javax.swing.*;
|
import javax.swing.*;
|
||||||
import javax.swing.event.ChangeEvent;
|
import javax.swing.event.ChangeEvent;
|
||||||
@@ -15,277 +14,264 @@ import java.awt.*;
|
|||||||
import java.awt.event.*;
|
import java.awt.event.*;
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
|
|
||||||
/*
|
/**
|
||||||
* @author LinChen
|
* @author LinChen
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public class MainUI extends JPanel{
|
public class MainUI extends JPanel{
|
||||||
|
private final LoadConfig loadConn = new LoadConfig();
|
||||||
|
|
||||||
public MainUI() {
|
public MainUI() {
|
||||||
initComponents();
|
initComponents();
|
||||||
}
|
}
|
||||||
|
|
||||||
public void closeTabActionPerformed(ActionEvent e){
|
public void closeTabActionPerformed(ActionEvent e){
|
||||||
if (tabbedPane1.getTabCount()>2){
|
if (ruleTabbedPane.getTabCount()>2){
|
||||||
if (tabbedPane1.getSelectedIndex()!=0){
|
if (ruleTabbedPane.getSelectedIndex()!=0){
|
||||||
SetRuleConfig setruleconfig = new SetRuleConfig();
|
SetConfig setConn = new SetConfig();
|
||||||
setruleconfig.deleteRules(tabbedPane1.getTitleAt(tabbedPane1.getSelectedIndex()));
|
setConn.deleteRules(ruleTabbedPane.getTitleAt(ruleTabbedPane.getSelectedIndex()));
|
||||||
tabbedPane1.remove(tabbedPane1.getSelectedIndex());
|
ruleTabbedPane.remove(ruleTabbedPane.getSelectedIndex());
|
||||||
tabbedPane1.setSelectedIndex(tabbedPane1.getSelectedIndex()-1);
|
ruleTabbedPane.setSelectedIndex(ruleTabbedPane.getSelectedIndex()-1);
|
||||||
}else{
|
}else{
|
||||||
SetRuleConfig setruleconfig = new SetRuleConfig();
|
SetConfig setConn = new SetConfig();
|
||||||
setruleconfig.deleteRules(tabbedPane1.getTitleAt(tabbedPane1.getSelectedIndex()));
|
setConn.deleteRules(ruleTabbedPane.getTitleAt(ruleTabbedPane.getSelectedIndex()));
|
||||||
tabbedPane1.remove(tabbedPane1.getSelectedIndex());
|
ruleTabbedPane.remove(ruleTabbedPane.getSelectedIndex());
|
||||||
tabbedPane1.setSelectedIndex(tabbedPane1.getSelectedIndex());
|
ruleTabbedPane.setSelectedIndex(ruleTabbedPane.getSelectedIndex());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private void SelectFileMouseClicked(MouseEvent e) {
|
private void selectFileMouseClicked(MouseEvent e) {
|
||||||
JFileChooser chooseconfig = new JFileChooser();
|
JFileChooser selectFile = new JFileChooser();
|
||||||
chooseconfig.setFileSelectionMode(JFileChooser.FILES_ONLY);
|
selectFile.setFileSelectionMode(JFileChooser.FILES_ONLY);
|
||||||
FileNameExtensionFilter filter = new FileNameExtensionFilter("Yaml File (.yml/.yaml)","yaml", "yml");
|
FileNameExtensionFilter filter = new FileNameExtensionFilter("Yaml File (.yml/.yaml)","yaml", "yml");
|
||||||
chooseconfig.setFileFilter(filter);
|
selectFile.setFileFilter(filter);
|
||||||
int selectframe = chooseconfig.showDialog(new JLabel(),"Select");
|
int selectFrame = selectFile.showDialog(new JLabel(),"Select");
|
||||||
if (selectframe == JFileChooser.APPROVE_OPTION){
|
if (selectFrame == JFileChooser.APPROVE_OPTION){
|
||||||
String configpath = chooseconfig.getSelectedFile().toString();
|
String configPath = selectFile.getSelectedFile().toString();
|
||||||
reloadRule(configpath);
|
reloadRule();
|
||||||
loadfile.setConfigPath(configpath);
|
loadConn.setConfigPath(configPath);
|
||||||
|
configTextField.setText(configPath);
|
||||||
}
|
}
|
||||||
configfilepathtext.setText(loadfile.getConfigPath());
|
new LoadConfig();
|
||||||
}
|
|
||||||
private void reloadRule(String configfile){
|
|
||||||
tabbedPane1.removeAll();
|
|
||||||
LoadRule loadrule = new LoadRule(configfile);
|
|
||||||
Map<String,Object[][]> config = loadrule.getConfig();
|
|
||||||
ruleSwitch.setListen(false);
|
|
||||||
config.keySet().forEach(i->tabbedPane1.addTab(i,new RulePane(config.get(i),tabbedPane1)));
|
|
||||||
tabbedPane1.addTab("...",new JLabel());
|
|
||||||
ruleSwitch.setListen(true);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private void reloadRule(){
|
private void reloadRule(){
|
||||||
tabbedPane1.removeAll();
|
ruleTabbedPane.removeAll();
|
||||||
LoadRule loadrule = new LoadRule(loadfile.getConfigPath());
|
|
||||||
Map<String,Object[][]> config = loadrule.getConfig();
|
|
||||||
ruleSwitch.setListen(false);
|
ruleSwitch.setListen(false);
|
||||||
config.keySet().forEach(i->tabbedPane1.addTab(i,new RulePane(config.get(i),tabbedPane1))
|
Map<String,Object[][]> rules = LoadConfig.getRules();
|
||||||
|
rules.keySet().forEach(
|
||||||
|
i-> ruleTabbedPane.addTab(
|
||||||
|
i,
|
||||||
|
new RulePane(rules.get(i), ruleTabbedPane)
|
||||||
|
)
|
||||||
);
|
);
|
||||||
tabbedPane1.addTab("...",new JLabel());
|
ruleTabbedPane.addTab("...", new JLabel());
|
||||||
ruleSwitch.setListen(true);
|
ruleSwitch.setListen(true);
|
||||||
}
|
}
|
||||||
|
|
||||||
private void reloadMouseClicked(MouseEvent e) {
|
private void reloadMouseClicked(MouseEvent e) {
|
||||||
reloadRule();
|
reloadRule();
|
||||||
}
|
}
|
||||||
private void ESSaveMouseClicked(MouseEvent e) {
|
|
||||||
// TODO add your code here
|
private void excludeSuffixSaveMouseClicked(MouseEvent e) {
|
||||||
LoadConfigFile lcf = new LoadConfigFile();
|
LoadConfig loadCon = new LoadConfig();
|
||||||
lcf.setExcludeSuffix(EStext.getText());
|
loadCon.setExcludeSuffix(excludeSuffixTextField.getText());
|
||||||
}
|
}
|
||||||
private void initComponents() {
|
private void initComponents() {
|
||||||
tabbedPane2 = new JTabbedPane();
|
rulesTabbedPane = new JTabbedPane();
|
||||||
tabbedPane1 = new JTabbedPane();
|
ruleTabbedPane = new JTabbedPane();
|
||||||
panel3 = new JPanel();
|
rulePanel = new JPanel();
|
||||||
configfilepathtext = new JTextField();
|
configTextField = new JTextField();
|
||||||
label1 = new JLabel();
|
configLabel = new JLabel();
|
||||||
SelectFile = new JButton();
|
selectFileButton = new JButton();
|
||||||
reload = new JButton();
|
reloadButton = new JButton();
|
||||||
label2 = new JLabel();
|
excludeSuffixLabel = new JLabel();
|
||||||
EStext = new JTextField();
|
excludeSuffixTextField = new JTextField();
|
||||||
ESSave = new JButton();
|
excludeSuffixSaveButton = new JButton();
|
||||||
|
|
||||||
//======== this ========
|
|
||||||
setLayout(new GridBagLayout());
|
setLayout(new GridBagLayout());
|
||||||
((GridBagLayout)getLayout()).columnWidths = new int[] {0, 0};
|
((GridBagLayout)getLayout()).columnWidths = new int[] {0, 0};
|
||||||
((GridBagLayout)getLayout()).rowHeights = new int[] {0, 0};
|
((GridBagLayout)getLayout()).rowHeights = new int[] {0, 0};
|
||||||
((GridBagLayout)getLayout()).columnWeights = new double[] {1.0, 1.0E-4};
|
((GridBagLayout)getLayout()).columnWeights = new double[] {1.0, 1.0E-4};
|
||||||
((GridBagLayout)getLayout()).rowWeights = new double[] {1.0, 1.0E-4};
|
((GridBagLayout)getLayout()).rowWeights = new double[] {1.0, 1.0E-4};
|
||||||
|
|
||||||
//======== tabbedPane2 ========
|
|
||||||
{
|
{
|
||||||
tabbedPane2.addTab("Rules", tabbedPane1);
|
rulesTabbedPane.addTab("Rules", ruleTabbedPane);
|
||||||
|
|
||||||
//======== panel3 ========
|
|
||||||
{
|
{
|
||||||
panel3.setLayout(new GridBagLayout());
|
rulePanel.setLayout(new GridBagLayout());
|
||||||
((GridBagLayout)panel3.getLayout()).columnWidths = new int[] {0, 0, 0, 0, 0};
|
((GridBagLayout) rulePanel.getLayout()).columnWidths = new int[] {0, 0, 0, 0, 0};
|
||||||
((GridBagLayout)panel3.getLayout()).rowHeights = new int[] {0, 0, 0};
|
((GridBagLayout) rulePanel.getLayout()).rowHeights = new int[] {0, 0, 0};
|
||||||
((GridBagLayout)panel3.getLayout()).columnWeights = new double[] {0.0, 1.0, 0.0, 0.0, 1.0E-4};
|
((GridBagLayout) rulePanel.getLayout()).columnWeights = new double[] {0.0, 1.0, 0.0, 0.0, 1.0E-4};
|
||||||
((GridBagLayout)panel3.getLayout()).rowWeights = new double[] {0.0, 0.0, 1.0E-4};
|
((GridBagLayout) rulePanel.getLayout()).rowWeights = new double[] {0.0, 0.0, 1.0E-4};
|
||||||
|
|
||||||
//---- configfilepathtext ----
|
configTextField.setEditable(false);
|
||||||
configfilepathtext.setEditable(false);
|
rulePanel.add(configTextField, new GridBagConstraints(1, 0, 1, 1, 0.0, 0.0,
|
||||||
panel3.add(configfilepathtext, new GridBagConstraints(1, 0, 1, 1, 0.0, 0.0,
|
|
||||||
GridBagConstraints.CENTER, GridBagConstraints.BOTH,
|
GridBagConstraints.CENTER, GridBagConstraints.BOTH,
|
||||||
new Insets(5, 0, 5, 5), 0, 0));
|
new Insets(5, 0, 5, 5), 0, 0));
|
||||||
|
|
||||||
//---- label1 ----
|
configLabel.setText("Config File Path:");
|
||||||
label1.setText("Config File Path:");
|
rulePanel.add(configLabel, new GridBagConstraints(0, 0, 1, 1, 0.0, 0.0,
|
||||||
panel3.add(label1, new GridBagConstraints(0, 0, 1, 1, 0.0, 0.0,
|
|
||||||
GridBagConstraints.WEST, GridBagConstraints.VERTICAL,
|
GridBagConstraints.WEST, GridBagConstraints.VERTICAL,
|
||||||
new Insets(5, 5, 5, 5), 0, 0));
|
new Insets(5, 5, 5, 5), 0, 0));
|
||||||
|
|
||||||
//---- SelectFile ----
|
selectFileButton.setText("Select File ...");
|
||||||
SelectFile.setText("Select File ...");
|
selectFileButton.addMouseListener(new MouseAdapter() {
|
||||||
SelectFile.addMouseListener(new MouseAdapter() {
|
|
||||||
@Override
|
@Override
|
||||||
public void mouseClicked(MouseEvent e) {
|
public void mouseClicked(MouseEvent e) {
|
||||||
SelectFileMouseClicked(e);
|
selectFileMouseClicked(e);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
panel3.add(SelectFile, new GridBagConstraints(2, 0, 1, 1, 0.0, 0.0,
|
rulePanel.add(selectFileButton, new GridBagConstraints(2, 0, 1, 1, 0.0, 0.0,
|
||||||
GridBagConstraints.CENTER, GridBagConstraints.BOTH,
|
GridBagConstraints.CENTER, GridBagConstraints.BOTH,
|
||||||
new Insets(5, 0, 5, 5), 0, 0));
|
new Insets(5, 0, 5, 5), 0, 0));
|
||||||
|
|
||||||
//---- reload ----
|
reloadButton.setText("Reload");
|
||||||
reload.setText("Reload");
|
reloadButton.addMouseListener(new MouseAdapter() {
|
||||||
reload.addMouseListener(new MouseAdapter() {
|
|
||||||
@Override
|
@Override
|
||||||
public void mouseClicked(MouseEvent e) {
|
public void mouseClicked(MouseEvent e) {
|
||||||
reloadMouseClicked(e);
|
reloadMouseClicked(e);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
panel3.add(reload, new GridBagConstraints(3, 0, 1, 1, 0.0, 0.0,
|
rulePanel.add(reloadButton, new GridBagConstraints(3, 0, 1, 1, 0.0, 0.0,
|
||||||
|
|
||||||
GridBagConstraints.CENTER, GridBagConstraints.BOTH,
|
GridBagConstraints.CENTER, GridBagConstraints.BOTH,
|
||||||
new Insets(5, 0, 5, 5), 0, 0));
|
new Insets(5, 0, 5, 5), 0, 0));
|
||||||
//---- label2 ----
|
|
||||||
label2.setText("ExcludeSuffix:");
|
excludeSuffixLabel.setText("ExcludeSuffix:");
|
||||||
panel3.add(label2, new GridBagConstraints(0, 1, 1, 1, 0.0, 0.0,
|
rulePanel.add(excludeSuffixLabel, new GridBagConstraints(0, 1, 1, 1, 0.0, 0.0,
|
||||||
GridBagConstraints.SOUTHWEST, GridBagConstraints.NONE,
|
GridBagConstraints.SOUTHWEST, GridBagConstraints.NONE,
|
||||||
new Insets(0, 5, 5, 5), 0, 0));
|
new Insets(0, 5, 5, 5), 0, 0));
|
||||||
panel3.add(EStext, new GridBagConstraints(1, 1, 1, 1, 0.0, 0.0,
|
rulePanel.add(excludeSuffixTextField, new GridBagConstraints(1, 1, 1, 1, 0.0, 0.0,
|
||||||
GridBagConstraints.SOUTH, GridBagConstraints.HORIZONTAL,
|
GridBagConstraints.SOUTH, GridBagConstraints.HORIZONTAL,
|
||||||
new Insets(0, 0, 0, 5), 0, 0));
|
new Insets(0, 0, 0, 5), 0, 0));
|
||||||
|
|
||||||
//---- ESSave ----
|
excludeSuffixSaveButton.setText("Save");
|
||||||
ESSave.setText("Save");
|
excludeSuffixSaveButton.addMouseListener(new MouseAdapter() {
|
||||||
ESSave.addMouseListener(new MouseAdapter() {
|
|
||||||
@Override
|
@Override
|
||||||
public void mouseClicked(MouseEvent e) {
|
public void mouseClicked(MouseEvent e) {
|
||||||
ESSaveMouseClicked(e);
|
excludeSuffixSaveMouseClicked(e);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
panel3.add(ESSave, new GridBagConstraints(2, 1, 1, 1, 0.0, 0.0,
|
rulePanel.add(excludeSuffixSaveButton, new GridBagConstraints(2, 1, 1, 1, 0.0, 0.0,
|
||||||
GridBagConstraints.SOUTH, GridBagConstraints.HORIZONTAL,
|
GridBagConstraints.SOUTH, GridBagConstraints.HORIZONTAL,
|
||||||
new Insets(0, 0, 0, 5), 0, 0));
|
new Insets(0, 0, 0, 5), 0, 0));
|
||||||
}
|
}
|
||||||
tabbedPane2.addTab("Config", panel3);
|
rulesTabbedPane.addTab("Config", rulePanel);
|
||||||
}
|
}
|
||||||
add(tabbedPane2, new GridBagConstraints(0, 0, 1, 1, 0.0, 0.0,
|
add(rulesTabbedPane, new GridBagConstraints(0, 0, 1, 1, 0.0, 0.0,
|
||||||
GridBagConstraints.CENTER, GridBagConstraints.BOTH,
|
GridBagConstraints.CENTER, GridBagConstraints.BOTH,
|
||||||
new Insets(0, 0, 0, 0), 0, 0));
|
new Insets(0, 0, 0, 0), 0, 0));
|
||||||
// JFormDesigner - End of component initialization //GEN-END:initComponents
|
|
||||||
|
|
||||||
LoadRule loadRule = new LoadRule(loadfile.getConfigPath());
|
Config.ruleConfig.keySet().forEach(i-> ruleTabbedPane.addTab(i,new RulePane(Config.ruleConfig.get(i),
|
||||||
Map<String,Object[][]> config = loadRule.getConfig();
|
ruleTabbedPane)));
|
||||||
config.keySet().forEach(i->tabbedPane1.addTab(i,new RulePane(config.get(i),tabbedPane1)));
|
|
||||||
|
|
||||||
tabbedPane1.addTab("...",new JLabel());
|
ruleTabbedPane.addTab("...",new JLabel());
|
||||||
|
|
||||||
//TabTitleEditListener ruleSwitch = new TabTitleEditListener(tabbedPane1);
|
configTextField.setText(LoadConfig.getConfigPath());
|
||||||
configfilepathtext.setText(loadfile.getConfigPath());
|
excludeSuffixTextField.setText(loadConn.getExcludeSuffix());
|
||||||
LoadConfigFile lcf =new LoadConfigFile();
|
ruleSwitch = new TabTitleEditListener(ruleTabbedPane);
|
||||||
EStext.setText(lcf.getExcludeSuffix());
|
ruleTabbedPane.addChangeListener(ruleSwitch);
|
||||||
ruleSwitch = new TabTitleEditListener(tabbedPane1);
|
ruleTabbedPane.addMouseListener(ruleSwitch);
|
||||||
tabbedPane1.addChangeListener(ruleSwitch);
|
closeTabMenuItem.addActionListener(e -> closeTabActionPerformed(e));
|
||||||
tabbedPane1.addMouseListener(ruleSwitch);
|
tabMenu.add(closeTabMenuItem);
|
||||||
closeTab.addActionListener(e -> closeTabActionPerformed(e));
|
|
||||||
tabMenu.add(closeTab);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// JFormDesigner - Variables declaration - DO NOT MODIFY //GEN-BEGIN:variables
|
private JTabbedPane rulesTabbedPane;
|
||||||
private JTabbedPane tabbedPane2;
|
private JTabbedPane ruleTabbedPane;
|
||||||
private JTabbedPane tabbedPane1;
|
private JPanel rulePanel;
|
||||||
private JPanel panel3;
|
private JTextField configTextField;
|
||||||
private JTextField configfilepathtext;
|
private JLabel configLabel;
|
||||||
private JLabel label1;
|
private JButton selectFileButton;
|
||||||
private JButton SelectFile;
|
private JButton reloadButton;
|
||||||
private JButton reload;
|
private JLabel excludeSuffixLabel;
|
||||||
private JLabel label2;
|
private JTextField excludeSuffixTextField;
|
||||||
private JTextField EStext;
|
private JButton excludeSuffixSaveButton;
|
||||||
private JButton ESSave;
|
|
||||||
// JFormDesigner - End of variables declaration //GEN-END:variables
|
|
||||||
protected static JPopupMenu tabMenu = new JPopupMenu();
|
protected static JPopupMenu tabMenu = new JPopupMenu();
|
||||||
private JMenuItem closeTab = new JMenuItem("Delete");
|
private JMenuItem closeTabMenuItem = new JMenuItem("Delete");
|
||||||
private TabTitleEditListener ruleSwitch;
|
private TabTitleEditListener ruleSwitch;
|
||||||
private LoadConfigFile loadfile = new LoadConfigFile();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
class TabTitleEditListener extends MouseAdapter implements ChangeListener, DocumentListener {
|
class TabTitleEditListener extends MouseAdapter implements ChangeListener, DocumentListener {
|
||||||
protected final JTextField editor = new JTextField();
|
protected final JTextField ruleEditTextField = new JTextField();
|
||||||
protected final JTabbedPane tabbedPane;
|
protected final JTabbedPane ruleEditTabbedPane;
|
||||||
protected int editingIdx = -1;
|
protected int editingIndex = -1;
|
||||||
protected int len = -1;
|
protected int len = -1;
|
||||||
protected Boolean listen = true;
|
protected Boolean listen = true;
|
||||||
protected Dimension dim;
|
protected Dimension dim;
|
||||||
protected Component tabComponent;
|
protected Component tabComponent;
|
||||||
protected Boolean isRenamesucc = false;
|
protected Boolean isRenameOk = false;
|
||||||
protected LoadConfigFile loadfile = new LoadConfigFile();
|
protected SetConfig setConfig = new SetConfig();
|
||||||
protected LoadRule lr = new LoadRule(loadfile.getConfigPath());
|
|
||||||
protected SetRuleConfig setRuleConfig = new SetRuleConfig();
|
|
||||||
protected final Action startEditing = new AbstractAction() {
|
protected final Action startEditing = new AbstractAction() {
|
||||||
@Override public void actionPerformed(ActionEvent e) {
|
@Override public void actionPerformed(ActionEvent e) {
|
||||||
editingIdx = tabbedPane.getSelectedIndex();
|
editingIndex = ruleEditTabbedPane.getSelectedIndex();
|
||||||
tabComponent = tabbedPane.getTabComponentAt(editingIdx);
|
tabComponent = ruleEditTabbedPane.getTabComponentAt(editingIndex);
|
||||||
tabbedPane.setTabComponentAt(editingIdx, editor);
|
ruleEditTabbedPane.setTabComponentAt(editingIndex, ruleEditTextField);
|
||||||
isRenamesucc = true;
|
isRenameOk = true;
|
||||||
editor.setVisible(true);
|
ruleEditTextField.setVisible(true);
|
||||||
editor.setText(tabbedPane.getTitleAt(editingIdx));
|
ruleEditTextField.setText(ruleEditTabbedPane.getTitleAt(editingIndex));
|
||||||
editor.selectAll();
|
ruleEditTextField.selectAll();
|
||||||
editor.requestFocusInWindow();
|
ruleEditTextField.requestFocusInWindow();
|
||||||
len = editor.getText().length();
|
len = ruleEditTextField.getText().length();
|
||||||
dim = editor.getPreferredSize();
|
dim = ruleEditTextField.getPreferredSize();
|
||||||
editor.setMinimumSize(dim);
|
ruleEditTextField.setMinimumSize(dim);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
protected final Action renameTabTitle = new AbstractAction() {
|
protected final Action renameTabTitle = new AbstractAction() {
|
||||||
@Override public void actionPerformed(ActionEvent e) {
|
@Override public void actionPerformed(ActionEvent e) {
|
||||||
String title = editor.getText().trim();
|
String title = ruleEditTextField.getText().trim();
|
||||||
if (editingIdx >= 0 && !title.isEmpty()) {
|
if (editingIndex >= 0 && !title.isEmpty()) {
|
||||||
String oldname = tabbedPane.getTitleAt(editingIdx);
|
String oldName = ruleEditTabbedPane.getTitleAt(editingIndex);
|
||||||
tabbedPane.setTitleAt(editingIdx, title);
|
ruleEditTabbedPane.setTitleAt(editingIndex, title);
|
||||||
setRuleConfig.rename(oldname,title);
|
setConfig.rename(oldName,title);
|
||||||
}
|
}
|
||||||
cancelEditing.actionPerformed(null);
|
cancelEditing.actionPerformed(null);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
protected final Action cancelEditing = new AbstractAction() {
|
protected final Action cancelEditing = new AbstractAction() {
|
||||||
@Override public void actionPerformed(ActionEvent e) {
|
@Override public void actionPerformed(ActionEvent e) {
|
||||||
if (editingIdx >= 0) {
|
if (editingIndex >= 0) {
|
||||||
tabbedPane.setTabComponentAt(editingIdx, tabComponent);
|
ruleEditTabbedPane.setTabComponentAt(editingIndex, tabComponent);
|
||||||
editor.setVisible(false);
|
ruleEditTextField.setVisible(false);
|
||||||
editingIdx = -1;
|
editingIndex = -1;
|
||||||
len = -1;
|
len = -1;
|
||||||
tabComponent = null;
|
tabComponent = null;
|
||||||
editor.setPreferredSize(null);
|
ruleEditTextField.setPreferredSize(null);
|
||||||
tabbedPane.requestFocusInWindow();
|
ruleEditTabbedPane.requestFocusInWindow();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
protected TabTitleEditListener(JTabbedPane tabbedPane) {
|
protected TabTitleEditListener(JTabbedPane tabbedPane) {
|
||||||
super();
|
super();
|
||||||
this.tabbedPane = tabbedPane;
|
this.ruleEditTabbedPane = tabbedPane;
|
||||||
editor.setBorder(BorderFactory.createEmptyBorder());
|
ruleEditTextField.setBorder(BorderFactory.createEmptyBorder());
|
||||||
editor.addFocusListener(new FocusAdapter() {
|
ruleEditTextField.addFocusListener(new FocusAdapter() {
|
||||||
@Override public void focusLost(FocusEvent e) {
|
@Override public void focusLost(FocusEvent e) {
|
||||||
renameTabTitle.actionPerformed(null);
|
renameTabTitle.actionPerformed(null);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
InputMap im = editor.getInputMap(JComponent.WHEN_FOCUSED);
|
InputMap im = ruleEditTextField.getInputMap(JComponent.WHEN_FOCUSED);
|
||||||
ActionMap am = editor.getActionMap();
|
ActionMap am = ruleEditTextField.getActionMap();
|
||||||
im.put(KeyStroke.getKeyStroke(KeyEvent.VK_ESCAPE, 0), "cancel-editing");
|
im.put(KeyStroke.getKeyStroke(KeyEvent.VK_ESCAPE, 0), "cancel-editing");
|
||||||
am.put("cancel-editing", cancelEditing);
|
am.put("cancel-editing", cancelEditing);
|
||||||
im.put(KeyStroke.getKeyStroke(KeyEvent.VK_ENTER, 0), "rename-tab-title");
|
im.put(KeyStroke.getKeyStroke(KeyEvent.VK_ENTER, 0), "rename-tab-title");
|
||||||
am.put("rename-tab-title", renameTabTitle);
|
am.put("rename-tab-title", renameTabTitle);
|
||||||
editor.getDocument().addDocumentListener(this);
|
ruleEditTextField.getDocument().addDocumentListener(this);
|
||||||
tabbedPane.getInputMap(JComponent.WHEN_FOCUSED).put(KeyStroke.getKeyStroke(KeyEvent.VK_ENTER, 0), "start-editing");
|
tabbedPane.getInputMap(JComponent.WHEN_FOCUSED).put(KeyStroke.getKeyStroke(KeyEvent.VK_ENTER, 0), "start-editing");
|
||||||
tabbedPane.getActionMap().put("start-editing", startEditing);
|
tabbedPane.getActionMap().put("start-editing", startEditing);
|
||||||
}
|
}
|
||||||
@Override public void stateChanged(ChangeEvent e) {
|
|
||||||
if (e.getSource() instanceof JTabbedPane && listen) {
|
@Override public void stateChanged(ChangeEvent e) {
|
||||||
JTabbedPane pane = (JTabbedPane) e.getSource();
|
if (e.getSource() instanceof JTabbedPane && listen) {
|
||||||
if (!isRenamesucc){
|
JTabbedPane pane = (JTabbedPane) e.getSource();
|
||||||
if (pane.getSelectedIndex() == pane.getComponentCount()-1){
|
if (!isRenameOk){
|
||||||
|
if (pane.getSelectedIndex() == pane.getComponentCount()-1){
|
||||||
newTab();
|
newTab();
|
||||||
}
|
}
|
||||||
}else{
|
}else{
|
||||||
@@ -296,18 +282,22 @@ class TabTitleEditListener extends MouseAdapter implements ChangeListener, Docum
|
|||||||
}
|
}
|
||||||
renameTabTitle.actionPerformed(null);
|
renameTabTitle.actionPerformed(null);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void newTab(){
|
public void newTab(){
|
||||||
Object[][] data = new Object[][]{{false, "New Name", "(New Regex)", "gray", "any", "nfa"}};
|
Object[][] data = new Object[][]{{false, "New Name", "(New Regex)", "gray", "any", "nfa"}};
|
||||||
insertTab(tabbedPane,setRuleConfig.newRules(),data);
|
insertTab(ruleEditTabbedPane, setConfig.newRules(),data);
|
||||||
}
|
}
|
||||||
public void insertTab(@NotNull JTabbedPane pane,String title,Object[][] data){
|
|
||||||
|
public void insertTab(JTabbedPane pane,String title,Object[][] data){
|
||||||
pane.addTab(title,new RulePane(data,pane));
|
pane.addTab(title,new RulePane(data,pane));
|
||||||
pane.remove(pane.getSelectedIndex());
|
pane.remove(pane.getSelectedIndex());
|
||||||
pane.addTab("...",new JLabel());
|
pane.addTab("...",new JLabel());
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setListen(Boolean listen){
|
public void setListen(Boolean listen){
|
||||||
this.listen = listen;
|
this.listen = listen;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override public void insertUpdate(DocumentEvent e) {
|
@Override public void insertUpdate(DocumentEvent e) {
|
||||||
updateTabSize();
|
updateTabSize();
|
||||||
}
|
}
|
||||||
@@ -322,7 +312,7 @@ class TabTitleEditListener extends MouseAdapter implements ChangeListener, Docum
|
|||||||
switch (e.getButton()){
|
switch (e.getButton()){
|
||||||
case 1:
|
case 1:
|
||||||
{
|
{
|
||||||
Rectangle r = tabbedPane.getBoundsAt(tabbedPane.getSelectedIndex());
|
Rectangle r = ruleEditTabbedPane.getBoundsAt(ruleEditTabbedPane.getSelectedIndex());
|
||||||
boolean isDoubleClick = e.getClickCount() >= 2;
|
boolean isDoubleClick = e.getClickCount() >= 2;
|
||||||
if (isDoubleClick && r.contains(e.getPoint())) {
|
if (isDoubleClick && r.contains(e.getPoint())) {
|
||||||
startEditing.actionPerformed(null);
|
startEditing.actionPerformed(null);
|
||||||
@@ -341,7 +331,7 @@ class TabTitleEditListener extends MouseAdapter implements ChangeListener, Docum
|
|||||||
}
|
}
|
||||||
|
|
||||||
protected void updateTabSize() {
|
protected void updateTabSize() {
|
||||||
editor.setPreferredSize(editor.getText().length() > len ? null : dim);
|
ruleEditTextField.setPreferredSize(ruleEditTextField.getText().length() > len ? null : dim);
|
||||||
tabbedPane.revalidate();
|
ruleEditTabbedPane.revalidate();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
package burp.ui;
|
package burp.ui;
|
||||||
|
|
||||||
import burp.yaml.SetRuleConfig;
|
import burp.yaml.SetConfig;
|
||||||
|
|
||||||
import javax.swing.*;
|
import javax.swing.*;
|
||||||
import javax.swing.event.TableModelEvent;
|
import javax.swing.event.TableModelEvent;
|
||||||
@@ -12,83 +12,83 @@ import java.awt.event.MouseAdapter;
|
|||||||
import java.awt.event.MouseEvent;
|
import java.awt.event.MouseEvent;
|
||||||
import java.util.Vector;
|
import java.util.Vector;
|
||||||
|
|
||||||
/*
|
/**
|
||||||
* @author LinChen
|
* @author LinChen
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public class RulePane extends JPanel {
|
public class RulePane extends JPanel {
|
||||||
public RulePane(Object[][] data,JTabbedPane pane) {
|
public RulePane(Object[][] data, JTabbedPane pane) {
|
||||||
initComponents(data,pane);
|
initComponents(data, pane);
|
||||||
}
|
}
|
||||||
private SetRuleConfig setruleconfig = new SetRuleConfig();
|
private SetConfig setConfig = new SetConfig();
|
||||||
private Boolean isEdit = false;
|
private Boolean isEdit = false;
|
||||||
private void RuleAddMouseClicked(MouseEvent e, JTabbedPane pane) {
|
|
||||||
// TODO add your code here
|
private void ruleAddMouseClicked(MouseEvent e, JTabbedPane pane) {
|
||||||
RuleSetting add = new RuleSetting();
|
RuleSetting add = new RuleSetting();
|
||||||
int isOk = JOptionPane.showConfirmDialog(null,add,"RuleSetting - Add Rule",JOptionPane.OK_OPTION);
|
int isOk = JOptionPane.showConfirmDialog(null, add, "RuleSetting - Add Rule", JOptionPane.OK_OPTION);
|
||||||
if(isOk == 0){
|
if(isOk == 0){
|
||||||
Vector data = new Vector();
|
Vector data = new Vector();
|
||||||
data.add(false);
|
data.add(false);
|
||||||
data.add(add.Name.getText());
|
data.add(add.Name.getText());
|
||||||
data.add(add.Regex.getText());
|
data.add(add.regexTextField.getText());
|
||||||
data.add(add.ColorSelect.getSelectedItem().toString());
|
data.add(add.colorComboBox.getSelectedItem().toString());
|
||||||
data.add(add.ScopeSelect.getSelectedItem().toString());
|
data.add(add.scopeComboBox.getSelectedItem().toString());
|
||||||
data.add(add.EngineSelect.getSelectedItem().toString());
|
data.add(add.engineComboBox.getSelectedItem().toString());
|
||||||
model.insertRow(model.getRowCount(),data);
|
model.insertRow(model.getRowCount(), data);
|
||||||
model = (DefaultTableModel) table.getModel();
|
model = (DefaultTableModel) ruleTable.getModel();
|
||||||
setruleconfig.add(data,pane.getTitleAt(pane.getSelectedIndex()));
|
setConfig.add(data, pane.getTitleAt(pane.getSelectedIndex()));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private void RuleEditMouseClicked(MouseEvent e,JTabbedPane pane){
|
private void ruleEditMouseClicked(MouseEvent e, JTabbedPane pane){
|
||||||
if (table.getSelectedRowCount()>=1){
|
if (ruleTable.getSelectedRowCount() >= 1){
|
||||||
RuleSetting edit = new RuleSetting();
|
RuleSetting edit = new RuleSetting();
|
||||||
edit.Name.setText(table.getValueAt(table.getSelectedRow(),1).toString());
|
edit.Name.setText(ruleTable.getValueAt(ruleTable.getSelectedRow(), 1).toString());
|
||||||
edit.Regex.setText(table.getValueAt(table.getSelectedRow(),2).toString());
|
edit.regexTextField.setText(ruleTable.getValueAt(ruleTable.getSelectedRow(), 2).toString());
|
||||||
edit.ColorSelect.setSelectedItem(table.getValueAt(table.getSelectedRow(),3).toString());
|
edit.colorComboBox.setSelectedItem(ruleTable.getValueAt(ruleTable.getSelectedRow(), 3).toString());
|
||||||
edit.ScopeSelect.setSelectedItem(table.getValueAt(table.getSelectedRow(),4).toString());
|
edit.scopeComboBox.setSelectedItem(ruleTable.getValueAt(ruleTable.getSelectedRow(), 4).toString());
|
||||||
edit.EngineSelect.setSelectedItem(table.getValueAt(table.getSelectedRow(),5).toString());
|
edit.engineComboBox.setSelectedItem(ruleTable.getValueAt(ruleTable.getSelectedRow(), 5).toString());
|
||||||
int isOk = JOptionPane.showConfirmDialog(null,edit,"RuleSetting - Edit Rule",JOptionPane.OK_OPTION);
|
int isOk = JOptionPane.showConfirmDialog(null, edit, "RuleSetting - Edit Rule", JOptionPane.OK_OPTION);
|
||||||
if (isOk ==0){
|
if (isOk == 0){
|
||||||
int select = table.convertRowIndexToModel(table.getSelectedRow());
|
int select = ruleTable.convertRowIndexToModel(ruleTable.getSelectedRow());
|
||||||
model.setValueAt(edit.Name.getText(),select,1);
|
model.setValueAt(edit.Name.getText(), select, 1);
|
||||||
model.setValueAt(edit.Regex.getText(),select,2);
|
model.setValueAt(edit.regexTextField.getText(), select, 2);
|
||||||
model.setValueAt(edit.ColorSelect.getSelectedItem().toString(),select,3);
|
model.setValueAt(edit.colorComboBox.getSelectedItem().toString(), select, 3);
|
||||||
model.setValueAt(edit.ScopeSelect.getSelectedItem().toString(),select,4);
|
model.setValueAt(edit.scopeComboBox.getSelectedItem().toString(), select, 4);
|
||||||
model.setValueAt(edit.EngineSelect.getSelectedItem().toString(),select,5);
|
model.setValueAt(edit.engineComboBox.getSelectedItem().toString(), select, 5);
|
||||||
model = (DefaultTableModel) table.getModel();
|
model = (DefaultTableModel) ruleTable.getModel();
|
||||||
setruleconfig.edit((Vector) model.getDataVector().get(select),select,pane.getTitleAt(pane.getSelectedIndex()));
|
setConfig.edit((Vector) model.getDataVector().get(select), select, pane.getTitleAt(pane.getSelectedIndex()));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private void RuleRemoveMouseClicked(MouseEvent e,JTabbedPane pane){
|
private void ruleRemoveMouseClicked(MouseEvent e, JTabbedPane pane){
|
||||||
if (table.getSelectedRowCount()>=1){
|
if (ruleTable.getSelectedRowCount() >= 1){
|
||||||
int isOk = JOptionPane.showConfirmDialog(null,"Are your sure?","RuleSetting - Delete Rule",JOptionPane.OK_OPTION);
|
int isOk = JOptionPane.showConfirmDialog(null, "Are your sure?", "RuleSetting - Delete Rule", JOptionPane.OK_OPTION);
|
||||||
if (isOk==0){
|
if (isOk == 0){
|
||||||
int select = table.convertRowIndexToModel(table.getSelectedRow());
|
int select = ruleTable.convertRowIndexToModel(ruleTable.getSelectedRow());
|
||||||
model.removeRow(select);
|
model.removeRow(select);
|
||||||
model = (DefaultTableModel) table.getModel();
|
model = (DefaultTableModel) ruleTable.getModel();
|
||||||
setruleconfig.remove(select,pane.getTitleAt(pane.getSelectedIndex()));
|
setConfig.remove(select, pane.getTitleAt(pane.getSelectedIndex()));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private void RuleTableChange(TableModelEvent e,JTabbedPane pane) {
|
private void ruleTableChange(TableModelEvent e, JTabbedPane pane) {
|
||||||
if (e.getColumn()==0&&table.getSelectedRow()!=-1&&!isEdit){
|
if (e.getColumn() == 0 && ruleTable.getSelectedRow() != -1 && !isEdit){
|
||||||
model = (DefaultTableModel) table.getModel();
|
model = (DefaultTableModel) ruleTable.getModel();
|
||||||
int select = table.convertRowIndexToModel(table.getSelectedRow());
|
int select = ruleTable.convertRowIndexToModel(ruleTable.getSelectedRow());
|
||||||
setruleconfig.edit((Vector) model.getDataVector().get(select),select,pane.getTitleAt(pane.getSelectedIndex()));
|
setConfig.edit((Vector) model.getDataVector().get(select), select, pane.getTitleAt(pane.getSelectedIndex()));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private void initComponents(Object[][] data,JTabbedPane pane) {
|
private void initComponents(Object[][] data, JTabbedPane pane) {
|
||||||
// JFormDesigner - Component initialization - DO NOT MODIFY //GEN-BEGIN:initComponents
|
// JFormDesigner - Component initialization - DO NOT MODIFY //GEN-BEGIN:initComponents
|
||||||
RuleAdd = new JButton();
|
addButton = new JButton();
|
||||||
RuleEdit = new JButton();
|
editButton = new JButton();
|
||||||
scrollPane = new JScrollPane();
|
scrollPane = new JScrollPane();
|
||||||
table = new JTable();
|
ruleTable = new JTable();
|
||||||
Remove = new JButton();
|
removeButton = new JButton();
|
||||||
|
|
||||||
//======== this ========
|
//======== this ========
|
||||||
setLayout(new GridBagLayout());
|
setLayout(new GridBagLayout());
|
||||||
@@ -97,100 +97,106 @@ public class RulePane extends JPanel {
|
|||||||
((GridBagLayout)getLayout()).columnWeights = new double[] {0.0, 1.0, 1.0E-4};
|
((GridBagLayout)getLayout()).columnWeights = new double[] {0.0, 1.0, 1.0E-4};
|
||||||
((GridBagLayout)getLayout()).rowWeights = new double[] {0.0, 0.0, 0.0, 1.0, 1.0E-4};
|
((GridBagLayout)getLayout()).rowWeights = new double[] {0.0, 0.0, 0.0, 1.0, 1.0E-4};
|
||||||
|
|
||||||
//---- RuleAdd ----
|
//---- addButton ----
|
||||||
RuleAdd.setText("Add");
|
addButton.setText("Add");
|
||||||
RuleAdd.addMouseListener(new MouseAdapter() {
|
|
||||||
|
addButton.addMouseListener(new MouseAdapter() {
|
||||||
@Override
|
@Override
|
||||||
public void mouseClicked(MouseEvent e) {
|
public void mouseClicked(MouseEvent e) {
|
||||||
isEdit = true;
|
isEdit = true;
|
||||||
RuleAddMouseClicked(e,pane);
|
ruleAddMouseClicked(e, pane);
|
||||||
model = (DefaultTableModel) table.getModel();
|
model = (DefaultTableModel) ruleTable.getModel();
|
||||||
isEdit = false;
|
isEdit = false;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
add(RuleAdd, new GridBagConstraints(0, 0, 1, 1, 0.0, 0.0,
|
|
||||||
|
add(addButton, new GridBagConstraints(0, 0, 1, 1, 0.0, 0.0,
|
||||||
GridBagConstraints.CENTER, GridBagConstraints.BOTH,
|
GridBagConstraints.CENTER, GridBagConstraints.BOTH,
|
||||||
new Insets(15, 5, 3, 2), 0, 0));
|
new Insets(15, 5, 3, 2), 0, 0));
|
||||||
|
|
||||||
//---- RuleEdit ----
|
//---- editButton ----
|
||||||
RuleEdit.setText("Edit");
|
editButton.setText("Edit");
|
||||||
RuleEdit.addMouseListener(new MouseAdapter() {
|
editButton.addMouseListener(new MouseAdapter() {
|
||||||
@Override
|
@Override
|
||||||
public void mouseClicked(MouseEvent e) {
|
public void mouseClicked(MouseEvent e) {
|
||||||
isEdit = true;
|
isEdit = true;
|
||||||
RuleEditMouseClicked(e,pane);
|
ruleEditMouseClicked(e, pane);
|
||||||
model = (DefaultTableModel) table.getModel();
|
model = (DefaultTableModel) ruleTable.getModel();
|
||||||
isEdit = false;
|
isEdit = false;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
add(RuleEdit, new GridBagConstraints(0, 1, 1, 1, 0.0, 0.0,
|
|
||||||
|
add(editButton, new GridBagConstraints(0, 1, 1, 1, 0.0, 0.0,
|
||||||
GridBagConstraints.CENTER, GridBagConstraints.BOTH,
|
GridBagConstraints.CENTER, GridBagConstraints.BOTH,
|
||||||
new Insets(0, 5, 3, 2), 0, 0));
|
new Insets(0, 5, 3, 2), 0, 0));
|
||||||
|
|
||||||
//======== scrollPane ========
|
//======== scrollPane ========
|
||||||
{
|
{
|
||||||
|
|
||||||
//---- table ----
|
//---- table ----
|
||||||
table.setShowVerticalLines(false);
|
ruleTable.setShowVerticalLines(false);
|
||||||
table.setVerifyInputWhenFocusTarget(false);
|
ruleTable.setVerifyInputWhenFocusTarget(false);
|
||||||
table.setUpdateSelectionOnSort(false);
|
ruleTable.setUpdateSelectionOnSort(false);
|
||||||
table.setShowHorizontalLines(false);
|
ruleTable.setShowHorizontalLines(false);
|
||||||
table.setModel(new DefaultTableModel());
|
ruleTable.setModel(new DefaultTableModel());
|
||||||
table.setSurrendersFocusOnKeystroke(true);
|
ruleTable.setSurrendersFocusOnKeystroke(true);
|
||||||
scrollPane.setViewportView(table);
|
scrollPane.setViewportView(ruleTable);
|
||||||
}
|
}
|
||||||
|
|
||||||
add(scrollPane, new GridBagConstraints(1, 0, 1, 4, 0.0, 0.0,
|
add(scrollPane, new GridBagConstraints(1, 0, 1, 4, 0.0, 0.0,
|
||||||
GridBagConstraints.CENTER, GridBagConstraints.BOTH,
|
GridBagConstraints.CENTER, GridBagConstraints.BOTH,
|
||||||
new Insets(15, 5, 5, 5), 0, 0));
|
new Insets(15, 5, 5, 5), 0, 0));
|
||||||
|
|
||||||
//---- Remove ----
|
//---- removeButton ----
|
||||||
Remove.setText("Remove");
|
removeButton.setText("Remove");
|
||||||
Remove.addMouseListener(new MouseAdapter() {
|
|
||||||
|
removeButton.addMouseListener(new MouseAdapter() {
|
||||||
@Override
|
@Override
|
||||||
public void mouseClicked(MouseEvent e) {
|
public void mouseClicked(MouseEvent e) {
|
||||||
isEdit = true;
|
isEdit = true;
|
||||||
RuleRemoveMouseClicked(e,pane);
|
ruleRemoveMouseClicked(e, pane);
|
||||||
model = (DefaultTableModel) table.getModel();
|
model = (DefaultTableModel) ruleTable.getModel();
|
||||||
isEdit = false;
|
isEdit = false;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
add(Remove, new GridBagConstraints(0, 2, 1, 1, 0.0, 0.0,
|
|
||||||
|
add(removeButton, new GridBagConstraints(0, 2, 1, 1, 0.0, 0.0,
|
||||||
GridBagConstraints.CENTER, GridBagConstraints.BOTH,
|
GridBagConstraints.CENTER, GridBagConstraints.BOTH,
|
||||||
new Insets(0, 5, 3, 2), 0, 0));
|
new Insets(0, 5, 3, 2), 0, 0));
|
||||||
|
|
||||||
// JFormDesigner - End of component initialization //GEN-END:initComponents
|
// JFormDesigner - End of component initialization //GEN-END:initComponents
|
||||||
table.setModel(model);
|
ruleTable.setModel(model);
|
||||||
model.setDataVector(data,title);
|
model.setDataVector(data, title);
|
||||||
model.addTableModelListener(new TableModelListener() {
|
model.addTableModelListener(new TableModelListener() {
|
||||||
@Override
|
@Override
|
||||||
public void tableChanged(TableModelEvent e) {
|
public void tableChanged(TableModelEvent e) {
|
||||||
RuleTableChange(e,pane);
|
ruleTableChange(e, pane);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
table.setRowSorter(new TableRowSorter(model));
|
|
||||||
|
ruleTable.setRowSorter(new TableRowSorter(model));
|
||||||
}
|
}
|
||||||
|
|
||||||
// JFormDesigner - Variables declaration - DO NOT MODIFY //GEN-BEGIN:variables
|
// JFormDesigner - Variables declaration - DO NOT MODIFY //GEN-BEGIN:variables
|
||||||
public JButton RuleAdd;
|
public JButton addButton;
|
||||||
public JButton RuleEdit;
|
public JButton editButton;
|
||||||
public JScrollPane scrollPane;
|
public JScrollPane scrollPane;
|
||||||
public JTable table;
|
public JTable ruleTable;
|
||||||
public JButton Remove;
|
public JButton removeButton;
|
||||||
// JFormDesigner - End of variables declaration //GEN-END:variables
|
// JFormDesigner - End of variables declaration //GEN-END:variables
|
||||||
private final String[] title = new String[]{"Loaded", "Name", "Regex", "Color", "Scope", "Engine"};
|
private final String[] title = new String[]{"Loaded", "Name", "Regex", "Color", "Scope", "Engine"};
|
||||||
private DefaultTableModel model = new DefaultTableModel() {
|
private DefaultTableModel model = new DefaultTableModel() {
|
||||||
public Class<?> getColumnClass ( int column){
|
@Override
|
||||||
|
public Class<?> getColumnClass (int column){
|
||||||
if (column == 0) {
|
if (column == 0) {
|
||||||
return Boolean.class;
|
return Boolean.class;
|
||||||
}else{
|
}else{
|
||||||
return String.class;
|
return String.class;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
public boolean isCellEditable(int row,int column){
|
|
||||||
if (column ==0){
|
@Override
|
||||||
return true;
|
public boolean isCellEditable(int row, int column){
|
||||||
}else {
|
return column == 0;
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ import javax.swing.*;
|
|||||||
import java.awt.*;
|
import java.awt.*;
|
||||||
import burp.Config;
|
import burp.Config;
|
||||||
|
|
||||||
/*
|
/**
|
||||||
* @author LinChen
|
* @author LinChen
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@@ -14,67 +14,56 @@ public class RuleSetting extends JPanel {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public void initComponents() {
|
public void initComponents() {
|
||||||
// JFormDesigner - Component initialization - DO NOT MODIFY //GEN-BEGIN:initComponents
|
engineLabel = new JLabel();
|
||||||
label5 = new JLabel();
|
scopeLabel = new JLabel();
|
||||||
label4 = new JLabel();
|
regexTextField = new JTextField();
|
||||||
Regex = new JTextField();
|
regexLabel = new JLabel();
|
||||||
label3 = new JLabel();
|
nameLabel = new JLabel();
|
||||||
label2 = new JLabel();
|
|
||||||
Name = new JTextField();
|
Name = new JTextField();
|
||||||
ScopeSelect = new JComboBox<>();
|
scopeComboBox = new JComboBox<>();
|
||||||
EngineSelect = new JComboBox<>();
|
engineComboBox = new JComboBox<>();
|
||||||
label6 = new JLabel();
|
colorLabel = new JLabel();
|
||||||
ColorSelect = new JComboBox<>();
|
colorComboBox = new JComboBox<>();
|
||||||
|
|
||||||
//======== this ========
|
|
||||||
setLayout(null);
|
setLayout(null);
|
||||||
|
|
||||||
//---- label5 ----
|
engineLabel.setText("Engine:");
|
||||||
label5.setText("Engine:");
|
add(engineLabel);
|
||||||
add(label5);
|
engineLabel.setBounds(new Rectangle(new Point(10, 175), engineLabel.getPreferredSize()));
|
||||||
label5.setBounds(new Rectangle(new Point(10, 175), label5.getPreferredSize()));
|
|
||||||
|
|
||||||
//---- label4 ----
|
scopeLabel.setText("Scope:");
|
||||||
label4.setText("Scope:");
|
add(scopeLabel);
|
||||||
add(label4);
|
scopeLabel.setBounds(new Rectangle(new Point(10, 135), scopeLabel.getPreferredSize()));
|
||||||
label4.setBounds(new Rectangle(new Point(10, 135), label4.getPreferredSize()));
|
add(regexTextField);
|
||||||
add(Regex);
|
regexTextField.setBounds(70, 50, 265, 30);
|
||||||
Regex.setBounds(70, 50, 265, 30);
|
|
||||||
|
|
||||||
//---- label3 ----
|
regexLabel.setText("Regex:");
|
||||||
label3.setText("Regex:");
|
add(regexLabel);
|
||||||
add(label3);
|
regexLabel.setBounds(new Rectangle(new Point(10, 55), regexLabel.getPreferredSize()));
|
||||||
label3.setBounds(new Rectangle(new Point(10, 55), label3.getPreferredSize()));
|
|
||||||
|
|
||||||
//---- label2 ----
|
nameLabel.setText("Name:");
|
||||||
label2.setText("Name:");
|
add(nameLabel);
|
||||||
add(label2);
|
nameLabel.setBounds(new Rectangle(new Point(10, 15), nameLabel.getPreferredSize()));
|
||||||
label2.setBounds(new Rectangle(new Point(10, 15), label2.getPreferredSize()));
|
|
||||||
add(Name);
|
add(Name);
|
||||||
Name.setBounds(70, 10, 265, 30);
|
Name.setBounds(70, 10, 265, 30);
|
||||||
|
|
||||||
//---- ScopeSelect ----
|
scopeComboBox.setModel(new DefaultComboBoxModel<>(Config.scopeArray));
|
||||||
ScopeSelect.setModel(new DefaultComboBoxModel<>(Config.scopeArray));
|
add(scopeComboBox);
|
||||||
add(ScopeSelect);
|
scopeComboBox.setBounds(70, 130, 265, scopeComboBox.getPreferredSize().height);
|
||||||
ScopeSelect.setBounds(70, 130, 265, ScopeSelect.getPreferredSize().height);
|
|
||||||
|
|
||||||
//---- EngineSelect ----
|
engineComboBox.setModel(new DefaultComboBoxModel<>(Config.engineArray));
|
||||||
EngineSelect.setModel(new DefaultComboBoxModel<>(Config.engineArray));
|
add(engineComboBox);
|
||||||
add(EngineSelect);
|
engineComboBox.setBounds(70, 170, 265, engineComboBox.getPreferredSize().height);
|
||||||
EngineSelect.setBounds(70, 170, 265, EngineSelect.getPreferredSize().height);
|
|
||||||
|
|
||||||
//---- label7 ----
|
colorLabel.setText("Color:");
|
||||||
label6.setText("Color:");
|
add(colorLabel);
|
||||||
add(label6);
|
colorLabel.setBounds(new Rectangle(new Point(10, 95), colorLabel.getPreferredSize()));
|
||||||
label6.setBounds(new Rectangle(new Point(10, 95), label6.getPreferredSize()));
|
|
||||||
|
|
||||||
//---- ColorSelect ----
|
colorComboBox.setModel(new DefaultComboBoxModel<>(Config.colorArray));
|
||||||
ColorSelect.setModel(new DefaultComboBoxModel<>(Config.colorArray));
|
add(colorComboBox);
|
||||||
add(ColorSelect);
|
colorComboBox.setBounds(70, 90, 265, colorComboBox.getPreferredSize().height);
|
||||||
ColorSelect.setBounds(70, 90, 265, ColorSelect.getPreferredSize().height);
|
|
||||||
|
|
||||||
{
|
{
|
||||||
// compute preferred size
|
|
||||||
Dimension preferredSize = new Dimension();
|
Dimension preferredSize = new Dimension();
|
||||||
for(int i = 0; i < getComponentCount(); i++) {
|
for(int i = 0; i < getComponentCount(); i++) {
|
||||||
Rectangle bounds = getComponent(i).getBounds();
|
Rectangle bounds = getComponent(i).getBounds();
|
||||||
@@ -87,19 +76,16 @@ public class RuleSetting extends JPanel {
|
|||||||
setMinimumSize(preferredSize);
|
setMinimumSize(preferredSize);
|
||||||
setPreferredSize(preferredSize);
|
setPreferredSize(preferredSize);
|
||||||
}
|
}
|
||||||
// JFormDesigner - End of component initialization //GEN-END:initComponents
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// JFormDesigner - Variables declaration - DO NOT MODIFY //GEN-BEGIN:variables
|
private JLabel engineLabel;
|
||||||
private JLabel label5;
|
private JLabel scopeLabel;
|
||||||
private JLabel label4;
|
public JTextField regexTextField;
|
||||||
public JTextField Regex;
|
private JLabel regexLabel;
|
||||||
private JLabel label3;
|
private JLabel nameLabel;
|
||||||
private JLabel label2;
|
|
||||||
public JTextField Name;
|
public JTextField Name;
|
||||||
public JComboBox<String> ScopeSelect;
|
public JComboBox<String> scopeComboBox;
|
||||||
public JComboBox<String> EngineSelect;
|
public JComboBox<String> engineComboBox;
|
||||||
private JLabel label6;
|
private JLabel colorLabel;
|
||||||
public JComboBox<String> ColorSelect;
|
public JComboBox<String> colorComboBox;
|
||||||
// JFormDesigner - End of variables declaration //GEN-END:variables
|
|
||||||
}
|
}
|
||||||
|
|||||||
165
src/main/java/burp/yaml/LoadConfig.java
Normal file
165
src/main/java/burp/yaml/LoadConfig.java
Normal file
@@ -0,0 +1,165 @@
|
|||||||
|
package burp.yaml;
|
||||||
|
|
||||||
|
import burp.Config;
|
||||||
|
import burp.yaml.template.*;
|
||||||
|
|
||||||
|
import java.io.*;
|
||||||
|
import java.nio.charset.StandardCharsets;
|
||||||
|
import java.util.HashMap;
|
||||||
|
import java.util.Map;
|
||||||
|
import java.util.ArrayList;
|
||||||
|
|
||||||
|
import org.yaml.snakeyaml.Yaml;
|
||||||
|
import org.yaml.snakeyaml.constructor.Constructor;
|
||||||
|
import org.yaml.snakeyaml.DumperOptions;
|
||||||
|
import org.yaml.snakeyaml.representer.Representer;
|
||||||
|
import org.yaml.snakeyaml.nodes.Tag;
|
||||||
|
|
||||||
|
public class LoadConfig {
|
||||||
|
private static final Yaml yaml = new Yaml();
|
||||||
|
private static final String SettingPath = "Setting.yml";
|
||||||
|
private static final String ConfigPath = "Config.yml";
|
||||||
|
|
||||||
|
public LoadConfig() {
|
||||||
|
// 构造函数,初始化配置
|
||||||
|
File yamlSetting = new File(SettingPath);
|
||||||
|
if (!(yamlSetting.exists() && yamlSetting.isFile())) {
|
||||||
|
initSetting();
|
||||||
|
initRules();
|
||||||
|
}
|
||||||
|
Config.ruleConfig = LoadConfig.getRules();
|
||||||
|
}
|
||||||
|
|
||||||
|
// 初始化设置信息
|
||||||
|
public void initSetting() {
|
||||||
|
Map<String, Object> r = new HashMap<>();
|
||||||
|
r.put("configPath", ConfigPath);
|
||||||
|
r.put("excludeSuffix", getExcludeSuffix());
|
||||||
|
try {
|
||||||
|
Writer ws = new OutputStreamWriter(new FileOutputStream(SettingPath), StandardCharsets.UTF_8);
|
||||||
|
yaml.dump(r, ws);
|
||||||
|
} catch (Exception ex) {
|
||||||
|
ex.printStackTrace();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 初始化规则配置
|
||||||
|
public void initRules() {
|
||||||
|
Rule rule = new Rule();
|
||||||
|
rule.setLoaded(true);
|
||||||
|
rule.setName("Email");
|
||||||
|
rule.setColor("yellow");
|
||||||
|
rule.setEngine("nfa");
|
||||||
|
rule.setScope("response");
|
||||||
|
rule.setRegex("(([a-zA-Z0-9][_|\\.])*[a-zA-Z0-9]+@([a-zA-Z0-9][-|_|\\.])*[a-zA-Z0-9]+\\.((?!js|css|jpg|jpeg|png|ico)[a-zA-Z]{2,}))");
|
||||||
|
Rules rules = new Rules();
|
||||||
|
rules.setType("Basic Information");
|
||||||
|
ArrayList<Rule> rl = new ArrayList<>();
|
||||||
|
rl.add(rule);
|
||||||
|
rules.setRule(rl);
|
||||||
|
ArrayList<Rules> rls = new ArrayList<>();
|
||||||
|
rls.add(rules);
|
||||||
|
RulesConfig config = new RulesConfig();
|
||||||
|
config.setRules(rls);
|
||||||
|
|
||||||
|
DumperOptions dop = new DumperOptions();
|
||||||
|
dop.setDefaultFlowStyle(DumperOptions.FlowStyle.BLOCK);
|
||||||
|
Representer representer = new Representer();
|
||||||
|
representer.addClassTag(Config.class, Tag.MAP);
|
||||||
|
|
||||||
|
Yaml yaml = new Yaml(new Constructor(),representer,dop);
|
||||||
|
File f = new File(ConfigPath);
|
||||||
|
try{
|
||||||
|
Writer ws = new OutputStreamWriter(new FileOutputStream(f), StandardCharsets.UTF_8);
|
||||||
|
yaml.dump(config,ws);
|
||||||
|
}catch (Exception ex){
|
||||||
|
ex.printStackTrace();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 获取配置路径
|
||||||
|
public static String getConfigPath(){
|
||||||
|
try {
|
||||||
|
InputStream inorder = new FileInputStream(SettingPath);
|
||||||
|
Map<String,Object> r = yaml.load(inorder);
|
||||||
|
return r.get("configPath").toString();
|
||||||
|
} catch (FileNotFoundException e) {
|
||||||
|
e.printStackTrace();
|
||||||
|
return ConfigPath;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
// 获取不包含的后缀名
|
||||||
|
public String getExcludeSuffix(){
|
||||||
|
String excludeSuffix = "";
|
||||||
|
File yamlSetting = new File(SettingPath);
|
||||||
|
if (yamlSetting.exists() && yamlSetting.isFile()) {
|
||||||
|
try {
|
||||||
|
InputStream inorder = new FileInputStream(SettingPath);
|
||||||
|
Map<String,Object> r = yaml.load(inorder);
|
||||||
|
excludeSuffix = r.get("excludeSuffix").toString();
|
||||||
|
} catch (Exception e) {
|
||||||
|
// e.printStackTrace();
|
||||||
|
excludeSuffix = "";
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
excludeSuffix = Config.excludeSuffix;
|
||||||
|
}
|
||||||
|
return excludeSuffix;
|
||||||
|
}
|
||||||
|
|
||||||
|
// 获取规则配置
|
||||||
|
public static Map<String,Object[][]> getRules(){
|
||||||
|
InputStream inorder = null;
|
||||||
|
{
|
||||||
|
try {
|
||||||
|
inorder = new FileInputStream(getConfigPath());
|
||||||
|
} catch (FileNotFoundException e) {
|
||||||
|
e.printStackTrace();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Yaml yaml = new Yaml(new Constructor(RulesConfig.class));
|
||||||
|
RulesConfig rulesConfig = yaml.loadAs(inorder, RulesConfig.class);
|
||||||
|
Map<String,Object[][]> resRule = new HashMap<>();
|
||||||
|
rulesConfig.rules.forEach(i->{
|
||||||
|
ArrayList<Object[]> data = new ArrayList<>();
|
||||||
|
i.rule.forEach(j->{
|
||||||
|
try {
|
||||||
|
data.add(j.getRuleObject());
|
||||||
|
}catch (Exception e){
|
||||||
|
e.printStackTrace();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
resRule.put(i.getType(), data.toArray(new Object[data.size()][]));
|
||||||
|
});
|
||||||
|
return resRule;
|
||||||
|
}
|
||||||
|
|
||||||
|
// 设置配置路径
|
||||||
|
public void setConfigPath(String filePath){
|
||||||
|
Map<String,Object> r = new HashMap<>();
|
||||||
|
r.put("configPath", filePath);
|
||||||
|
r.put("excludeSuffix", getExcludeSuffix());
|
||||||
|
try{
|
||||||
|
Writer ws = new OutputStreamWriter(new FileOutputStream(SettingPath), StandardCharsets.UTF_8);
|
||||||
|
yaml.dump(r, ws);
|
||||||
|
}catch (Exception ex){
|
||||||
|
ex.printStackTrace();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 设置不包含的后缀名
|
||||||
|
public void setExcludeSuffix(String excludeSuffix){
|
||||||
|
Map<String,Object> r = new HashMap<>();
|
||||||
|
r.put("configPath", getConfigPath());
|
||||||
|
r.put("excludeSuffix", excludeSuffix);
|
||||||
|
try{
|
||||||
|
Writer ws = new OutputStreamWriter(new FileOutputStream(SettingPath), StandardCharsets.UTF_8);
|
||||||
|
yaml.dump(r, ws);
|
||||||
|
}catch (Exception ex){
|
||||||
|
ex.printStackTrace();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -1,89 +0,0 @@
|
|||||||
package burp.yaml;
|
|
||||||
|
|
||||||
import org.jetbrains.annotations.NotNull;
|
|
||||||
import org.yaml.snakeyaml.Yaml;
|
|
||||||
|
|
||||||
import burp.Config;
|
|
||||||
|
|
||||||
import java.io.*;
|
|
||||||
import java.nio.charset.StandardCharsets;
|
|
||||||
import java.util.HashMap;
|
|
||||||
import java.util.Map;
|
|
||||||
|
|
||||||
/*
|
|
||||||
* @author LinChen
|
|
||||||
*/
|
|
||||||
|
|
||||||
public class LoadConfigFile {
|
|
||||||
private static final Yaml yaml = new Yaml();
|
|
||||||
private static final String SettingPath = "Setting.yml";
|
|
||||||
private static final String ConfigPath = "Config.yml";
|
|
||||||
|
|
||||||
public LoadConfigFile(){
|
|
||||||
init();
|
|
||||||
}
|
|
||||||
|
|
||||||
// 初始化配置
|
|
||||||
public void init(){
|
|
||||||
File yamlSetting = new File(SettingPath);
|
|
||||||
if (!(yamlSetting.exists() && yamlSetting.isFile())) {
|
|
||||||
Map<String,Object> r = new HashMap<>();
|
|
||||||
r.put("configPath", ConfigPath);
|
|
||||||
r.put("excludeSuffix", getExcludeSuffix());
|
|
||||||
try{
|
|
||||||
Writer ws = new OutputStreamWriter(new FileOutputStream(SettingPath), StandardCharsets.UTF_8);
|
|
||||||
yaml.dump(r, ws);
|
|
||||||
}catch (Exception ex){
|
|
||||||
ex.printStackTrace();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getExcludeSuffix(){
|
|
||||||
try {
|
|
||||||
InputStream inorder = new FileInputStream(SettingPath);
|
|
||||||
Map<String,Object> r;
|
|
||||||
r = yaml.load(inorder);
|
|
||||||
return r.get("excludeSuffix").toString();
|
|
||||||
} catch (FileNotFoundException e) {
|
|
||||||
e.printStackTrace();
|
|
||||||
return Config.excludeSuffix;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public static String getConfigPath(){
|
|
||||||
try {
|
|
||||||
InputStream inorder = new FileInputStream(SettingPath);
|
|
||||||
Map<String,Object> r;
|
|
||||||
r = yaml.load(inorder);
|
|
||||||
return r.get("configPath").toString();
|
|
||||||
} catch (FileNotFoundException e) {
|
|
||||||
e.printStackTrace();
|
|
||||||
return ConfigPath;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setExcludeSuffix(@NotNull String excludeSuffix){
|
|
||||||
Map<String,Object> r = new HashMap<>();
|
|
||||||
r.put("excludeSuffix", excludeSuffix);
|
|
||||||
r.put("configPath", getConfigPath());
|
|
||||||
try{
|
|
||||||
Writer ws = new OutputStreamWriter(new FileOutputStream(SettingPath), StandardCharsets.UTF_8);
|
|
||||||
yaml.dump(r, ws);
|
|
||||||
}catch (Exception ex){
|
|
||||||
ex.printStackTrace();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setConfigPath(@NotNull String filePath){
|
|
||||||
Map<String,Object> r = new HashMap<>();
|
|
||||||
r.put("configPath", filePath);
|
|
||||||
r.put("excludeSuffix", getExcludeSuffix());
|
|
||||||
try{
|
|
||||||
Writer ws = new OutputStreamWriter(new FileOutputStream(SettingPath), StandardCharsets.UTF_8);
|
|
||||||
yaml.dump(r, ws);
|
|
||||||
}catch (Exception ex){
|
|
||||||
ex.printStackTrace();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,89 +0,0 @@
|
|||||||
package burp.yaml;
|
|
||||||
|
|
||||||
import org.yaml.snakeyaml.Yaml;
|
|
||||||
import org.yaml.snakeyaml.constructor.Constructor;
|
|
||||||
import org.yaml.snakeyaml.DumperOptions;
|
|
||||||
import org.yaml.snakeyaml.representer.Representer;
|
|
||||||
import org.yaml.snakeyaml.nodes.Tag;
|
|
||||||
|
|
||||||
import java.io.*;
|
|
||||||
import java.nio.charset.StandardCharsets;
|
|
||||||
import java.util.ArrayList;
|
|
||||||
import java.util.HashMap;
|
|
||||||
import java.util.Map;
|
|
||||||
|
|
||||||
/*
|
|
||||||
* @author LinChen
|
|
||||||
*/
|
|
||||||
|
|
||||||
public class LoadRule {
|
|
||||||
private static String filePath = "Config.yml";
|
|
||||||
public LoadRule(String configFile){
|
|
||||||
filePath = configFile;
|
|
||||||
init();
|
|
||||||
}
|
|
||||||
|
|
||||||
// 初始化配置
|
|
||||||
public void init(){
|
|
||||||
File yamlFile = new File(filePath);
|
|
||||||
if (!(yamlFile.exists() && yamlFile.isFile())){
|
|
||||||
Rule rule = new Rule();
|
|
||||||
rule.setLoaded(true);
|
|
||||||
rule.setName("Email");
|
|
||||||
rule.setColor("yellow");
|
|
||||||
rule.setEngine("nfa");
|
|
||||||
rule.setScope("response");
|
|
||||||
rule.setRegex("(([a-zA-Z0-9][_|\\.])*[a-zA-Z0-9]+@([a-zA-Z0-9][-|_|\\.])*[a-zA-Z0-9]+\\.((?!js|css|jpg|jpeg|png|ico)[a-zA-Z]{2,}))");
|
|
||||||
Rules rules = new Rules();
|
|
||||||
rules.setType("Basic Information");
|
|
||||||
ArrayList<Rule> rl = new ArrayList<>();
|
|
||||||
rl.add(rule);
|
|
||||||
rules.setRule(rl);
|
|
||||||
ArrayList<Rules> rls = new ArrayList<>();
|
|
||||||
rls.add(rules);
|
|
||||||
Config config = new Config();
|
|
||||||
config.setRules(rls);
|
|
||||||
|
|
||||||
DumperOptions dop = new DumperOptions();
|
|
||||||
dop.setDefaultFlowStyle(DumperOptions.FlowStyle.BLOCK);
|
|
||||||
Representer representer = new Representer();
|
|
||||||
representer.addClassTag(Config.class, Tag.MAP);
|
|
||||||
|
|
||||||
Yaml yaml = new Yaml(new Constructor(),representer,dop);
|
|
||||||
new LoadConfigFile();
|
|
||||||
File f = new File(LoadConfigFile.getConfigPath());
|
|
||||||
try{
|
|
||||||
Writer ws = new OutputStreamWriter(new FileOutputStream(f), StandardCharsets.UTF_8);
|
|
||||||
yaml.dump(config,ws);
|
|
||||||
}catch (Exception ex){
|
|
||||||
ex.printStackTrace();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public static Map<String,Object[][]> getConfig(){
|
|
||||||
InputStream inorder = null;
|
|
||||||
{
|
|
||||||
try {
|
|
||||||
inorder = new FileInputStream(filePath);
|
|
||||||
} catch (FileNotFoundException e) {
|
|
||||||
e.printStackTrace();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Yaml yaml = new Yaml(new Constructor(Config.class));
|
|
||||||
Config plugin = yaml.loadAs(inorder, Config.class);
|
|
||||||
Map<String,Object[][]> config = new HashMap<>();
|
|
||||||
plugin.rules.forEach(i->{
|
|
||||||
ArrayList<Object[]> data = new ArrayList<>();
|
|
||||||
i.rule.forEach(j->{
|
|
||||||
try {
|
|
||||||
data.add(j.getRuleObject());
|
|
||||||
}catch (Exception e){
|
|
||||||
e.printStackTrace();
|
|
||||||
}
|
|
||||||
});
|
|
||||||
config.put(i.getType(), data.toArray(new Object[data.size()][]));
|
|
||||||
});
|
|
||||||
return config;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,18 +1,11 @@
|
|||||||
package burp.yaml;
|
package burp.yaml;
|
||||||
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
import burp.yaml.template.Rules;
|
||||||
|
|
||||||
/*
|
public class RulesConfig {
|
||||||
* @author LinChen
|
|
||||||
*/
|
|
||||||
|
|
||||||
public class Config {
|
|
||||||
public List<Rules> rules;
|
public List<Rules> rules;
|
||||||
|
|
||||||
public List<Rules> getRules() {
|
|
||||||
return rules;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setRules(List<Rules> rules) {
|
public void setRules(List<Rules> rules) {
|
||||||
this.rules = rules;
|
this.rules = rules;
|
||||||
}
|
}
|
||||||
100
src/main/java/burp/yaml/SetConfig.java
Normal file
100
src/main/java/burp/yaml/SetConfig.java
Normal file
@@ -0,0 +1,100 @@
|
|||||||
|
package burp.yaml;
|
||||||
|
|
||||||
|
import burp.Config;
|
||||||
|
import burp.yaml.template.Rule;
|
||||||
|
import burp.yaml.template.Rules;
|
||||||
|
import org.yaml.snakeyaml.DumperOptions;
|
||||||
|
import org.yaml.snakeyaml.Yaml;
|
||||||
|
import org.yaml.snakeyaml.constructor.Constructor;
|
||||||
|
import org.yaml.snakeyaml.nodes.Tag;
|
||||||
|
import org.yaml.snakeyaml.representer.Representer;
|
||||||
|
|
||||||
|
import java.io.File;
|
||||||
|
import java.io.FileOutputStream;
|
||||||
|
import java.io.OutputStreamWriter;
|
||||||
|
import java.io.Writer;
|
||||||
|
import java.nio.charset.StandardCharsets;
|
||||||
|
import java.util.*;
|
||||||
|
|
||||||
|
public class SetConfig {
|
||||||
|
|
||||||
|
public void format() {
|
||||||
|
DumperOptions dop = new DumperOptions();
|
||||||
|
dop.setDefaultFlowStyle(DumperOptions.FlowStyle.BLOCK);
|
||||||
|
Representer representer = new Representer();
|
||||||
|
representer.addClassTag(RulesConfig.class, Tag.MAP);
|
||||||
|
Yaml yaml = new Yaml(new Constructor(), representer, dop);
|
||||||
|
RulesConfig con = new RulesConfig();
|
||||||
|
List<Rules> rls = new ArrayList<>();
|
||||||
|
|
||||||
|
Config.ruleConfig.keySet().forEach(i->
|
||||||
|
{
|
||||||
|
Rules rlsTmp = new Rules();
|
||||||
|
rlsTmp.setType(i);
|
||||||
|
List<Rule> rl = new ArrayList<>();
|
||||||
|
for (Object[] objects : Config.ruleConfig.get(i)) {
|
||||||
|
Rule rlTmp = new Rule();
|
||||||
|
rlTmp.setName((String) objects[1]);
|
||||||
|
rlTmp.setLoaded((Boolean) objects[0]);
|
||||||
|
rlTmp.setRegex((String) objects[2]);
|
||||||
|
rlTmp.setColor((String) objects[3]);
|
||||||
|
rlTmp.setScope((String) objects[4]);
|
||||||
|
rlTmp.setEngine((String) objects[5]);
|
||||||
|
rl.add(rlTmp);
|
||||||
|
}
|
||||||
|
rlsTmp.setRule(rl);
|
||||||
|
rls.add(rlsTmp);
|
||||||
|
});
|
||||||
|
con.setRules(rls);
|
||||||
|
File f = new File(LoadConfig.getConfigPath());
|
||||||
|
try{
|
||||||
|
Writer ws = new OutputStreamWriter(new FileOutputStream(f), StandardCharsets.UTF_8);
|
||||||
|
yaml.dump(con,ws);
|
||||||
|
}catch (Exception ex){
|
||||||
|
ex.printStackTrace();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public void edit(Vector data, int select, String type) {
|
||||||
|
Config.ruleConfig.get(type)[select] = data.toArray();
|
||||||
|
this.format();
|
||||||
|
}
|
||||||
|
|
||||||
|
public void add(Vector data, String type) {
|
||||||
|
ArrayList<Object[]> x = new ArrayList<>(Arrays.asList(Config.ruleConfig.get(type)));
|
||||||
|
x.add(data.toArray());
|
||||||
|
Config.ruleConfig.put(type,x.toArray(new Object[x.size()][]));
|
||||||
|
this.format();
|
||||||
|
}
|
||||||
|
public void remove(int select,String type) {
|
||||||
|
ArrayList<Object[]> x = new ArrayList<>(Arrays.asList(Config.ruleConfig.get(type)));
|
||||||
|
x.remove(select);
|
||||||
|
Config.ruleConfig.put(type,x.toArray(new Object[x.size()][]));
|
||||||
|
this.format();
|
||||||
|
}
|
||||||
|
|
||||||
|
public void rename(String oldName, String newName) {
|
||||||
|
Config.ruleConfig.put(newName, Config.ruleConfig.remove(oldName));
|
||||||
|
this.format();
|
||||||
|
}
|
||||||
|
|
||||||
|
public void deleteRules(String Rules) {
|
||||||
|
Config.ruleConfig.remove(Rules);
|
||||||
|
this.format();
|
||||||
|
}
|
||||||
|
public String newRules() {
|
||||||
|
int i = 0;
|
||||||
|
String name = "New ";
|
||||||
|
Object[][] data = new Object[][]{
|
||||||
|
{
|
||||||
|
false, "New Name", "(New Regex)", "gray", "any", "nfa"
|
||||||
|
}
|
||||||
|
};
|
||||||
|
while (Config.ruleConfig.containsKey(name + i)) {
|
||||||
|
i++;
|
||||||
|
}
|
||||||
|
Config.ruleConfig.put(name + i, data);
|
||||||
|
this.format();
|
||||||
|
return name + i;
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,109 +0,0 @@
|
|||||||
package burp.yaml;
|
|
||||||
|
|
||||||
import org.yaml.snakeyaml.DumperOptions;
|
|
||||||
import org.yaml.snakeyaml.Yaml;
|
|
||||||
import org.yaml.snakeyaml.constructor.Constructor;
|
|
||||||
import org.yaml.snakeyaml.nodes.Tag;
|
|
||||||
import org.yaml.snakeyaml.representer.Representer;
|
|
||||||
|
|
||||||
import java.io.File;
|
|
||||||
import java.io.FileOutputStream;
|
|
||||||
import java.io.OutputStreamWriter;
|
|
||||||
import java.io.Writer;
|
|
||||||
import java.util.*;
|
|
||||||
|
|
||||||
public class SetRuleConfig {
|
|
||||||
private static Yaml yaml;
|
|
||||||
private static LoadConfigFile loadfile;
|
|
||||||
private static LoadRule lr;
|
|
||||||
private Map<String,Object[][]> config = lr.getConfig();
|
|
||||||
public void format(){
|
|
||||||
DumperOptions dop = new DumperOptions();
|
|
||||||
dop.setDefaultFlowStyle(DumperOptions.FlowStyle.BLOCK);
|
|
||||||
Representer representer = new Representer();
|
|
||||||
representer.addClassTag(Config.class, Tag.MAP);
|
|
||||||
yaml = new Yaml(new Constructor(),representer,dop);
|
|
||||||
Config con = new Config();
|
|
||||||
List<Rules> rls = new ArrayList<>();
|
|
||||||
|
|
||||||
config.keySet().forEach(i->
|
|
||||||
{
|
|
||||||
Rules rlstmp = new Rules();
|
|
||||||
rlstmp.setType(i);
|
|
||||||
List<Rule> rl = new ArrayList<>();
|
|
||||||
for (Object[] objects : config.get(i)) {
|
|
||||||
Rule rltmp = new Rule();
|
|
||||||
rltmp.setName((String) objects[1]);
|
|
||||||
rltmp.setLoaded((Boolean) objects[0]);
|
|
||||||
rltmp.setRegex((String) objects[2]);
|
|
||||||
rltmp.setColor((String) objects[3]);
|
|
||||||
rltmp.setScope((String) objects[4]);
|
|
||||||
rltmp.setEngine((String) objects[5]);
|
|
||||||
rl.add(rltmp);
|
|
||||||
}
|
|
||||||
rlstmp.setRule(rl);
|
|
||||||
rls.add(rlstmp);
|
|
||||||
});
|
|
||||||
con.setRules(rls);
|
|
||||||
File f = new File(loadfile.getConfigPath());
|
|
||||||
try{
|
|
||||||
Writer ws = new OutputStreamWriter(new FileOutputStream(f),"UTF-8");
|
|
||||||
yaml.dump(con,ws);
|
|
||||||
}catch (Exception ex){
|
|
||||||
ex.printStackTrace();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
public void edit(Vector data,int select, String type){
|
|
||||||
loadfile = new LoadConfigFile();
|
|
||||||
lr = new LoadRule(loadfile.getConfigPath());
|
|
||||||
config = lr.getConfig();
|
|
||||||
config.get(type)[select] = data.toArray();
|
|
||||||
this.format();
|
|
||||||
}
|
|
||||||
public void add(Vector data,String type){
|
|
||||||
loadfile = new LoadConfigFile();
|
|
||||||
lr = new LoadRule(loadfile.getConfigPath());
|
|
||||||
config = lr.getConfig();
|
|
||||||
ArrayList<Object[]> x = new ArrayList<Object[]>(Arrays.asList(config.get(type)));
|
|
||||||
x.add(data.toArray());
|
|
||||||
config.put(type,x.toArray(new Object[x.size()][]));
|
|
||||||
this.format();
|
|
||||||
}
|
|
||||||
public void remove(int select,String type){
|
|
||||||
loadfile = new LoadConfigFile();
|
|
||||||
lr = new LoadRule(loadfile.getConfigPath());
|
|
||||||
config = lr.getConfig();
|
|
||||||
ArrayList<Object[]> x = new ArrayList<Object[]>(Arrays.asList(config.get(type)));
|
|
||||||
x.remove(select);
|
|
||||||
config.put(type,x.toArray(new Object[x.size()][]));
|
|
||||||
this.format();
|
|
||||||
}
|
|
||||||
public void rename(String oldname,String newname){
|
|
||||||
loadfile = new LoadConfigFile();
|
|
||||||
lr = new LoadRule(loadfile.getConfigPath());
|
|
||||||
config = lr.getConfig();
|
|
||||||
config.put(newname,config.remove(oldname));
|
|
||||||
this.format();
|
|
||||||
}
|
|
||||||
public void deleteRules(String Rules){
|
|
||||||
loadfile = new LoadConfigFile();
|
|
||||||
lr = new LoadRule(loadfile.getConfigPath());
|
|
||||||
config = lr.getConfig();
|
|
||||||
config.remove(Rules);
|
|
||||||
this.format();
|
|
||||||
}
|
|
||||||
public String newRules(){
|
|
||||||
int i = 0;
|
|
||||||
loadfile = new LoadConfigFile();
|
|
||||||
lr = new LoadRule(loadfile.getConfigPath());
|
|
||||||
config = lr.getConfig();
|
|
||||||
String name = "New ";
|
|
||||||
Object[][] data = new Object[][]{{false, "New Name", "(New Regex)", "gray", "any", "nfa"}};
|
|
||||||
while (config.containsKey(name+i)){
|
|
||||||
i++;
|
|
||||||
}
|
|
||||||
config.put(name+i,data);
|
|
||||||
this.format();
|
|
||||||
return name+i;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,9 +1,9 @@
|
|||||||
package burp.yaml;
|
package burp.yaml.template;
|
||||||
|
|
||||||
import java.util.HashMap;
|
import java.util.HashMap;
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
|
|
||||||
/*
|
/**
|
||||||
* @author LinChen
|
* @author LinChen
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@@ -62,20 +62,23 @@ public class Rule {
|
|||||||
public void setScope(String scope) {
|
public void setScope(String scope) {
|
||||||
this.Scope = scope;
|
this.Scope = scope;
|
||||||
}
|
}
|
||||||
public Object[] getRuleObject(){
|
|
||||||
return new Object[]{Loaded, Name, Regex, Color, Scope, Engine};
|
public Object[] getRuleObject() {
|
||||||
|
return new Object[] { Loaded, Name, Regex, Color, Scope, Engine };
|
||||||
}
|
}
|
||||||
public Map<String,Object> getRuleObjMap(){
|
|
||||||
|
public Map<String, Object> getRuleObjMap(){
|
||||||
Map<String,Object> r = new HashMap<>();
|
Map<String,Object> r = new HashMap<>();
|
||||||
r.put("Loaded",Loaded);
|
r.put("Loaded", Loaded);
|
||||||
r.put("Name",Name);
|
r.put("Name", Name);
|
||||||
r.put("Regex",Regex);
|
r.put("Regex", Regex);
|
||||||
r.put("Color",Color);
|
r.put("Color", Color);
|
||||||
r.put("Scope",Scope);
|
r.put("Scope", Scope);
|
||||||
r.put("Engine",Engine);
|
r.put("Engine", Engine);
|
||||||
return r;
|
return r;
|
||||||
}
|
}
|
||||||
public String toString(){
|
|
||||||
return "{ \nLoaded: "+Loaded+"\nName: "+Name+"\nRegex: "+Regex+"\nColor: "+Color+"\nScope: "+Scope+"\nEngine: "+Engine+"\n}";
|
public String toString() {
|
||||||
|
return "{ \nLoaded: " + Loaded + "\nName: " + Name + "\nRegex: " + Regex + "\nColor: " + Color + "\nScope: " + Scope + "\nEngine: " + Engine + "\n}";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -1,8 +1,10 @@
|
|||||||
package burp.yaml;
|
package burp.yaml.template;
|
||||||
|
|
||||||
|
import burp.yaml.template.Rule;
|
||||||
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
/*
|
/**
|
||||||
* @author LinChen
|
* @author LinChen
|
||||||
*/
|
*/
|
||||||
|
|
||||||
Reference in New Issue
Block a user