linux - plaintext output from pcap in tshark (with options from wireshark?) -


i'm trying run script allow me export pcap files plaintext versions wireshark.

my issue need have packet summary line, packet details expanded, packet bytes, , each packet on new page under packet format options. believe packet summary line on default, packet details "as displayed" using -v flag.

this man page i've been using.

i have used command:

tshark -v -r "$file" >> text_out.txt; 

any assistance appreciated.

i need have packet summary line, packet details expanded, packet bytes

tshark -pvx -r "$file" >>text_out.txt, @ least newer versions of tshark.

and each packet on new page

not supported in tshark, unfortunately.


Comments

Popular posts from this blog

Need help in packaging app using TideSDK on Windows -

java - Why does my date parsing return a weird date? -