Hi all, I would like to know the use of dissector is added as a custom plugins into the wireshark. In example mac-lte protocol is supported by wiresark. But what is the use If I will install mac-lte protocol dissector as a custom plugins. How to install custom plugins into the wireshark in linux system. Thanks and regards, Sathish asked 03 Apr '15, 23:26 Sathish kannan |
One Answer:
custom plugins can be developed in two ways
If you have developed your custom plugin in C. then you have to make dll of it and then put into "plugin" folder of wireshark directory.If you have developed using lua then just put your lua file in "plugin" folder. it will work. By using custom plugin, you can develop your own protocol and you can dissect as per your need. answered 04 Apr '15, 05:37 ankit edited 04 Apr '15, 07:56 grahamb ♦ |