Skip to content

Commit

Permalink
Bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
federicodotta committed Nov 24, 2021
1 parent c9b14ae commit 3648027
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/java/burp/BridaContextMenuPlugin.java
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ public void executeAction() {

if(getCustomPluginFunctionOutput() == CustomPluginFunctionOutputValues.BRIDA) {

getMainPlugin().printSuccessMessage("* Brida exported function " + getCustomPluginExportedFunctionName() + " output: " + ret);
getMainPlugin().printSuccessMessage("* Brida exported function " + getCustomPluginExportedFunctionName() + " output: " + new String(ret));

// DEBUG print
printToExternalDebugFrame("** Output to Brida console\n\n");
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/burp/BridaHttpListenerPlugin.java
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ public void executeBridaFunction(IHttpRequestResponse messageInfo, boolean messa
printToExternalDebugFrame("\n\n");

if(getCustomPluginFunctionOutput() == CustomPluginFunctionOutputValues.BRIDA) {
getMainPlugin().printSuccessMessage("* Brida exported function " + getCustomPluginExportedFunctionName() + " output: " + ret);
getMainPlugin().printSuccessMessage("* Brida exported function " + getCustomPluginExportedFunctionName() + " output: " + new String(ret));

// DEBUG print
printToExternalDebugFrame("** Output to Brida console\n\n");
Expand Down

0 comments on commit 3648027

Please sign in to comment.