gitextract_2oo4yq46/ ├── .gitignore ├── COPYING ├── Hardware/ │ └── Pic32/ │ ├── COPYING.txt │ ├── README.txt │ ├── RFIDLER V22 beta.brd │ └── RFIDLER V22 beta.sch ├── README.md ├── conference-talks/ │ ├── 2017/ │ │ └── KevSheldrake-44conslides.tgz │ └── 2018/ │ └── KevSheldrake-DC4420-slides.tgz ├── firmware/ │ └── Pic32/ │ ├── COPYING │ ├── HIDBoot_MX795_Hex_Load.X/ │ │ ├── HIDBoot.X.production.hex │ │ ├── Makefile │ │ └── nbproject/ │ │ ├── configurations.xml │ │ ├── project.properties │ │ └── project.xml │ └── RFIDler.X/ │ ├── Makefile │ ├── dist/ │ │ ├── debug/ │ │ │ └── production/ │ │ │ ├── RFIDler.X.production.elf │ │ │ └── RFIDler.X.production.hex │ │ └── default/ │ │ └── production/ │ │ └── RFIDler.X.production.hex │ ├── include/ │ │ ├── FSconfig.h │ │ ├── HardwareProfile.h │ │ ├── analogue.h │ │ ├── ask.h │ │ ├── auth.h │ │ ├── auto.h │ │ ├── awid.h │ │ ├── clock.h │ │ ├── comms.h │ │ ├── config.h │ │ ├── debug_pins.h │ │ ├── detect.h │ │ ├── em.h │ │ ├── emulate.h │ │ ├── fdxb.h │ │ ├── fsk.h │ │ ├── hdx.h │ │ ├── hid.h │ │ ├── hitag.h │ │ ├── hitag2crack.h │ │ ├── hitagcrypto.h │ │ ├── indala.h │ │ ├── iso_7816.h │ │ ├── led.h │ │ ├── login.h │ │ ├── mcp414x.h │ │ ├── nvm.h │ │ ├── paxton.h │ │ ├── psk.h │ │ ├── q5.h │ │ ├── read.h │ │ ├── rfidler.h │ │ ├── rwd.h │ │ ├── sc_config.h │ │ ├── sdcard.h │ │ ├── select.h │ │ ├── sniff.h │ │ ├── spi.h │ │ ├── t55x7.h │ │ ├── tags.h │ │ ├── tamagotchi.h │ │ ├── uart3.h │ │ ├── uid.h │ │ ├── unique.h │ │ ├── usb_config.h │ │ ├── util.h │ │ ├── vtag.h │ │ ├── wiegand.h │ │ └── write.h │ ├── nbproject/ │ │ ├── Makefile-debug.mk │ │ ├── Makefile-default.mk │ │ ├── Makefile-genesis.properties │ │ ├── Makefile-impl.mk │ │ ├── Makefile-local-debug.mk │ │ ├── Makefile-local-default.mk │ │ ├── Makefile-variables.mk │ │ ├── Package-debug.bash │ │ ├── Package-default.bash │ │ ├── configurations.xml │ │ ├── private/ │ │ │ ├── configurations.xml │ │ │ └── private.xml │ │ ├── project.properties │ │ └── project.xml │ ├── procdefs.ld │ └── src/ │ ├── analogue.c │ ├── ask.c │ ├── auth.c │ ├── auto.c │ ├── awid.c │ ├── clock.c │ ├── comms.c │ ├── config.c │ ├── debug_pins.c │ ├── detect.c │ ├── em.c │ ├── emulate.c │ ├── fdxb.c │ ├── fsk.c │ ├── hdx.c │ ├── hid.c │ ├── hitag.c │ ├── hitag2crack.c │ ├── hitagcrypto.c │ ├── indala.c │ ├── iso7816.c │ ├── isr.c │ ├── led.c │ ├── login.c │ ├── main.c │ ├── mcp414x.c │ ├── nvm.c │ ├── paxton.c │ ├── psk.c │ ├── q5.c │ ├── read.c │ ├── rwd.c │ ├── sc.c │ ├── sdcard.c │ ├── select.c │ ├── sniff.c │ ├── spi.c │ ├── t55x7.c │ ├── tags.c │ ├── tamagotchi.c │ ├── uart3.c │ ├── uid.c │ ├── unique.c │ ├── usb_descriptors.c │ ├── util.c │ ├── vtag.c │ ├── wiegand.c │ └── write.c ├── hitag2crack/ │ ├── README │ ├── crack2/ │ │ ├── HardwareProfile.h │ │ ├── Makefile │ │ ├── README │ │ ├── hitagcrypto.c │ │ ├── hitagcrypto.h │ │ ├── ht2crack2buildtable.c │ │ ├── ht2crack2gentest.c │ │ ├── ht2crack2search.c │ │ ├── ht2crack2utils.c │ │ ├── ht2crack2utils.h │ │ ├── rfidler.h │ │ ├── runalltests.sh │ │ ├── runtest.sh │ │ ├── util.h │ │ └── utilpart.c │ ├── crack3/ │ │ ├── HardwareProfile.h │ │ ├── Makefile │ │ ├── README │ │ ├── hitagcrypto.c │ │ ├── hitagcrypto.h │ │ ├── ht2crack3.c │ │ ├── ht2test.c │ │ ├── rfidler.h │ │ ├── util.h │ │ └── utilpart.c │ └── crack4/ │ ├── HardwareProfile.h │ ├── Makefile │ ├── README │ ├── hitagcrypto.c │ ├── hitagcrypto.h │ ├── ht2crack2utils.c │ ├── ht2crack2utils.h │ ├── ht2crack4.c │ ├── rfidler.h │ ├── util.h │ └── utilpart.c ├── linux-support/ │ └── 71-rfidler-lf-cdc-blacklist.rules ├── python/ │ ├── Makefile │ ├── README.md │ ├── RFIDler/ │ │ └── __init__.py │ ├── rfidler.py │ └── setup.py ├── windows driver/ │ ├── inf/ │ │ ├── rfidlercdc.cat │ │ └── rfidlercdc.inf │ └── rfidler-install.txt └── windows-src/ ├── COPYING.txt ├── RFIDler-install/ │ ├── resource.h │ ├── rfidinstall.cpp │ ├── rfidler-install.rc │ ├── rfidlerinstall.sln │ ├── rfidlerinstall.vcxproj │ ├── rfidlerinstall.vcxproj.filters │ └── win-compat.manifest └── RFIDler-mon/ ├── deviceinfo.cpp ├── devicetracker.cpp ├── monitoroptions.cpp ├── resource.h ├── rfidlermonitor.rc ├── rfidlermonitor.sln ├── rfidlermonitor.vcxproj ├── rfidlermonitor.vcxproj.filters ├── rfidmonitor.cpp ├── rfidmonitor.h ├── taskbarfeatures.cpp ├── wcs_utilities.cpp ├── win-compat.manifest └── windowsversion.cpp