Right now I am using: tshark -r "C:\Users\admin\Desktop\capture.cap" -qz "conv,ip" This displays host IP conversations with hosts that have the most frames topping the results. Seems typically the hosts with the most frames usually have the most bytes in their conversations, but not always. Is there anyway to make the hosts with the most bytes in these conversations appear at the top, then descending in value by byte count? asked 23 Feb '16, 10:24 zer0day |
2 Answers:
Looking at the source, no, the sorting is hard-coded to be by the number of frames. You could raise an enhancement request to request the functionality. answered 25 Feb '16, 15:27 JeffMorriss ♦ |
Try this:
or just
answered 14 Jul '17, 15:09 gag99 edited 15 Jul '17, 05:30 JeffMorriss ♦ The above script appears to be bash based along with several common *nix utilities and as such, won't work for the OP who appears to be running Windows. The OP could install a *nix compatibility tool such as Cygwin or mingw (as provided by Git for Windows) to run the scripts or convert them to something that works out of the box, e.g. PowerShell. (15 Jul '17, 07:20) grahamb ♦ |
Thanks for taking the time to look, much appreciated.