Skip to content

Misc

Misc

Data Sterilization

https://github.com/SubbuQuest/enqueuezero/blob/master/data-serialization.md
MsgPack
Thrift

Msg Pack

Pack and Unpack:

import msgpack
v = msgpack.packb([1, 2, 3], use_bin_type=True)
#'\x93\x01\x02\x03'
msgpack.unpackb(v, raw=False)
#[1, 2, 3]

HL7 (Health Level 7)

  • Messages in Plaintext

Tool for testing
Burp Suite Plugin

DIAP (Datascope Improved ASCII Protocol)

LISO½ (Lab Instrument and Computer Systems)

FHIR (Fast Healthcare Interoperability Resources)

  • Used to replace of HL7

SEMS

https://smlx.dev/posts/goodwe-sems-protocol-teardown/

Modbus

  • Used to communicate with programmable logic controllers (PLCs)
    • Through Ethernet, serial, etc.

https://en.wikipedia.org/wiki/Modbus

AA55

  • Used to communicate with programmable logic controllers (PLCs)
    • Through Ethernet, serial, etc.