Execute Proxmark commands without iceman client

Hey @k4lin,

For sure you can do that, in fact it already exists and I was doing it today :slight_smile:

If you have a proxmark3 rdv4 with a blueshark module you can just use standalone mode.

The mode you would probably be after is HF14A_SNIFF.

if you don’t have an RDV4 or the blueshark module, you could always just pass the commands headless through python using a simple function like:

def hf_sniff():
try:
os.system(pm3 -c ‘hf sniff’) #sniff HF NFC
sleep(10)
os.system(pm3 -c ‘mem spiffs dump -s hf_14asniff.trace -d hf_14asniff.trace’) # dump trace to PC
except Exception as e:
print(f"[ ! ] Error: {e}")
exit(1)

and then to make it portable plug a raspberry pi zero into your proxmark, bluetooth tether it to your phone, SSH into the pi zero from your phone and run the script.

1 Like