Replay Attacks
Test if the device is vulnerable to replay attacks.
Concept
- Capture legitimate traffic
- Replay exact same packets
- Observe device reaction
# From Wireshark capture
captured = bytes.fromhex("7e0404010001ff00ef")
char.write(captured).wait()
# If device reacts -> Vulnerable!
Next Step
Continue with Authentication Bypass.