Projects STRLCPY protobuf-decoder Commits 7a63c0f6
🤬
  • Change the name of the tab to match the extension name.

  • Loading...
  • Adam Piper committed 7 years ago
    7a63c0f6
    1 parent dcdb7ceb
  • ■ ■ ■ ■
    README.md
    skipped 37 lines
    38 38   
    39 39  - Can I deserialize protobufs passed as URL or form parameters?
    40 40   
    41  - > Yes, you can. In the 'Protobuf Editor' tab, add a parameter to
     41 + > Yes, you can. In the 'Protobuf Decoder' tab, add a parameter to
    42 42   > the table. You can specify additional pre and post processing
    43 43   > rules, to handle base64 encoding or zlib compression. Don't forget
    44 44   > to check the enabled box for each rule once you're done.
    skipped 16 lines
  • ■ ■ ■ ■ ■ ■
    protoburp.py
    skipped 76 lines
    77 77   
    78 78   
    79 79  class BurpExtender(IBurpExtender, IMessageEditorTabFactory, ITab, IExtensionStateListener):
    80  - EXTENSION_NAME = "Protobuf Editor"
     80 + EXTENSION_NAME = "Protobuf Decoder"
    81 81   
    82 82   def __init__(self):
    83 83   self.descriptors = OrderedDict()
    skipped 158 lines
    242 242   else:
    243 243   body = content[info.getBodyOffset():].tostring()
    244 244   
    245  - # process parameters via rules defined in Protobuf Editor ui tab
     245 + # process parameters via rules defined in Protobuf Decoder ui tab
    246 246   
    247 247   parameter = None
    248 248   
    skipped 302 lines
Please wait...
Page is in error, reload to recover