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

image - ClassNotFoundException when add a prebuilt apk into system.img in android -

I need to import mysql 5.1 to 5.5? -

Java, Hibernate, MySQL - store UTC date-time -