[Wireshark-users] LUA support for compressed protocols

2023-05-31 Thread Ariel Burbaickij
Hello community, Wireshark Developers' Guide in section 9.4 provides a rough guideline for C dissector plugin. I am looking for some examples on how to handle compressed protocols (in the specific case -- something V.42bis over TCP inspired) in LUA. Are you aware of any such examples ? Kind Regar

Re: [Wireshark-users] LUA support for compressed protocols

2023-05-31 Thread Maynard, Chris via Wireshark-users
I don’t have any examples to share, but Lua does have support for compressed data in the form of tvbrange:uncompress(name). You could searching at http://wiki.wireshark.org/Lua (as well as the examples and contrib pages) to *possibly* find some examples using it. - Chris Ref: 11.6.3.28. tvbra

Re: [Wireshark-users] LUA support for compressed protocols

2023-05-31 Thread chuck c
http://wiki.wireshark.org/Contrib#file-formats file-zip.lua - 2016-12-22 - 1.11.3? - Dissects the structure of a Zip archive using heuristics. Hosted on git.lekensteyn.nl local data_tvb = tvb(offset, data_len):uncompress("Decompressed data") On Wed, May 31, 2023 at 3:52 PM Maynar