Ask Your Question

Chuckc's profile - activity

2024-04-22 16:33:39 +0000 commented answer Is there any capture filter available to capture only beacons and action frames that contain Channel Switch Announcement frames in them?

8534: 802.11: doesn't parse extended channel switch announcement frames correctly Pretty sure my home network would be b

2024-04-22 16:33:25 +0000 commented answer Is there any capture filter available to capture only beacons and action frames that contain Channel Switch Announcement frames in them?

8534: 802.11: doesn't parse extended channel switch announcement frames correctly Pretty sure my home network would be b

2024-04-22 16:33:02 +0000 commented answer Is there any capture filter available to capture only beacons and action frames that contain Channel Switch Announcement frames in them?

8534: 802.11: doesn't parse extended channel switch announcement frames correctly Pretty sure my home network would be b

2024-04-22 12:41:28 +0000 edited answer Multiple ethertype for one dissector

Can you use eth.type? (Wireshark dfref - Ethernet) -- EASYPOST.lua -- Replace occurrences of "easypost/EASYPOST" with p

2024-04-22 12:39:47 +0000 received badge  Rapid Responder (source)
2024-04-22 12:39:47 +0000 answered a question Multiple ethertype for one dissector

Can you use eth.type? (Wireshark dfref - Ethernet) -- EASYPOST.lua -- Replace occurrences of "easypost/EASYPOST" with p

2024-04-18 09:46:57 +0000 commented answer Custom ecpri dissector based on original implementation

i would like to have additional subtree and fields to ease my work It may be easier/quicker with a Lua script. I

2024-04-18 09:46:06 +0000 commented answer Custom ecpri dissector based on original implementation

i would like to have additional subtree and fields to ease my work It may be easier/quicker with a Lua script. I

2024-04-18 01:19:46 +0000 commented question lua script not getting executed in 4.2.x release

Did you check the two merge requests in the comment above?

2024-04-18 01:18:22 +0000 received badge  Rapid Responder (source)
2024-04-18 01:18:22 +0000 answered a question TCP Port numbers reused

This has been answered in issue 19771: SYN/ACK marked as "TCP port numbers reused" Merge request 15278: TCP: Fix extra

2024-04-17 14:40:11 +0000 commented question lua script not getting executed in 4.2.x release

prepend_path removed: 11787: Lua: Remove package.prepend_path What is config to have linux system look in /usr/lua for

2024-04-17 14:38:19 +0000 commented question lua script not getting executed in 4.2.x release

prepend_path removed: 11787: Lua: Remove package.prepend_path What is config to have linux system look in /usr/lua for

2024-04-17 14:37:44 +0000 commented question lua script not getting executed in 4.2.x release

prepend_path removed: 11787: Lua: Remove package.prepend_path What is config to have linux system look in /usr/lua for

2024-04-17 12:57:46 +0000 commented question lua script not getting executed in 4.2.x release

Are the scripts in the "Global Lua P.lugins" or "Personal Lua Plugins" directory? Or are they being called with the tsha

2024-04-16 15:44:27 +0000 edited answer How to add a dissector below USB/FTDI?

Starting point is EASYPOST.lua found on wiki: https://wiki.wireshark.org/lua#examples Use Help->About Wireshark:Folde

2024-04-16 15:43:03 +0000 commented answer How to add a dissector below USB/FTDI?

There are examples on the Wiki (Contrib) of protocol dissectors that might help. (The Wiki has a current issue with atta

2024-04-16 15:41:28 +0000 edited answer How to add a dissector below USB/FTDI?

Starting point is EASYPOST.lua found on wiki: https://wiki.wireshark.org/lua#examples Use Help->About Wireshark:Folde

2024-04-16 15:40:26 +0000 commented answer How to add a dissector below USB/FTDI?

There are examples on the Wiki (Contrib) of protocol dissectors that might help. (The Wiki has a current issue with atta

2024-04-16 13:51:37 +0000 commented answer How to add a dissector below USB/FTDI?

You mentioned "stm8s processors". The capture data looks more like: STM8 bootloader: um0560-stm8-bootloader-stmicroelect

2024-04-16 11:58:43 +0000 commented question eCPRI: O-RAN-FH-U: Malformed Packet

Similar issue: 18946: Problem in reading dynamic compression in O-RAN Fronthaul protocol Can you update the question wi

2024-04-15 15:33:41 +0000 commented answer How to add a dissector below USB/FTDI?

Do you have a capture with an example of ftdi fragments? ft232h-scan.pcapng attached to 11743: Add FTDI USB dissector s

2024-04-15 12:52:17 +0000 commented question Custom ecpri dissector based on original implementation

epan/dissectors/packet-ecpri.c is not forgotten commits. If your "some modification" would benefit others you could open

2024-04-15 12:51:27 +0000 commented question Custom ecpri dissector based on original implementation

epan/dissectors/packet-ecpri.c is not forgotten commits. If your "some modification" would benefit others you could open

2024-04-14 20:21:32 +0000 commented answer Malformed bootp packet

How does the client get the response if sent to 67 not 68? No. Time Source UDP Srcport Destination UDP Dstport Prot

2024-04-14 20:19:06 +0000 commented answer Malformed bootp packet

How does the client get the response if sent to 67 not 68? No. Time Source Source Port Destination Protocol Dest

2024-04-14 13:44:42 +0000 edited answer new lua dissector error

Check the Wireshark Wiki Examples dissector.lua and fpm.lua for field definition examples. Also the Contrib Lua Plugins

2024-04-14 13:40:16 +0000 answered a question new lua dissector error

Check the Wireshark Wiki Examples dissector.lua and fpm.lua for field definition examples. Also the Contrib Lua Plugins

2024-04-14 13:40:16 +0000 received badge  Rapid Responder (source)
2024-04-13 13:01:32 +0000 commented question Malformed bootp packet

Can you share a capture file of the packet on a public file share then update the question with a link to it.

2024-04-13 00:30:04 +0000 commented question Wireshark 4.05 to 4.07 broke lua dissector

YMMV but may be similar to gotchas in: 18589: Lua Personal vs Global Plugin Failure

2024-04-12 12:19:32 +0000 received badge  Rapid Responder (source)
2024-04-12 12:19:32 +0000 answered a question Update offline

Update path is set in ui/software_update.c: switch (chan) { case UPDATE_CHANNEL_DEVELOPMENT: ch

2024-04-11 20:20:12 +0000 answered a question How to add a dissector below USB/FTDI?

Starting point is EASYPOST.lua found on wiki: https://wiki.wireshark.org/lua#examples Use Help->About Wireshark:Folde

2024-04-11 20:20:12 +0000 received badge  Rapid Responder (source)
2024-04-11 17:37:40 +0000 commented question How to add a dissector below USB/FTDI?

ftdi-ft.if_a_rx_payload A RX payload Byte sequence 3.4.0 to 4.2.4 ftdi-ft.if_a_tx_payload A TX payload Byte sequ

2024-04-11 17:32:53 +0000 commented question How to add a dissector below USB/FTDI?

Got a capture - now how to I attached it to this question? I will attached a single dissected frame below (sorry the co

2024-04-11 17:32:15 +0000 commented question How to add a dissector below USB/FTDI?

Please put it on a public file share (Google, Onedrive, Dropbox, ...) and update the question with a link to it.

2024-04-11 17:30:17 +0000 commented question Can you help me by explaining how to see signal/parameter names and their data associated with each timestamp in data log.

Is the data same format as here: https://github.com/uhi22/OpenV2Gx

2024-04-11 17:16:13 +0000 commented question Wireshark 4.05 to 4.07 broke lua dissector

Registering as a post dissector produces this output: dissect_tcp_pdus: get_pdu_len: do_dissection: How are you re

2024-04-11 16:07:27 +0000 commented question Can you help me by explaining how to see signal/parameter names and their data associated with each timestamp in data log.

This is the functionality you want from Wireshark? https://www.vector.com/gb/en/products/products-a-z/software/canoe/opt

2024-04-11 15:53:23 +0000 received badge  Rapid Responder (source)
2024-04-11 15:53:23 +0000 answered a question how to get right filter for private protocol decoded by lua plugin

Similar to How to filter by item? You could modify the Lua code to add another field (possibly hidden) to use for sear

2024-04-10 22:25:08 +0000 commented question Can you help me by explaining how to see signal/parameter names and their data associated with each timestamp in data log.

It's been done by another vendor: https://canlogger.csselectronics.com/clx000-intro/log-file-tools/wireshark/ If you can

2024-04-10 16:08:47 +0000 commented question Can you help me by explaining how to see signal/parameter names and their data associated with each timestamp in data log.

import .DBC file 15454: Dissection of CAN packets based on a DBC specification Looks like you would have to write your o

2024-04-10 15:15:22 +0000 commented question Can you help me by explaining how to see signal/parameter names and their data associated with each timestamp in data log.

How was the capture file created?

2024-04-10 14:44:06 +0000 commented question Tshark - Can I use ring buffer with text files

The diagram here (WSDG: 7.2. Overview) shows Wireshark but also applies to tshark. Capture (and the ring buffering) is d

2024-04-10 12:44:54 +0000 commented question How to add a dissector below USB/FTDI?

Do you have a sample capture or is there one here (11743: Add FTDI USB dissector) for discussion? Is the data always in

2024-04-10 12:10:44 +0000 answered a question invalid key format wpa-psk wpa-pwd

Invalid key entry in WPA-PSK/WPA-PWD The key entry dialog, or at least the validity indication, is less than optimal

2024-04-10 12:10:44 +0000 received badge  Rapid Responder (source)