Skip to content

Commit

Permalink
fixed bug in replacement of messages in burp
Browse files Browse the repository at this point in the history
  • Loading branch information
mattebit committed Sep 1, 2023
1 parent a05683c commit 5f81896
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tool/src/main/java/migt/BurpExtender.java
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ private void processMatchedMsg(MessageType msg_type,
// if message has been edited inside operation update the value
try {
if (mainPane.act_active_op.processed_message != null) {
if (msg_type.isRequest) {
if (msg_type.msg_to_process_is_request) {
messageInfo.setRequest(mainPane.act_active_op.processed_message);
} else {
messageInfo.setResponse(mainPane.act_active_op.processed_message);
Expand Down

0 comments on commit 5f81896

Please sign in to comment.