Skip to content

Commit

Permalink
Version: 2.4.4 Update
Browse files Browse the repository at this point in the history
  • Loading branch information
AnonymousUser committed Sep 26, 2022
1 parent 440b3b1 commit b784aa1
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/java/burp/BurpExtender.java
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public void registerExtenderCallbacks(final IBurpExtenderCallbacks callbacks)
this.callbacks = callbacks;
BurpExtender.helpers = callbacks.getHelpers();

String version = "2.4.3";
String version = "2.4.4";
callbacks.setExtensionName(String.format("HaE (%s) - Highlighter and Extractor", version));
// 定义输出
stdout = new PrintWriter(callbacks.getStdout(), true);
Expand Down
7 changes: 6 additions & 1 deletion src/main/java/burp/ui/Databoard.java
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,12 @@ private void updateList() {
if (!input.isEmpty()){
for (String host : getHostByList()) {
if (host.toLowerCase().contains(input.toLowerCase())) {
comboBoxModel.addElement(host);
if (host.length() == input.length()){
comboBoxModel.insertElementAt(host,0);
comboBoxModel.setSelectedItem(host);
}else{
comboBoxModel.addElement(host);
}
}
}
}
Expand Down

0 comments on commit b784aa1

Please sign in to comment.