I built the HttpRequest using buildHttpMessage method and trying to add Cookie and Body param using LegacyBurpExtender.getInstance().getHelpers().buildParameter and addParameter and updateParameter methods and it is not working. Below is the code snippet,
buildRequest = helpers.buildHttpMessage(headers,bodyObject.toString().getBytes());
IParameter testParam = helpers.buildParameter("test","testing",PARAM_BODY); buildRequest = helpers.updateParameter(buildRequest, testParam);
String requestString = LegacyBurpExtender.getInstance().getHelpers().bytesToString(buildRequest);
When I convert bytes to string I dont see new body param. I tried with update Param as well.
↧