Skip to content

Commit

Permalink
Apache Codec update
Browse files Browse the repository at this point in the history
  • Loading branch information
isayan committed Dec 19, 2023
1 parent 5ede20c commit df93c39
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ dependencies {
// https://mvnrepository.com/artifact/net.portswigger.burp.extensions/montoya-api
implementation 'net.portswigger.burp.extensions:montoya-api:2023.12.1'
// https://mvnrepository.com/artifact/commons-codec/commons-codec
implementation 'commons-codec:commons-codec:1.15'
implementation 'commons-codec:commons-codec:1.16.0'
// https://mvnrepository.com/artifact/com.fifesoft/rsyntaxtextarea
implementation 'com.fifesoft:rsyntaxtextarea:3.3.4'

Expand Down
Binary file modified release/YaguraExtension-v3.0.jar
Binary file not shown.
1 change: 0 additions & 1 deletion src/main/java/yagura/view/JReplaceDialog.java
Original file line number Diff line number Diff line change
Expand Up @@ -418,7 +418,6 @@ private void btnImportRuleActionPerformed(java.awt.event.ActionEvent evt) {//GEN
if (JOptionPane.showConfirmDialog(this, BUNDLE.getString("view.replace.burpimport"), "Match and Replace", JOptionPane.YES_NO_OPTION) == JOptionPane.YES_OPTION) {
this.modelReplace.removeAll();
List<BurpConfig.MatchReplaceRule> rules = BurpConfig.getMatchReplaceRules(BurpExtension.api());
BurpExtension.helpers().outPrintln("import:" + rules.size());
for (BurpConfig.MatchReplaceRule rule : rules) {
MatchReplaceItem item = new MatchReplaceItem();
if (Arrays.stream(MatchReplaceItem.getTypes()).anyMatch(s -> s.equalsIgnoreCase(rule.getRuleTypeName()))) {
Expand Down
1 change: 0 additions & 1 deletion src/main/java/yagura/view/JSearchTab.java
Original file line number Diff line number Diff line change
Expand Up @@ -814,7 +814,6 @@ private boolean isValidRegex(String text) {
this.lblProgress.setText(String.format(SEARCH_PROGRESS, (double) i / proxyHistory.size() * 100.0));
} while (false);
if (m != null && find) {
BurpExtender.helpers().outPrintln("row:" + item.getOrdinal());
this.modelSearch.addRow(new ResultView(item, item.getOrdinal()));
}
if (this.cancel) {
Expand Down

0 comments on commit df93c39

Please sign in to comment.