PM3 Commands Reference (Iceman Firmware):

Main Help


Current command:
lf hitag wrbl --help


Write a page in Hitag memory
Crypto mode key format: ISK high + ISK low

usage:
    lf hitag wrbl [-hs2] [--pwd] [--nrar <hex>] [--crypto] [-k <hex>] -p <dec> -d <hex>

options:
    -h, --help                     This help
    -s, --hts                      Hitag S
    -2, --ht2                      Hitag 2
    --pwd                          password mode
    --nrar <hex>                   nonce / answer writer, 8 hex bytes
    --crypto                       crypto mode
    -k, --key <hex>                key, 4 or 6 hex bytes
    -p, --page <dec>               page address to write to
    -d, --data <hex>               data, 4 hex bytes

examples/notes:
    Hitag S, plain mode
      lf hitag wrbl --hts -p 6 -d 01020304
    Hitag S, challenge mode
      lf hitag wrbl --hts --nrar 0102030411223344 -p 6 -d 01020304
    Hitag S, crypto mode => use default key 4F4E4D494B52 (ONMIKR)
      lf hitag wrbl --hts --crypto -p 6 -d 01020304
    Hitag S, long key = crypto mode
      lf hitag wrbl --hts -k 4F4E4D494B52 -p 6 -d 01020304