Wireshark dissectors for protocols of a railway signalling network.
- RaSTA
- SCI-P
- SCI-LS
See https://www.wireshark.org/docs/wsug_html_chunked/ChPluginFolders.html
- Copy or symlink to
~/.local/lib/wireshark/pluginsor$XDG_CONFIG_HOME/wireshark/pluginsfor Wireshark < 2.5
For MD4 the default initial values in decimal are
| Part | Dec | Hex |
|---|---|---|
| MD4 A | 1732584193 | 67452301 |
| MD4 B | 4023233417 | efcdab89 |
| MD4 C | 2562383102 | 98badcfe |
| MD4 D | 271733878 | 10325476 |
You can convert any other hex value to decimal using the following shell command:
printf '%d\n' [Hex with leading 0x](should work on Bash, Zsh and most other shells)
Useful links:
- https://wiki.wireshark.org/Lua
- https://www.wireshark.org/docs/wsdg_html_chunked/wsluarm.html
- https://wiki.wireshark.org/LuaAPI
- https://wiki.wireshark.org/Lua/Examples?action=AttachFile&do=get&target=dissector.lua
- https://www.wireshark.org/docs/wsdg_html_chunked/wsluarm_modules.html
This repository is maintained by Markus Heinrich (rasta@0x25.net)