Compare commits

..

5 Commits
2.4.2 ... 2.4.5

Author SHA1 Message Date
AnonymousUser
df4496d4fd Version: 2.4.5 Update 2022-12-18 16:12:16 +08:00
AnonymousUser
48e355ac54 Update 2022-12-18 15:09:28 +08:00
AnonymousUser
b784aa1425 Version: 2.4.4 Update 2022-09-26 18:49:35 +08:00
AnonymousUser
440b3b1504 Version: 2.4.3 Update 2022-09-20 10:33:00 +08:00
ᴋᴇʏ
a8f1798c7b Update README.md 2022-07-25 10:56:33 +08:00
8 changed files with 112 additions and 35 deletions

View File

@@ -21,7 +21,7 @@
![-w477](images/show_config.png) ![-w477](images/show_config.png)
除了初始化的配置文件外,还有`Setting.yml`,该文件用于存储配置文件路径与排除后缀名;`HaE`支持自定义配置文件路径,你可以通过点击`Select File`按钮进行选择自定义配置文件 除了初始化的配置文件外,还有`Setting.yml`,该文件用于存储配置文件路径与排除后缀名;`HaE`支持在线更新配置文件,你可以通过点击`Online Update`按钮进行更新(部分网络需要挂代理)
## 优势特点 ## 优势特点

Binary file not shown.

Before

Width:  |  Height:  |  Size: 82 KiB

After

Width:  |  Height:  |  Size: 55 KiB

View File

@@ -3,8 +3,8 @@ package burp;
import burp.action.*; import burp.action.*;
import burp.ui.MainUI; import burp.ui.MainUI;
import java.util.HashMap;
import java.util.Map; import java.util.Map;
import java.util.Objects;
import javax.swing.*; import javax.swing.*;
import java.awt.*; import java.awt.*;
import java.nio.charset.StandardCharsets; import java.nio.charset.StandardCharsets;
@@ -34,7 +34,7 @@ public class BurpExtender implements IBurpExtender, IHttpListener, IMessageEdito
this.callbacks = callbacks; this.callbacks = callbacks;
BurpExtender.helpers = callbacks.getHelpers(); BurpExtender.helpers = callbacks.getHelpers();
String version = "2.4.2"; String version = "2.4.5";
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);
@@ -102,8 +102,9 @@ public class BurpExtender implements IBurpExtender, IHttpListener, IMessageEdito
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).get("comment")); String addComment = String.join(", ", result.get(1).get("comment"));
String resComment = originalComment != null ? String.format("%s, %s", originalComment, addComment) : addComment; String resComment = !Objects.equals(originalComment, "") ? String.format("%s, %s", originalComment, addComment) : addComment;
messageInfo.setComment(resComment); messageInfo.setComment(resComment);
} }
@@ -142,6 +143,7 @@ public class BurpExtender implements IBurpExtender, IHttpListener, IMessageEdito
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<Map<String, String>> result = pm.processMessageByContent(helpers, 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); Map<String, String> dataMap = result.get(0);
if (isRequest) { if (isRequest) {

View File

@@ -13,6 +13,8 @@ public class Config {
public static String[] scopeArray = new String[] { public static String[] scopeArray = new String[] {
"any", "any",
"any header",
"any body",
"response", "response",
"response header", "response header",
"response body", "response body",

View File

@@ -33,23 +33,25 @@ public class ExtractContent {
String engine = objects[5].toString(); String engine = objects[5].toString();
boolean sensitive = (Boolean) objects[6]; boolean sensitive = (Boolean) objects[6];
// 判断规则是否开启与作用域 // 判断规则是否开启与作用域
if (loaded && (scope.contains(scopeString) || "any".equals(scope))) { if (loaded && (scope.contains(scopeString) || scope.contains("any"))) {
switch (scope) { switch (scope) {
case "any": case "any":
case "request": case "request":
case "response": case "response":
matchContent = new String(content, StandardCharsets.UTF_8).intern(); matchContent = new String(content, StandardCharsets.UTF_8).intern();
break; break;
case "any header":
case "request header": case "request header":
case "response header": case "response header":
matchContent = headers; matchContent = headers;
break; break;
case "any body":
case "request body": case "request body":
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: default:
break; return;
} }
if ("nfa".equals(engine)) { if ("nfa".equals(engine)) {
@@ -99,15 +101,16 @@ public class ExtractContent {
map.keySet().forEach(i -> { map.keySet().forEach(i -> {
Map<String, Object> tmpMap = map.get(i); Map<String, Object> tmpMap = map.get(i);
List<String> dataList = Arrays.asList(tmpMap.get("data").toString().split("\n")); List<String> dataList = Arrays.asList(tmpMap.get("data").toString().split("\n"));
// 组合通配符Host
String anyHost = host.replace(host.split("\\.")[0], "*");
// 判断Host是否存在如存在则进行数据更新反之则新增数据 // 判断Host是否存在如存在则进行数据更新反之则新增数据
if (Config.globalDataMap.containsKey(host)) { if (Config.globalDataMap.containsKey(host)) {
Map<String, List<String>> gRuleMap = Config.globalDataMap.get(host); Map<String, List<String>> gRuleMap = Config.globalDataMap.get(host);
// 判断匹配规则是否存在逻辑同Host判断 // 判断匹配规则是否存在逻辑同Host判断
if (gRuleMap.containsKey(i)) { if (gRuleMap.containsKey(i)) {
List<String> gDataList = gRuleMap.get(i); List<String> gDataList = gRuleMap.get(i);
List<String> mergeDataList = new ArrayList<>(); List<String> mergeDataList = new ArrayList<>(gDataList);
// 合并两个List // 合并两个List
mergeDataList.addAll(gDataList);
mergeDataList.addAll(dataList); mergeDataList.addAll(dataList);
// 去重操作 // 去重操作
HashSet tmpList = new HashSet(mergeDataList); HashSet tmpList = new HashSet(mergeDataList);
@@ -118,9 +121,14 @@ public class ExtractContent {
} else { } else {
gRuleMap.put(i, dataList); gRuleMap.put(i, dataList);
} }
} else { } else if (!Config.globalDataMap.containsKey(anyHost)) {
// 添加通配符Host
Config.globalDataMap.put(anyHost, new HashMap<>());
}
else {
Map<String, List<String>> ruleMap = new HashMap<>(); Map<String, List<String>> ruleMap = new HashMap<>();
ruleMap.put(i, dataList); ruleMap.put(i, dataList);
// 添加单一Host
Config.globalDataMap.put(host, ruleMap); Config.globalDataMap.put(host, ruleMap);
} }
}); });

View File

@@ -1,5 +1,6 @@
package burp.action; package burp.action;
import burp.BurpExtender;
import burp.IExtensionHelpers; import burp.IExtensionHelpers;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.Arrays; import java.util.Arrays;

View File

@@ -1,6 +1,8 @@
package burp.ui; package burp.ui;
import burp.Config; import burp.Config;
import java.util.HashMap;
import java.util.HashSet;
import java.util.List; import java.util.List;
import javax.swing.table.DefaultTableModel; import javax.swing.table.DefaultTableModel;
import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.NotNull;
@@ -14,7 +16,7 @@ import javax.swing.event.DocumentEvent;
import javax.swing.event.DocumentListener; import javax.swing.event.DocumentListener;
/** /**
* @author LinChen * @author LinChen && EvilChen
*/ */
public class Databoard extends JPanel { public class Databoard extends JPanel {
@@ -22,11 +24,33 @@ public class Databoard extends JPanel {
initComponents(); initComponents();
} }
/**
* 清空数据
*/
private void clearActionPerformed(ActionEvent e) {
// 清空页面
dataTabbedPane.removeAll();
// 判断通配符Host/单一Host
String host = hostTextField.getText();
if(host.contains("*")){
Map<String, Map<String, List<String>>> ruleMap = Config.globalDataMap;
Map<String, List<String>> selectHost = new HashMap<>();
ruleMap.keySet().forEach(i -> {
if (i.contains(host.replace("*.", ""))) {
Config.globalDataMap.remove(i);
}
});
} else {
Config.globalDataMap.remove(host);
}
}
private void initComponents() { private void initComponents() {
// JFormDesigner - Component initialization - DO NOT MODIFY //GEN-BEGIN:initComponents // JFormDesigner - Component initialization - DO NOT MODIFY //GEN-BEGIN:initComponents
hostLabel = new JLabel(); hostLabel = new JLabel();
hostTextField = new JTextField(); hostTextField = new JTextField();
dataTabbedPane = new JTabbedPane(); dataTabbedPane = new JTabbedPane();
clearButton = new JButton();
//======== this ======== //======== this ========
setLayout(new GridBagLayout()); setLayout(new GridBagLayout());
@@ -43,7 +67,11 @@ public class Databoard extends JPanel {
add(hostTextField, new GridBagConstraints(2, 0, 1, 1, 0.0, 0.0, add(hostTextField, new GridBagConstraints(2, 0, 1, 1, 0.0, 0.0,
GridBagConstraints.CENTER, GridBagConstraints.BOTH, GridBagConstraints.CENTER, GridBagConstraints.BOTH,
new Insets(8, 0, 5, 5), 0, 0)); new Insets(8, 0, 5, 5), 0, 0));
clearButton.setText("Clear");
clearButton.addActionListener(this::clearActionPerformed);
add(clearButton, new GridBagConstraints(3, 0, 1, 1, 0.0, 0.0,
GridBagConstraints.CENTER, GridBagConstraints.BOTH,
new Insets(8, 0, 5, 5), 0, 0));
add(dataTabbedPane, new GridBagConstraints(1, 1, 3, 2, 0.0, 0.0, add(dataTabbedPane, new GridBagConstraints(1, 1, 3, 2, 0.0, 0.0,
GridBagConstraints.CENTER, GridBagConstraints.BOTH, GridBagConstraints.CENTER, GridBagConstraints.BOTH,
new Insets(8, 0, 0, 5), 0, 0)); new Insets(8, 0, 0, 5), 0, 0));
@@ -56,9 +84,7 @@ public class Databoard extends JPanel {
*/ */
private static List<String> getHostByList(){ private static List<String> getHostByList(){
List<String> hostList = new ArrayList<>(); List<String> hostList = new ArrayList<>();
Config.globalDataMap.keySet().forEach(i -> { hostList.addAll(Config.globalDataMap.keySet());
hostList.add(i);
});
return hostList; return hostList;
} }
@@ -143,10 +169,15 @@ public class Databoard extends JPanel {
if (!input.isEmpty()){ if (!input.isEmpty()){
for (String host : getHostByList()) { for (String host : getHostByList()) {
if (host.toLowerCase().contains(input.toLowerCase())) { if (host.toLowerCase().contains(input.toLowerCase())) {
if (host.length() == input.length()){
comboBoxModel.insertElementAt(host,0);
comboBoxModel.setSelectedItem(host);
}else{
comboBoxModel.addElement(host); comboBoxModel.addElement(host);
} }
} }
} }
}
hostComboBox.setPopupVisible(comboBoxModel.getSize() > 0); hostComboBox.setPopupVisible(comboBoxModel.getSize() > 0);
isMatchHost = false; isMatchHost = false;
} }
@@ -159,9 +190,36 @@ public class Databoard extends JPanel {
private static void getInfoByHost(@NotNull JComboBox hostComboBox, JTabbedPane tabbedPane, JTextField textField) { private static void getInfoByHost(@NotNull JComboBox hostComboBox, JTabbedPane tabbedPane, JTextField textField) {
if (hostComboBox.getSelectedItem() != null) { if (hostComboBox.getSelectedItem() != null) {
Map<String, Map<String, List<String>>> ruleMap = Config.globalDataMap; Map<String, Map<String, List<String>>> ruleMap = Config.globalDataMap;
Map<String, List<String>> selectUrl = ruleMap.get(hostComboBox.getSelectedItem()); Map<String, List<String>> selectHost = new HashMap<>();
String host = hostComboBox.getSelectedItem().toString();
if (host.contains("*")) {
// 通配符数据
Map<String, List<String>> finalSelectHost = selectHost;
ruleMap.keySet().forEach(i -> {
if (i.contains(host.replace("*.", ""))) {
ruleMap.get(i).keySet().forEach(e -> {
if (finalSelectHost.containsKey(e)) {
// 合并操作
List<String> newList = new ArrayList<>(finalSelectHost.get(e));
newList.addAll(ruleMap.get(i).get(e));
// 去重操作
HashSet tmpList = new HashSet(newList);
newList.clear();
newList.addAll(tmpList);
// 添加操作
finalSelectHost.put(e, newList);
} else {
finalSelectHost.put(e, ruleMap.get(i).get(e));
}
});
}
});
} else {
selectHost = ruleMap.get(host);
}
tabbedPane.removeAll(); tabbedPane.removeAll();
for(Map.Entry<String, List<String>> entry: selectUrl.entrySet()){ for(Map.Entry<String, List<String>> entry: selectHost.entrySet()){
tabbedPane.addTab(entry.getKey(), new JScrollPane(new HitRuleDataList(entry.getValue()))); tabbedPane.addTab(entry.getKey(), new JScrollPane(new HitRuleDataList(entry.getValue())));
} }
textField.setText(hostComboBox.getSelectedItem().toString()); textField.setText(hostComboBox.getSelectedItem().toString());
@@ -172,6 +230,7 @@ public class Databoard extends JPanel {
private JLabel hostLabel; private JLabel hostLabel;
private JTextField hostTextField; private JTextField hostTextField;
private JTabbedPane dataTabbedPane; private JTabbedPane dataTabbedPane;
private JButton clearButton;
// JFormDesigner - End of variables declaration //GEN-END:variables // JFormDesigner - End of variables declaration //GEN-END:variables
// 是否自动匹配Host // 是否自动匹配Host

View File

@@ -18,7 +18,7 @@ import java.awt.event.*;
import java.util.Map; import java.util.Map;
/** /**
* @author LinChen * @author LinChen && EvilChen
*/ */
public class MainUI extends JPanel{ public class MainUI extends JPanel{
@@ -45,6 +45,10 @@ public class MainUI extends JPanel{
} }
private void onlineUpdateActionPerformed(ActionEvent e) { private void onlineUpdateActionPerformed(ActionEvent e) {
// 添加提示框防止用户误触导致配置更新
int retCode = JOptionPane.showConfirmDialog(null, "Do you want to update config?", "Info",
JOptionPane.YES_NO_CANCEL_OPTION);
if (retCode == JOptionPane.YES_OPTION) {
String url = "https://raw.githubusercontent.com/gh0stkey/HaE/gh-pages/Config.yml"; String url = "https://raw.githubusercontent.com/gh0stkey/HaE/gh-pages/Config.yml";
OkHttpClient httpClient = new OkHttpClient(); OkHttpClient httpClient = new OkHttpClient();
Request httpRequest = new Request.Builder().url(url).get().build(); Request httpRequest = new Request.Builder().url(url).get().build();
@@ -64,6 +68,7 @@ public class MainUI extends JPanel{
new LoadConfig(); new LoadConfig();
reloadRule(); reloadRule();
} }
}
private void reloadRule(){ private void reloadRule(){
ruleTabbedPane.removeAll(); ruleTabbedPane.removeAll();