protoburp icon indicating copy to clipboard operation
protoburp copied to clipboard

JSON to Protobuf not working

Open fgtester opened this issue 8 months ago • 0 comments

Extender.py is failing to use a few methods, at least for me. I've replaced the following lines and it works.

line 99: body_string = utils.getRequestBody(messageInfo) 
with 
line 99: body_string = utils.getRequestBody(self, messageInfo)

and

line 130: body = self.getResponseBody(messageInfo)
with
line 130:  body = utils.getResponseBody(self, messageInfo)

Nice job on this tool, kudos

fgtester avatar Jun 17 '24 21:06 fgtester