I am currently undertaking a project on computer science using wireshark.I want to know if is possible to create a plugin that allows me visualize the third parties websites(google ads and more) ??? asked 18 Jan '14, 06:46 Astrokilla |
One Answer:
sure, you can write a Listener/Tap for Wireshark, either in C or in Lua (http://wiki.wireshark.org/Lua/Taps ). Within that Listener you can aggregate data and do whatever you need, including the visualization of 'third parties websites'. See the code of packet-http.c (look for: register_tap("http")). The HTTP dissector registers a TAP (Listener) to be able to Export HTTP objects (File -> Export Objects -> HTTP). See also: README.developer and README.tapping. Regards answered 21 Jan '14, 04:54 Kurt Knochner ♦ |
Thank so much for the help Kurt !!!
You're welcome.
Hint: If a supplied answer resolves your question can you please "accept" it by clicking the checkmark icon next to it. This highlights good answers for the benefit of subsequent users with the same or similar questions. For extra points you can up vote the answer (thumb up).