Author: Sam Haskins Frequency: HF (13.56 MHz) Hardware: RDV4 with Bluetooth (BlueShark) or serial add-on
Back to Standalone Modes Index | Source Code | Development Guide
A relay attack framework that tunnels ISO14443A communication over a serial/IP backbone. One Proxmark3 sits near the target reader (CARD mode), another near the victim's card (READER mode), and the relayed data bridges any distance.
Relay attacks demonstrate that proximity-based access control can be defeated remotely. Even "tap to pay" and "tap to enter" systems are vulnerable when the communication can be tunneled over the internet. CardHopper demonstrates this in a practical, standalone way without requiring a laptop at either end.
Use cases:
- Relay attacks on NFC payments: Demonstrate contactless payment relay risks
- Access control relay: Bypass door readers by relaying a badge from another location
- Security awareness: Show stakeholders that NFC proximity offers limited protection
- CARD mode (at reader): Emulates an ISO14443A card and forwards all reader commands over serial/BT
- READER mode (at card): Receives forwarded commands, sends them to the real card, and returns responses
- The two devices communicate via serial/Bluetooth/IP, transparently relaying the full ISO14443A session
| LED | Meaning |
|---|---|
| A + D (solid) | Alive / running indicator |
| Action | Effect |
|---|---|
| Button press | Exit mode |
| USB command | Exit standalone mode |
stateDiagram-v2
[*] --> Init : Startup
state Init {
[*] --> READER : Config = Reader mode
[*] --> CARD : Config = Card mode
}
state READER {
WaitCommand --> SendToCard : Command from serial
SendToCard --> SendResponse : Card responds
SendResponse --> WaitCommand : Response sent to serial
}
state CARD {
WaitReaderCmd --> ForwardToRemote : Reader command received
ForwardToRemote --> ForwardToReader : Remote card response
ForwardToReader --> WaitReaderCmd : Response forwarded
}
READER --> [*] : Button / Reset
CARD --> [*] : Button / Reset
Requires two Proxmark3 RDV4 devices:
- Near reader: Running in CARD mode with BT/serial connection
- Near card: Running in READER mode with BT/serial connection
- Both connected via serial link (direct, Bluetooth, or TCP/IP bridge)
make clean
make STANDALONE=HF_CARDHOPPER -j
./pm3-flash-fullimage
Requires PLATFORM_EXTRAS=BTADDON or FPC serial connection.
- Reblay BT Relay — Similar 14A relay over Bluetooth
- 14A Sniffer — Passive capture instead of active relay