Skip to content

Commit

Permalink
Update utilities version
Browse files Browse the repository at this point in the history
  • Loading branch information
CoreyD97 committed May 18, 2023
1 parent c35cdfe commit 65b3839
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 15 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ repositories {
dependencies {
implementation 'net.portswigger.burp.extensions:montoya-api:2023.3'
implementation 'org.swinglabs:swingx:1.6.1'
implementation 'com.github.CoreyD97:Burp-Montoya-Utilities:07e3e02b'
implementation 'com.github.CoreyD97:Burp-Montoya-Utilities:234d21d'
// implementation 'org.elasticsearch.client:elasticsearch-rest-high-level-client:7.17.9'
implementation 'co.elastic.clients:elasticsearch-java:8.6.2'
implementation 'org.apache.httpcomponents:httpclient:4.5.13'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public MainViewController() {
tabbedPane.addTab("Options", null, loggerPlusPlus.getPreferencesController().getPreferencesPanel(), null);
tabbedPane.addTab("About", null, new AboutPanel(loggerPlusPlus.getPreferencesController().getPreferences()), null);
tabbedPane.addTab("Help", null, new HelpPanel(), null);
this.popOutWrapper = new PopOutPanel(tabbedPane, Globals.APP_NAME);
this.popOutWrapper = new PopOutPanel(LoggerPlusPlus.montoya, tabbedPane, Globals.APP_NAME);
}

public Component getUiComponent() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,8 @@

import com.nccgroup.loggerplusplus.filter.ColorizingFilterRule;
import com.nccgroup.loggerplusplus.filter.FilterExpression;
import com.nccgroup.loggerplusplus.filter.logfilter.LogTableFilter;
import com.nccgroup.loggerplusplus.filter.parser.ParseException;
import com.nccgroup.loggerplusplus.filterlibrary.FilterLibraryController;
import lombok.AccessLevel;
import lombok.Getter;
import org.elasticsearch.common.Table;

import java.awt.*;
import java.util.HashSet;
import java.util.Set;
import java.util.UUID;

/**
* Created by corey on 19/07/17.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

import com.coreyd97.BurpExtenderUtilities.PopOutPanel;
import com.coreyd97.BurpExtenderUtilities.VariableViewPanel;
import com.nccgroup.loggerplusplus.LoggerPlusPlus;
import com.nccgroup.loggerplusplus.util.Globals;

public class RequestViewerPanel extends PopOutPanel {
Expand All @@ -10,7 +11,7 @@ public class RequestViewerPanel extends PopOutPanel {
private final VariableViewPanel variableViewPanel;

public RequestViewerPanel(RequestViewerController controller){
super();
super(LoggerPlusPlus.montoya);
this.controller = controller;

this.variableViewPanel = new VariableViewPanel(controller.getPreferences(), Globals.PREF_MESSAGE_VIEW_LAYOUT,
Expand All @@ -20,7 +21,6 @@ public RequestViewerPanel(RequestViewerController controller){

this.setComponent(variableViewPanel);
this.setTitle("Request/Response Viewer");
//TODO set log view variable panel to Vertical when popped out
}

public VariableViewPanel getVariableViewPanel() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,11 @@ public class LoggerPreferenceFactory extends PreferenceFactory {
private Set<String> defaultBlacklistedReflections;

public LoggerPreferenceFactory(MontoyaApi montoya, IGsonProvider gsonProvider, ILogProvider logProvider){
super(montoya, "LoggerPlusPlus", gsonProvider, logProvider);
super(montoya, gsonProvider, logProvider);
}

public LoggerPreferenceFactory(MontoyaApi montoya, IGsonProvider gsonProvider){
super(montoya, "LoggerPlusPlus", gsonProvider);
super(montoya, gsonProvider);
}

@Override
Expand Down

0 comments on commit 65b3839

Please sign in to comment.