HI, I have a number of custom lua dissectors all of which contain geo positional data. The location in the packets of the geo positional data is not the same in any of the dissectors. What I am trying to do is take the geo positional data out of the packets and get them to a 3rd party applications that would display the positions all in near real time. After reading the development documentation I have a possible design that has a few holes that I would like some feedback on. My though was to create a tap plugin that would grab the positional data then send the data to the 3rd party tool. From the README.tapping this appears to be possible. Questions:
Thanks for the help and for making WireShark great. asked 16 May '16, 08:31 Rob B edited 16 May '16, 08:45 |
One Answer:
Can't you just export the data you need using
Just replace the fields with the fields you're interested in from your own Lua dissectors. answered 19 Jul '16, 09:32 cmaynard ♦♦ |
I ended using this approach.