rwinkelmaier

Results 8 comments of rwinkelmaier

Hi! While the main library functions don't do automatic gRPC decoding, you can use the functions in `blackboxprotobuf.lib.payloads` module to do the same decoding. The main payloads modules () has...

No plans at the moment. I don't remember the exact reasons it wasn't included, but likely did not want to over complicate the API or introduce assumptions that might fail....

Could you clarify on what use case you are looking for? Do you want to have an all-in-one function which decodes gRPC messages, or something that mimics the burp extensions...

I put together a couple functions in a PR: https://github.com/nccgroup/blackboxprotobuf/pull/47. I can't merge into the main branch or push new versions to pypi at the moment, but let me know...

Thanks for taking a look. Good catch on the bugs. I was expecting mypy to catch an incorrect return type, but apparently mypy allows them to be switched "for convenience"....

Hi! This looks like an edge case where the bytes for "image.png" is also a valid protobuf message. At the moment, if a length delimited field is both a valid...

Hi! Unfortunately the proto file parser is mostly a series of regexes and not real protobuf definition parser, so it will probably fail on any non-simple protobuf definitions. That being...

Hi! The `seen_repeated` field is primarily so that BBPB can track which fields might be repeated so it can be tagged correctly in a proto file export. BBPB will handle...