2.9 KiB
LF_HIDBRUTE — HID Corporate 1000 Bruteforce
Authors: Federico Dotta & Maurizio Agazzini Frequency: LF (125 kHz) Hardware: Generic Proxmark3
Back to Standalone Modes Index | Source Code | Development Guide
What
Reads an HID Corporate 1000 (35-bit) card, then brute forces the card number up/down from the captured value while preserving the facility code. Also supports direct simulation and cloning.
Why
HID Corporate 1000 uses a 35-bit format with a facility code and card number. If you can read one card, you likely know the facility code for that site. By brute forcing the card number, you can test other valid badge numbers in the same facility — for example, finding an admin badge number when you only have a standard user badge.
Use cases:
- Privilege escalation: Find higher-privilege card numbers in the same facility
- Adjacent badge discovery: Walk through card numbers near a known-good badge
- Access control testing: Verify whether sequential card numbers are provisioned
How
- Record: Read an HID Corporate 1000 card to capture facility code + card number
- Clone: Write the captured credentials to a T55x7 card
- Brute: Simulate incrementing/decrementing card numbers with the same facility code
The brute force iterates the card number portion while keeping the facility code constant from the originally recorded card.
LED Indicators
| LED | Meaning |
|---|---|
| A (solid) | Slot 0 selected / cloning active |
| B (solid) | Slot 1 selected / simulation active |
| C (solid) | Slot 2 selected |
| D (solid) | Status indicator |
| LED(slot+1) | Indicates currently active slot during recording |
Button Controls
| Action | Effect |
|---|---|
| Hold 280ms | Advance state (select → record → clone/brute → repeat) |
| USB command | Exit standalone mode |
State Machine
stateDiagram-v2
[*] --> SlotSelect : Startup
SlotSelect --> Record : Button hold (280ms)
Record --> Clone : Button hold (card captured)
Record --> Record : Button hold (no card)
Clone --> BruteForce : Button hold
BruteForce --> Record : Button hold (exit brute)
Clone --> SlotSelect : Operation complete
SlotSelect --> [*] : USB data received
Record --> [*] : USB data received
Compilation
make clean
make STANDALONE=LF_HIDBRUTE -j
./pm3-flash-fullimage
Related
- SamyRun — HID26 read/clone/simulate
- HID FC Brute — Brute force HID facility codes
- ProxBrute — HID ProxII card number brute force
- Prox2Brute — ProxII brute force v2
- HID Downgrade Attacks — Reader downgrade methods