This is a static archive of our old Q&A Site. Please post any new questions and answers at ask.wireshark.org.

Invoke who.is from WireShark capture

0

I've been using WireShark of late and find it very, very useful. I realize I can enable DNS resolution, but a lot of IPs do not get resolved.

Is there a way, from the WireShark interface, to invoke a who.is function that would bring up the browser as if I had typed in who.si ip.address?

I spend a lot of time bringing up a browser and copying/pasting the IP address into who.is to get all the info. Is there a plugin for such a thing? I have some coding experience. Is it possible to code such a thing for WireShark?

For me, this would be very useful.

Thanks for any tips/ideas.

asked 10 Feb '15, 09:12

larryralph's gravatar image

larryralph
11223
accept rate: 0%


One Answer:

0

Is there a way, from the WireShark interface, to invoke a who.is function that would bring up the browser as if I had typed in who.si ip.address?

That functionality is not implemented, however it would be a pretty cool feature and it could look like this:

  • select any field (ip.addr, tcp.port, whatever)
  • right click the item
  • form the pop-up menu select

    • "External Tools" -> "ping"
    • "External Tools" -> "whois lookup"
    • "External Tools" -> "ssh"

"External Tools" would contain user defined external programs, started by Wireshark with the field as parameter ("ping %ip", "firefox.exe http://who.is/lookup=%ip", etc.).

As it does not make sense to run ping on a tcp port, the menu shall only show those external commands that use an adequate parameter for the selected field, like %ip, %port, etc.

I have some coding experience. Is it possible to code such a thing for WireShark?

If you can implement that yourself, go ahead! As I said, that would be a pretty cool feature.

Otherwise, please file an enhancement bug at https://bugs.wireshark.org

Regards
Kurt

answered 11 Feb '15, 04:09

Kurt%20Knochner's gravatar image

Kurt Knochner ♦
24.8k1039237
accept rate: 15%

edited 11 Feb '15, 04:09