Skip to content

Latest commit

 

History

History
23 lines (19 loc) · 1.11 KB

18_iot.md

File metadata and controls

23 lines (19 loc) · 1.11 KB

Hacking IoT

Perform footprinting using various footprinting techniques

Capture and analyze IoT device traffic

  • Capture and analyze IoT traffic using Wireshark Publish message: Header Flags: Contains information regarding the MQTT control packet type. DUP flag: If the DUP flag is 0, it indicates the first attempt at sending this PUBLISH packet; if the flag is 1, itindicates a possible re-attempt at sending the message. QoS: Determines the assurance level of a message. Retain Flag: If the retain flag is set to 1, the server must store the message and its QoS, so it can cater tofuture subscriptions matching the topic. Topic Name: Contains a UTF-8 string that can also include forward slashes when it needs to be hierarchicallystructured. Message: Contains the actual data to be transmitted. Payload: Contains the message that is being published.