How to view Packet bytes as decimal?
In the Packet window I am able to view packet bytes as hex or binary. Is (or may) there be an option for viewing packet bytes decoded as decimal?
In the Packet window I am able to view packet bytes as hex or binary. Is (or may) there be an option for viewing packet bytes decoded as decimal?
There is no option other than hexadecimal or binary.
You can raise a feature request at https://gitlab.com/wireshark/wireshar... .
For now you can convert it using an other tool. For example copy as 'Printable Text' and pipe it through this Perl oneliner:
perl -e 'undef $/; $l = <>; $l =~ s/(.)/sprintf("%4d", ord($1))/egs; print $l;'
Please start posting anonymously - your entry will be published after you log in or create a new account.
Asked: 2022-12-29 21:27:19 +0000
Seen: 1,316 times
Last updated: Dec 30 '22
Little Endian for "Proto_Tree_Add_Bits" Function
How can I filter packet bytes to display only certain messages...
How to automatically hide "Packet Bytes" pane when packet is opened in the new window?
Is it possible to print TX_PACKETS, TX_BYTES, RX_PACKETS and RX_BYTES?
Extract and concat packet bytes from multiple streams
how to invert two bytes in lua script dissector ?
Capture incoming packets from remote web server
How do I get and display packet data information at a specific byte from the first byte?