Research, development and trades concerning the powerful Proxmark3 device.
Remember; sharing is caring. Bring something back to the community.
"Learn the tools of the trade the hard way." +Fravia
Time changes and with it the technology
Proxmark3 @ discord
Users of this forum, please be aware that information stored on this site is not private.
Pages: 1
Hello,
I have been messing around with the Proxmark RDV4 for the past couple days in a mac OS Catalina environment. I've have a lot of success sniffing communication between DESFire Cards and a reader/writer system run by a PN7150 NFC controller. I was just wondering if the RDV4 device is also capable of emulating an ISO14443A-4 card where I can handle the commands being received and manually transmit my responses via a python script.
I've attempted to use the pyscard library; but I couldn't manage to detect the RDV4 as 'reader' using the smartcard APIs. Any insight on this is greatly appreciated.
Thank you
You can either hook up against the pm3 client using python and start the client, sending commands via stdin/stdout, or you can use the -c param to the client and execute commands.
Psuedo code, I am not a python coder.
import os
stream = os.popen('./pm3 -c 'hf search')
output = stream.read()
output