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.
Pages: 1
Hi!
Apparently there is a lot going on with the lf commands so I'm not sure if this is an actual issue or if I'm not aware of it being depreciated, but since I pulled this morning, "lf em4x em410xwatch" throws a Floating point exception in my face an exits the client.
I don't want to spam github with known issues, so I figured I'd post it here.
Offline
hmmm. i haven't tested or adjusted that command. lf search work with the same tag?.
it looks like it doesn't validate the clock after it tries to detect it, so it could end up dividing by 0 if it can't detect the clock.
Offline
Yup,
"lf search" + "lf em4x em410xread" both work with the three tags I tested. "em410xWATCH" fails every time.
Thank you!
Last edited by beben (2015-03-16 16:29:29)
Offline
I suggest you don't use the "lf em4x em410xsim", but try the new sim commands under lf instead.
Offline
Yeah that's what I thought...
Thanks for your help!
Offline
I'm curious though, i was able to use lf em4x em410xsim without issue, though i never tried the read/watch watch/sim commands.
the lf em4x em410xsim doesn't work when you specify the emid to sim?
Offline
I will review the other commands when i get a chance.
Offline
Shite, I got sidetracked!
I was talking about em410xwatch! There does not seem to be a newer alternative to this!
Offline
I never looked at the watch commands. When I get a chance I'll take a look
Offline
The watch command uses lf sim & lf em4x 410xread internally.
Offline
I would suggest 2 changes to CmdEM410xWatch function code
CmdLFRead(read_h ? "h" : "");
...
} while (
!CmdEM410xRead("")
);
to
CmdLFRead("");
...
} while (!CmdAskEM410xDemod(""));
i haven't tested as i am away from my pm3 atm. but that probably should fix it.
Last edited by marshmellow (2015-03-16 20:51:53)
Offline
the watch and spoof code (CmdEM410xWatchnSpoof) will require another code change:
PrintAndLog("# Replaying : %s",global_em410xId);
CmdEM410xSim(global_em410xId);
to
PrintAndLog("# Replaying captured ID");
CmdLFaskSim();
to display the captured ID would require a bit more rewrite.
Last edited by marshmellow (2015-03-16 19:34:17)
Offline
The main trunk now has fixes for this
Offline
Pages: 1