I've got a network protocol that uses BSON over TLS, and I'd like to dissect the BSON. I can decrypt the TLS session correctly, but the only protocol option I can use successfully is "data", which displays just the hex. Is there a BSON dissector that I can use to decrypt the "Application Data" inside a TLS session? asked 20 Nov '13, 12:16 Roger Lipscombe |
One Answer:
Yes and No. There is a BSON dissector, however it's (only) part of the dissector for the MongoDB wire protocol. So, if you're using BSON directly over TLS, you won't be able to dissect that with Wireshark as it's not structured like the MongoDB wire protocol. If you need a 'generic' BSON dissector these are your options:
Regards answered 20 Nov '13, 16:17 Kurt Knochner ♦ |