Module 18: IoT & OT Hacking

Ethical hackers or pen testers use numerous tools and techniques to hack the target IoT and OT platforms. Recommended labs that will assist you in learning various IoT platform hacking techniques include:

  1. Perform footprinting using various footprinting techniques

    • Gather information using online footprinting tools

  2. Capture and analyze IoT device traffic

    • Capture and analyze IoT traffic using Wireshark

  3. Perform IoT Attacks

    • Perform replay attack on CAN protocol

Lab 1: Perform Footprinting using Various Footprinting Techniques

Task 1: Gather Information using Online Footprinting Tools

Lab 2: Capture and Analyze IoT Device Traffic

## Tools used in this section : 
MQTT Broker
MQTT Simulator

Lab 3: Perform IoT Attacks

## Installing CAN Utils & Adding CAN Interface
sudo apt-get install can-utils
sudo modprobe can
sudo modprobe vcan
## Setting up the CAN Interface
sudo ip link add dev vcan0 type vcan
sudo ip link set up vcan0

## Using Tool ICSim
chmod -R 777 ICSim
./icsim vcan0
./controls vcan0
cansniffer -c vcan0
candump -l vcan0

## CAN Replay Attack
canplayer -I candump-2024-05-07_063502.log

Last updated