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
You are not logged in.
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.
I list,
I'm trying to clone a card from a blank LEGIC prime card. It is clear that the UID and the CRC cannot be rewritten, but what about the DCF (decremented counter)? Indeed most LEGIC prime blank cards have a DCF = 0xff 0xff (GAM) and I want to transform the card into a SAM.
in armsrc/legicrf.c we have:
int legic_write_byte(int byte, int addr, int addr_sz) {
//do not write UID, CRC, DCF
if(addr <= 0x06) {
return 0;
}
I naively replaced
addr <= 0x06
with
addr <= 0x04
to rewrite the DCF but it's not working. Some of you have an idea to rewrite the DCF value ? Maybe there is a free tool to do that with an official LEGIC reader ?
Offline
.
Last edited by AntiCat (2018-09-23 10:13:24)
Offline
.
Last edited by AntiCat (2018-09-23 10:12:27)
Offline