PM3 Commands Reference (Iceman Firmware):

Updated: January 2025

Main Help


Up One Level


Current command:
mem load --help


Loads binary file into flash memory on device
Warning: mem area to be written must have been wiped first
( dictionaries are serviced as files in spiffs so no wipe is needed )

usage:
    mem load [-o <dec>] -f <fn>

options:
    -h, --help                     This help
    -o, --offset <dec>             offset in memory
    -m, --mifare, --mfc            upload 6 bytes keys (mifare key dictionary)
    -i, --iclass                   upload 8 bytes keys (iClass key dictionary)
    -t, --t55xx                    upload 4 bytes keys (password dictionary)
    -f, --file <fn>                file name

examples/notes:
    mem load -f myfile                     -> upload file myfile values at default offset 0
    mem load -f myfile -o 1024             -> upload file myfile values at offset 1024
    mem load -f mfc_default_keys -m        -> upload MFC keys
    mem load -f t55xx_default_pwds -t      -> upload T55XX passwords
    mem load -f iclass_default_keys -i     -> upload iCLASS keys