From: Brian 'Redbeard' Harrington Date: Tue, 18 Apr 2017 15:24:42 +0000 (-0700) Subject: contrib: LF Programming script X-Git-Tag: v3.0.0~10^2 X-Git-Url: http://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/commitdiff_plain/79b19c5f90e819d6589fb61e49a712c1e302ba45?hp=79b19c5f90e819d6589fb61e49a712c1e302ba45 contrib: LF Programming script Submitting a well documented Lua script whose purpose is to do bulk, repeated, sequential programming of RFID tags. Could be useful for users of the ACCX Open Access 4.0 or other simple RFID systems. Tags programmed with this would potentially be vulnerabile to bisection attacks, etc... But honestly, they likely would have been anyway. To use run from within the proxmark3 client: ``` proxmark3> script run lf_bulk_program.lua -b 1000 -c 5 -f 23 --- Executing: lf_bulk_program.lua, args '-b 1000 -c 5 -f 23' Press enter to program card 1000:23 (hex: 0020042e07d1) Cloning tag with ID 20042e07d1 Press enter to program card 1001:23 (hex: 0020042e07d2) Cloning tag with ID 20042e07d2 Press enter to program card 1002:23 (hex: 0020042e07d4) Cloning tag with ID 20042e07d4 Press enter to program card 1003:23 (hex: 0020042e07d7) Cloning tag with ID 20042e07d7 Press enter to program card 1004:23 (hex: 0020042e07d8) Cloning tag with ID 20042e07d8 -----Finished ``` ---