Skip to content

Commit

Permalink
新增base64提交复杂数据
Browse files Browse the repository at this point in the history
  • Loading branch information
kN6jq committed Aug 8, 2023
1 parent 3f5e11d commit aab34c7
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/main/java/burp/BurpExtender.java
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,6 @@ public void processHttpMessage(int toolFlag, boolean messageIsRequest, IHttpRequ
if (toolFlag == IBurpExtenderCallbacks.TOOL_REPEATER && messageIsRequest){
byte[] request = messageInfo.getRequest();
String requestStr = helpers.bytesToString(request);
Utils.stdout.println(requestStr);
if (requestStr.contains("<datab64>")){
String data = requestStr.substring(requestStr.indexOf("<datab64>")+9,requestStr.indexOf("</datab64>"));
byte[] decodedData = Base64.getDecoder().decode(data);
Expand Down

0 comments on commit aab34c7

Please sign in to comment.