doc/standalone/lf_icehid.md
Author: Iceman Frequency: LF (125 kHz) Hardware: RDV4 (requires flash memory and battery)
Back to Standalone Modes Index | Source Code | Development Guide
A passive LF credential collector that continuously listens for HID, IOprox, AWID, and EM4100 cards and logs all captured credentials to flash memory. Runs unattended — just power on and leave it.
This is the ultimate "drop and collect" standalone mode. Place a powered Proxmark3 RDV4 (with battery) near a high-traffic area (like a card reader or badge check-in point) and it silently captures every LF credential that comes into range. Unlike single-protocol modes, IceHID tries all four common LF formats on every signal, catching whatever cards employees are carrying.
Use cases:
lf_hidcollect.log on flashThe multi-format approach uses ASKDemod() and protocol-specific decoders in sequence.
| LED | Meaning |
|---|---|
| A (solid) | Reading / recording LF signal |
| B (solid) | Writing captured data to flash |
| C (solid) | Unmounting / syncing flash filesystem |
| Action | Effect |
|---|---|
| Hold 280ms | Exit standalone mode |
| USB command | Exit standalone mode |
stateDiagram-v2
[*] --> Sample : Startup
Sample --> DemodHID : LF signal detected
DemodHID --> LogFlash : HID decoded
DemodHID --> DemodAWID : HID failed
DemodAWID --> LogFlash : AWID decoded
DemodAWID --> DemodIO : AWID failed
DemodIO --> LogFlash : IOprox decoded
DemodIO --> DemodEM : IOprox failed
DemodEM --> LogFlash : EM4100 decoded
DemodEM --> Sample : All decoders failed
LogFlash --> Sample : Logged, continue
Sample --> [*] : Button hold / USB data
note right of Sample
Continuous loop
Tries 4 demod formats
per signal capture
end note
lf_hidcollect.log on SPI flashmem spiffs dump -s lf_hidcollect.log -d lf_hidcollect.logmake clean
make STANDALONE=LF_ICEHID -j
./pm3-flash-fullimage