Skip to content

Commit 1b4dd4c

Browse files
committedJan 11, 2020
Fixed default context menu entries - show in terminal and output should replace selection do not mix well
1 parent 20d4d49 commit 1b4dd4c

File tree

1 file changed

+13
-13
lines changed
  • burp-send-to-extension/src/main/java/net/bytebutcher/burpsendtoextension/models

1 file changed

+13
-13
lines changed
 

‎burp-send-to-extension/src/main/java/net/bytebutcher/burpsendtoextension/models/Config.java

+13-13
Original file line numberDiff line numberDiff line change
@@ -76,19 +76,19 @@ public List<CommandObject> getDefaultSendToTableData() {
7676
new CommandObject("sslyze", "sslyze --regular %H:%P", groupSSL, true, true, false),
7777
new CommandObject("testssl", "testssl.sh %H:%P", groupSSL, true, true, false),
7878
// other
79-
new CommandObject("Host (%H)", "echo %H", groupOther, true, true, true),
80-
new CommandObject("Port (%P)", "echo %P", groupOther, true, true, true),
81-
new CommandObject("Protocol (%T)", "echo %T", groupOther, true, true, true),
82-
new CommandObject("URL (%U)", "echo %U", groupOther, true, true, true),
83-
new CommandObject("URL Path (%A)", "echo %A", groupOther, true, true, true),
84-
new CommandObject("URL Query (%Q)", "echo %Q", groupOther, true, true, true),
85-
new CommandObject("Cookies (%C)", "echo %C", groupOther, true, true, true),
86-
new CommandObject("HTTP Method (%M)", "echo %M", groupOther, true, true, true),
87-
new CommandObject("Selected text (%S)", "echo %S", groupOther, true, true, true),
88-
new CommandObject("Selected text as file (%F)", "echo %F && cat %F", groupOther, true, true, false),
89-
new CommandObject("Selected request/response as file (%R)", "echo %R && cat %R", groupOther, true, true, false),
90-
new CommandObject("Headers of selected request/response as file (%E)", "echo %E && cat %E", groupOther, true, true, false),
91-
new CommandObject("Body of selected request/response as file (%B)", "echo %B && cat %B", groupOther, true, true, false)
79+
new CommandObject("Host (%H)", "echo %H", groupOther, false, true, true),
80+
new CommandObject("Port (%P)", "echo %P", groupOther, false, true, true),
81+
new CommandObject("Protocol (%T)", "echo %T", groupOther, false, true, true),
82+
new CommandObject("URL (%U)", "echo %U", groupOther, false, true, true),
83+
new CommandObject("URL Path (%A)", "echo %A", groupOther, false, true, true),
84+
new CommandObject("URL Query (%Q)", "echo %Q", groupOther, false, true, true),
85+
new CommandObject("Cookies (%C)", "echo %C", groupOther, false, true, true),
86+
new CommandObject("HTTP Method (%M)", "echo %M", groupOther, false, true, true),
87+
new CommandObject("Selected text (%S)", "echo %S", groupOther, false, true, true),
88+
new CommandObject("Selected text as file (%F)", "echo %F && cat %F", groupOther, false, true, false),
89+
new CommandObject("Selected request/response as file (%R)", "echo %R && cat %R", groupOther, false, true, false),
90+
new CommandObject("Headers of selected request/response as file (%E)", "echo %E && cat %E", groupOther, false, true, false),
91+
new CommandObject("Body of selected request/response as file (%B)", "echo %B && cat %B", groupOther, false, true, false)
9292
);
9393
}
9494

0 commit comments

Comments
 (0)
Please sign in to comment.