Tagged Questions

A protocol dissector for Wireshark is what translates the bytes of a network package into human readable form. These dissectors can either be written in C or in the scripting language Lua.

learn more… | top users | synonyms

4
votes
1answer
678 views

Wireshark Dissector: How to Identify Missing UDP Frames?

How do you identify missing UDP frames in a custom Wireshark dissector? I have written a custom dissector for the CQS feed (reference page). One of our servers gaps when receiving this feed. ...
3
votes
1answer
1k views

Wireshark Plugin: Dissecting Payloads With Multiple Packets Per UDP Frame

I am writing a Wireshark plugin to dissect a protocol that places multiple application-level packets in a single UDP frame. There is no enclosing protocol that indicates how many packets there are in ...
2
votes
1answer
776 views

Writing a wireshark dissector in lua and setting it on a dynamic port

I have a client server protocol that works the following way. Client sends udp broadcast with servers id (to a fixed port). Server receives the datagram and if its matches his id he sends the client ...
2
votes
1answer
759 views

How can I add a custom protocol analyzer to wireshark?

I have a custom protocol that I'm looking at in wireshark. I thought it'd be useful if wireshark could disect it for me so that I don't have to decode the hex. Although I'm doing this in my program ...
2
votes
3answers
568 views

How do you test a Wireshark dissector?

When you write a dissector for Wireshark, how do you test it? Looking for the visual output in the UI is not sufficient for a none-trivial protocol. Is there a good way for unit testing of the ...
1
vote
0answers
25 views

Packet data in wireshark not highlighted on click using my custom dissector

I am writing a dissector in Lua for a custom, binary protocol. I have defined three field types: f.field1= ProtoField.bytes("myproto.field1","Field 1",base.HEX) f.field2= ...
1
vote
2answers
47 views

Wireshark Lua Dissector - How to set source and destination

I'm working on a Wireshark Dissector in Lua. I try to provide wireshark as much information about my custom protocol as possible to make use of the available analysis tools. Therefore I'm trying to ...
1
vote
2answers
55 views

Compiling a source file that has dependencies on multiple source code trees

How can I compile a C source file that #include's header files from each of two independent source trees? Each source tree has its own set of makefiles, and the source trees are completely independent ...
1
vote
1answer
320 views

Where can I find a sample for Pcap for Diameter protocol (WireShark)?

I was wondering if there are any sample wireshark pcaps for diameter protocol out there? If so please share. Thanks
1
vote
1answer
175 views

Wireshark dissector: Display a field dependent on value of previous field in a the dissected tree

I am working on developing a plugin in wireshark for a proprietary protocol. I have the following 3 structures that define the characteristics of the protocol. static const value_string ...
1
vote
1answer
117 views

Interpreting an FT_UNIT32 field as little endian

I'm in the middle of writing a Wireshark dissector for a custom protocol. However, I have a field which is a unsigned 32-bit integer. It's actually transmitted in little endian form. How do I force ...
1
vote
1answer
155 views

How do I compile this plugin?

I'm following the foo dissector example but would like to know how to compile it. The foo dissector example is shown in this link: http://www.wireshark.org/docs/wsdg_html_chunked/ChDissectAdd.html ...
1
vote
2answers
254 views

Lua for Wireshark: Tvp.new_real() doesn't exist?

The documentation for Lua for Wireshark claims that the Tvp class has a new_real() method. However, this method seems to not exist when I try to use it in my Lua script. I'm using Wireshark 1.3.5 ...
0
votes
1answer
45 views

Wireshark Lua Dissector - How to use a TAP?

I would like to do some analysis on top of my custom protocol that is dissected via my lua dissector. Therefore I tried to do this myproto_proto = Proto("myproto", "Myproto Protocol") m_dest = ...
0
votes
2answers
64 views

Wireshark Lua Dissector for IEEE 802.15.4 - DissectorTable name?

I'm working on a wireshark dissector in lua to dissect a custom protocol that is based on 802.15.4. Unfortunately I cannot figure out the right DissectorTable name: table = DissectorTable.get("wpan") ...
0
votes
2answers
139 views

How to dissect a field in an already dissected package in Wireshark using Lua?

I have a protocol that is built on UDP and that is partly dissected by a third party dll in Wireshark. I now want to create a custom dissector to apply to the remaining field "data". Is it possible ...
0
votes
2answers
222 views

Wireshark dissector in Lua - userdata

I am new to Lua, and I am building a custom dissector for Wireshark. My situation is this: The wireshark data consists of hex numbers such as 4321 8765 CBA9. What I would like to wind up with is ...
0
votes
1answer
180 views

Wireshark - Lua Dissector, detect which endpoint opened the connection?

I'm writing a dissector for a protocol that I have to work with. This protocol runs atop TCP and is stateful. In order to dissect the fields correctly, I need to identify which endpoint opened the ...
0
votes
1answer
266 views

wireshark generic dissector- using the packet sequence to define the message

I am not sure if stackoverflow is the right place to put this question, but it seems like. I am trying to write a dissector using the generic dissector plugin (http://wsgd.free.fr/). I have a small ...
0
votes
1answer
203 views

library wireshark in ruby

I'm doing my project of 4th year of university and the theme of this project is to realize a network analyser with web interface close to what wireshark proposes. So its necessary to mapper the ...