Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
6014089594 | ||
|
|
910658f2e0 | ||
|
|
8692b0a494 |
4
.github/ISSUE_TEMPLATE/问题反馈.md
vendored
4
.github/ISSUE_TEMPLATE/问题反馈.md
vendored
@@ -14,7 +14,9 @@ HaE 版本:
|
|||||||
有无自定义规则:
|
有无自定义规则:
|
||||||
BurpSuite 版本:
|
BurpSuite 版本:
|
||||||
操作系统版本:
|
操作系统版本:
|
||||||
有无仔细阅读README:
|
是否阅读README:
|
||||||
|
是否知晓注意事项:
|
||||||
|
是否查阅历史ISSUE:
|
||||||
```
|
```
|
||||||
|
|
||||||
## 问题详情
|
## 问题详情
|
||||||
|
|||||||
Binary file not shown.
|
Before Width: | Height: | Size: 320 KiB After Width: | Height: | Size: 187 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 331 KiB After Width: | Height: | Size: 318 KiB |
@@ -18,7 +18,7 @@ public class HaE implements BurpExtension {
|
|||||||
@Override
|
@Override
|
||||||
public void initialize(MontoyaApi api) {
|
public void initialize(MontoyaApi api) {
|
||||||
// 设置扩展名称
|
// 设置扩展名称
|
||||||
String version = "3.3.3";
|
String version = "3.3.4";
|
||||||
api.extension().setName(String.format("HaE (%s) - Highlighter and Extractor", version));
|
api.extension().setName(String.format("HaE (%s) - Highlighter and Extractor", version));
|
||||||
|
|
||||||
// 加载扩展后输出的项目信息
|
// 加载扩展后输出的项目信息
|
||||||
|
|||||||
@@ -73,10 +73,6 @@ public class Datatable extends JPanel {
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
dataTable.setRowSorter(sorter);
|
|
||||||
TableColumn idColumn = dataTable.getColumnModel().getColumn(0);
|
|
||||||
idColumn.setMaxWidth(50);
|
|
||||||
|
|
||||||
for (String item : dataList) {
|
for (String item : dataList) {
|
||||||
if (!item.isEmpty()) {
|
if (!item.isEmpty()) {
|
||||||
addRowToTable(new Object[]{item});
|
addRowToTable(new Object[]{item});
|
||||||
@@ -125,6 +121,11 @@ public class Datatable extends JPanel {
|
|||||||
JScrollPane scrollPane = new JScrollPane(dataTable);
|
JScrollPane scrollPane = new JScrollPane(dataTable);
|
||||||
scrollPane.setVerticalScrollBarPolicy(ScrollPaneConstants.VERTICAL_SCROLLBAR_ALWAYS);
|
scrollPane.setVerticalScrollBarPolicy(ScrollPaneConstants.VERTICAL_SCROLLBAR_ALWAYS);
|
||||||
|
|
||||||
|
dataTable.setRowSorter(sorter);
|
||||||
|
TableColumn idColumn = dataTable.getColumnModel().getColumn(0);
|
||||||
|
idColumn.setPreferredWidth(50);
|
||||||
|
idColumn.setMaxWidth(100);
|
||||||
|
|
||||||
setLayout(new BorderLayout(0, 5));
|
setLayout(new BorderLayout(0, 5));
|
||||||
|
|
||||||
JPanel optionsPanel = new JPanel();
|
JPanel optionsPanel = new JPanel();
|
||||||
|
|||||||
Reference in New Issue
Block a user