├── .gitattributes ├── .gitignore ├── CHANGELOG.md ├── COMPILING.txt ├── HACKING.txt ├── LICENSE.txt ├── Makefile ├── README.md ├── StandAloneModeDiagram.png ├── armsrc ├── BigBuf.c ├── BigBuf.h ├── LCD.c ├── LCD.h ├── Makefile ├── Makefile.orig ├── aes.c ├── aes.h ├── appmain.c ├── appmain.c.orig ├── appmain.c.rej ├── apps.h ├── apps.h.orig ├── crapto1.c ├── crapto1.h ├── crypto1.c ├── des.c ├── des.h ├── epa.c ├── epa.h ├── fonts.c ├── fonts.h ├── fpgaloader.c ├── fpgaloader.h ├── hfsnoop.c ├── hitag2.c ├── hitagS.c ├── iclass.c ├── iso14443.c ├── iso14443a.c ├── iso14443a.h ├── iso14443b.c ├── iso14443b.h ├── iso15693.c ├── ldscript ├── legicrf.c ├── legicrf.h ├── lfops.c ├── lfops.c.orig ├── lfsampling.c ├── lfsampling.h ├── mifarecmd.c ├── mifarecmd.h ├── mifaresniff.c ├── mifaresniff.h ├── mifareutil.c ├── mifareutil.h ├── obj │ └── .dummy ├── optimized_cipher.c ├── optimized_cipher.h ├── pcf7931.c ├── pcf7931.h ├── printf.c ├── printf.h ├── start.c ├── stdint.h ├── string.c ├── string.h ├── util.c └── util.h ├── bootrom ├── Makefile ├── bootrom.c ├── flash-reset.s ├── ldscript-flash ├── obj │ └── .dummy └── ram-reset.s ├── client ├── .history ├── Makefile ├── README-bitlib ├── aes.c ├── aes.h ├── cli.c ├── cmddata.c ├── cmddata.h ├── cmdhf.c ├── cmdhf.h ├── cmdhf14a.c ├── cmdhf14a.h ├── cmdhf14b.c ├── cmdhf14b.h ├── cmdhf15.c ├── cmdhf15.h ├── cmdhfepa.c ├── cmdhfepa.h ├── cmdhficlass.c ├── cmdhficlass.h ├── cmdhflegic.c ├── cmdhflegic.h ├── cmdhfmf.c ├── cmdhfmf.h ├── cmdhfmfu.c ├── cmdhfmfu.h ├── cmdhftopaz.c ├── cmdhftopaz.h ├── cmdhw.c ├── cmdhw.h ├── cmdlf.c ├── cmdlf.h ├── cmdlfawid.c ├── cmdlfawid.h ├── cmdlfem4x.c ├── cmdlfem4x.h ├── cmdlfhid.c ├── cmdlfhid.h ├── cmdlfhitag.c ├── cmdlfhitag.h ├── cmdlfio.c ├── cmdlfio.h ├── cmdlfpcf7931.c ├── cmdlfpcf7931.h ├── cmdlfpresco.c ├── cmdlfpresco.h ├── cmdlfpyramid.c ├── cmdlfpyramid.h ├── cmdlft55xx.c ├── cmdlft55xx.h ├── cmdlfti.c ├── cmdlfti.h ├── cmdlfviking.c ├── cmdlfviking.h ├── cmdmain.c ├── cmdmain.h ├── cmdparser.c ├── cmdparser.h ├── cmdscript.c ├── cmdscript.h ├── data.c ├── data.h ├── default_keys.dic ├── default_pwd.dic ├── elf.h ├── eml2UPPER.sh ├── eml2lower.sh ├── flash.c ├── flash.h ├── flasher.c ├── fpga_compress.c ├── gen_pm3mfsim_script.sh ├── graph.c ├── graph.h ├── guidummy.c ├── hid-flasher │ ├── Info.plist │ ├── Makefile │ ├── elf.h │ ├── flash.c │ ├── flash.h │ ├── flasher.c │ ├── obj │ │ └── .dummy │ ├── proxendian.h │ ├── proxmark3.h │ ├── proxusb.c │ ├── proxusb.h │ ├── sleep.h │ └── usb_cmd.h ├── hitag2.ht2 ├── loclass │ ├── cipher.c │ ├── cipher.h │ ├── cipherutils.c │ ├── cipherutils.h │ ├── des.c │ ├── des.h │ ├── elite_crack.c │ ├── elite_crack.h │ ├── fileutils.c │ ├── fileutils.h │ ├── iclass_dump.bin │ ├── ikeys.c │ ├── ikeys.h │ ├── loclass_main.h │ └── main.c ├── lualibs │ ├── commands.lua │ ├── default_toys.lua │ ├── getopt.lua │ ├── hf_reader.lua │ ├── html_dumplib.lua │ ├── htmlskel.lua │ ├── md5.lua │ ├── mf_default_keys.lua │ ├── precalc.lua │ ├── read14a.lua │ ├── taglib.lua │ └── utils.lua ├── mifarehost.c ├── mifarehost.h ├── nonce2key │ ├── crapto1.c │ ├── crapto1.h │ ├── crypto1.c │ ├── nonce2key.c │ └── nonce2key.h ├── obj │ ├── .dummy │ ├── loclass │ │ └── .dummy │ └── nonce2key │ │ └── .dummy ├── pm3_binlib.c ├── pm3_binlib.h ├── pm3_bit_limits.h ├── pm3_bitlib.c ├── pm3_bitlib.h ├── pm3_eml2mfd.py ├── pm3_eml_mfd_test.py ├── pm3_mfd2eml.py ├── polarssl_config.h ├── proxendian.h ├── proxgui.cpp ├── proxgui.h ├── proxguiqt.cpp ├── proxguiqt.h ├── proxmark3.c ├── proxmark3.h ├── scripting.c ├── scripting.h ├── scripts │ ├── 14araw.lua │ ├── cmdline.lua │ ├── didump.lua │ ├── dumptoemul.lua │ ├── emul2dump.lua │ ├── emul2html.lua │ ├── formatMifare.lua │ ├── hf_read.lua │ ├── htmldump.lua │ ├── mfkeys.lua │ ├── mifare_autopwn.lua │ ├── ndef_dump.lua │ ├── parameters.lua │ ├── remagic.lua │ ├── test.lua │ ├── test_t55x7_ask.lua │ ├── test_t55x7_bi.lua │ ├── test_t55x7_fsk.lua │ ├── test_t55x7_psk.lua │ ├── tnp3clone.lua │ ├── tnp3dump.lua │ ├── tnp3sim.lua │ └── tracetest.lua ├── sleep.c ├── sleep.h ├── snooper.c ├── uart.c ├── uart.h ├── ui.c ├── ui.h ├── unbind-proxmark ├── util.c └── util.h ├── common ├── Makefile.common ├── Makefile.common.orig ├── cmd.c ├── cmd.h ├── crc.c ├── crc.h ├── crc16.c ├── crc16.h ├── crc32.c ├── crc32.h ├── crc64.c ├── crc64.h ├── default_version.c ├── iso14443crc.c ├── iso14443crc.h ├── iso15693tools.c ├── iso15693tools.h ├── ldscript.common ├── legic_prng.c ├── lfdemod.c ├── lfdemod.h ├── protocols.c ├── protocols.h ├── sha1.c ├── sha1.h ├── usb_cdc.c └── usb_cdc.h ├── doc ├── Compiling Proxmark source and firmware upgrading v1.pdf ├── Proxmark III - Ubuntu GSG v1.pdf ├── Proxmark III - Windows 7 GSG v1.pdf ├── Proxmark III - Windows XP SP3 GSG v1.pdf ├── RFID_Antenna-Basic-Form.stl ├── RFID_Antenna-With-Lanyard-Hook.stl ├── proxmark3.brd ├── proxmark3.pdf ├── proxmark3.sch ├── proxmark3.xls ├── proxmark3_schema.pdf └── system.txt ├── driver ├── 77-mm-usb-device-blacklist.rules └── proxmark3.inf ├── fpga ├── Makefile ├── clk_divider.v ├── fpga.ucf ├── fpga_hf.bit ├── fpga_hf.v ├── fpga_lf.bit ├── fpga_lf.v ├── go.bat ├── hi_iso14443a.v ├── hi_read_rx_xcorr.v ├── hi_read_tx.v ├── hi_simulate.v ├── hi_sniffer.v ├── lf_edge_detect.v ├── lo_edge_detect.v ├── lo_passthru.v ├── lo_read.v ├── lo_simulate.v ├── lp20khz_1MSa_iir_filter.v ├── min_max_tracker.v ├── sim.tcl ├── testbed_fpga.v ├── testbed_hi_read_tx.v ├── testbed_hi_simulate.v ├── testbed_lo_read.v ├── testbed_lo_simulate.v ├── tests │ ├── Makefile │ ├── plot_edgedetect.py │ ├── tb_data │ │ ├── pcf7931_read_1MSA_data.filtered.gold │ │ ├── pcf7931_read_1MSA_data.high.gold │ │ ├── pcf7931_read_1MSA_data.highz.gold │ │ ├── pcf7931_read_1MSA_data.in │ │ ├── pcf7931_read_1MSA_data.low.gold │ │ ├── pcf7931_read_1MSA_data.lowz.gold │ │ ├── pcf7931_read_1MSA_data.max.gold │ │ ├── pcf7931_read_1MSA_data.min.gold │ │ ├── pcf7931_read_1MSA_data.state.gold │ │ ├── pcf7931_read_1MSA_data.time │ │ ├── pcf7931_read_1MSA_data.toggle.gold │ │ ├── pcf7931_write1byte_1MSA_data.filtered.gold │ │ ├── pcf7931_write1byte_1MSA_data.high.gold │ │ ├── pcf7931_write1byte_1MSA_data.highz.gold │ │ ├── pcf7931_write1byte_1MSA_data.in │ │ ├── pcf7931_write1byte_1MSA_data.low.gold │ │ ├── pcf7931_write1byte_1MSA_data.lowz.gold │ │ ├── pcf7931_write1byte_1MSA_data.max.gold │ │ ├── pcf7931_write1byte_1MSA_data.min.gold │ │ ├── pcf7931_write1byte_1MSA_data.state.gold │ │ ├── pcf7931_write1byte_1MSA_data.time │ │ └── pcf7931_write1byte_1MSA_data.toggle.gold │ ├── tb_lf_edge_detect.v │ ├── tb_lp20khz_1MSa_iir_filter.v │ └── tb_min_max_tracker.v ├── util.v ├── xst_hf.scr └── xst_lf.scr ├── include ├── at91sam7s512.h ├── common.h ├── config_gpio.h ├── hitag2.h ├── hitagS.h ├── legic_prng.h ├── mifare.h ├── proxmark3.h └── usb_cmd.h ├── liblua ├── Makefile ├── lapi.c ├── lapi.h ├── lauxlib.c ├── lauxlib.h ├── lbaselib.c ├── lbitlib.c ├── lcode.c ├── lcode.h ├── lcorolib.c ├── lctype.c ├── lctype.h ├── ldblib.c ├── ldebug.c ├── ldebug.h ├── ldo.c ├── ldo.h ├── ldump.c ├── lfunc.c ├── lfunc.h ├── lgc.c ├── lgc.h ├── linit.c ├── liolib.c ├── llex.c ├── llex.h ├── llimits.h ├── lmathlib.c ├── lmem.c ├── lmem.h ├── loadlib.c ├── lobject.c ├── lobject.h ├── lopcodes.c ├── lopcodes.h ├── loslib.c ├── lparser.c ├── lparser.h ├── lstate.c ├── lstate.h ├── lstring.c ├── lstring.h ├── lstrlib.c ├── ltable.c ├── ltable.h ├── ltablib.c ├── ltm.c ├── ltm.h ├── lua.c ├── lua.h ├── lua.hpp ├── luac.c ├── luaconf.h ├── lualib.h ├── lundump.c ├── lundump.h ├── lvm.c ├── lvm.h ├── lzio.c └── lzio.h ├── pcb ├── lf-antenna │ ├── CAD │ │ └── lf-antenna.brd │ ├── CAM │ │ ├── lf-antenna.GBL │ │ ├── lf-antenna.GBO │ │ ├── lf-antenna.GBP │ │ ├── lf-antenna.GBS │ │ ├── lf-antenna.GML │ │ ├── lf-antenna.GTL │ │ ├── lf-antenna.GTO │ │ ├── lf-antenna.GTP │ │ ├── lf-antenna.GTS │ │ ├── lf-antenna.TXT │ │ ├── lf-antenna.do │ │ ├── lf-antenna.dri │ │ └── lf-antenna.gpi │ ├── MFG │ │ ├── lf-antenna_bot.pdf │ │ ├── lf-antenna_cam.zip │ │ └── lf-antenna_top.pdf │ └── README.md ├── proxmark3_fix │ ├── BOT_layer_preview.png │ ├── CAD │ │ ├── change_log.txt │ │ ├── proxmark3.brd │ │ ├── proxmark3.sch │ │ └── proxmark3_exported_and_modified_components.lbr │ ├── CAM │ │ ├── README.txt │ │ ├── proxmark3.GBL │ │ ├── proxmark3.GBO │ │ ├── proxmark3.GBP │ │ ├── proxmark3.GBS │ │ ├── proxmark3.GL1 │ │ ├── proxmark3.GL2 │ │ ├── proxmark3.GML │ │ ├── proxmark3.GTL │ │ ├── proxmark3.GTO │ │ ├── proxmark3.GTP │ │ ├── proxmark3.GTS │ │ ├── proxmark3.TXT │ │ ├── proxmark3.do │ │ ├── proxmark3.dri │ │ └── proxmark3.gpi │ ├── IN1_layer_preview.png │ ├── IN2_layer_preview.png │ ├── MFG │ │ ├── proxmark3_IN1.pdf │ │ ├── proxmark3_IN2.pdf │ │ ├── proxmark3_bot.pdf │ │ ├── proxmark3_cam.zip │ │ ├── proxmark3_sch.pdf │ │ └── proxmark3_top.pdf │ ├── README.md │ └── TOP_layer_preview.png └── proxmark3_original_cad_cam_zip_files │ ├── README.md │ ├── proxmark3-eagle.zip │ └── proxmark3-mfgr-data.zip ├── recovery └── Makefile ├── tools ├── at91sam7s256-armusbocd-flash-program.cfg ├── at91sam7s256-armusbocd.cfg ├── at91sam7s256-jtagkey.cfg ├── at91sam7s256-wiggler.cfg ├── at91sam7s512-jtagkey.cfg ├── findbits.py ├── findbits_test.py ├── install-gnuarm4.sh ├── mfkey │ ├── Makefile │ ├── crapto1.c │ ├── crapto1.h │ ├── crypto1.c │ ├── example_trace.txt │ ├── mfkey32.c │ └── mfkey64.c ├── mkversion.pl ├── nonce2key │ ├── Makefile │ ├── crapto1.c │ ├── crapto1.h │ ├── crypto1.c │ └── nonce2key.c ├── rfidtest.pl ├── srecswap.pl └── xorcheck.py ├── traces ├── ATA5577-HIDemu-FC1-C9.pm3 ├── AWID-15-259.pm3 ├── Casi-12ed825c29.pm3 ├── EM4102-1.pm3 ├── EM4102-2.pm3 ├── EM4102-3.pm3 ├── EM4102-Fob.pm3 ├── HID-weak-fob-11647.pm3 ├── Paradox-96_40426-APJN08.pm3 ├── README.txt ├── TITEST.TXT ├── Transit999-best.pm3 ├── em4102-clamshell.pm3 ├── em4102-thin.pm3 ├── em4x05.pm3 ├── em4x50.pm3 ├── hid-proxCardII-05512-11432784-1.pm3 ├── homeagain.pm3 ├── homeagain1600.pm3 ├── indala-00002-12345678-1A.pm3 ├── indala-504278295.pm3 ├── ioProx-XSF-01-BE-03011.pm3 ├── ioprox-XSF-01-3B-44725.pm3 ├── keri.pm3 ├── modulation-ask-biph-50.pm3 ├── modulation-ask-man-100.pm3 ├── modulation-ask-man-128.pm3 ├── modulation-ask-man-16.pm3 ├── modulation-ask-man-32.pm3 ├── modulation-ask-man-40.pm3 ├── modulation-ask-man-8.pm3 ├── modulation-biphase.pm3 ├── modulation-data.dat ├── modulation-direct-32.pm3 ├── modulation-direct-40.pm3 ├── modulation-direct-50.pm3 ├── modulation-fsk1-50.pm3 ├── modulation-fsk1.pm3 ├── modulation-fsk1a-50.pm3 ├── modulation-fsk2-50.pm3 ├── modulation-fsk2.pm3 ├── modulation-fsk2a-40.pm3 ├── modulation-fsk2a-50.pm3 ├── modulation-manchester.pm3 ├── modulation-nrz.pm3 ├── modulation-psk1-32-4.pm3 ├── modulation-psk1-64-8.pm3 ├── modulation-psk1.pm3 ├── modulation-psk2-32-2.pm3 ├── modulation-psk2.pm3 ├── modulation-psk3-32-8.pm3 └── modulation-psk3.pm3 └── zlib ├── ChangeLog ├── FAQ ├── README ├── adler32.c ├── deflate.c ├── deflate.h ├── inffast.c ├── inffast.h ├── inffixed.h ├── inflate.c ├── inflate.h ├── inftrees.c ├── inftrees.h ├── trees.c ├── trees.h ├── zconf.h ├── zlib.h ├── zutil.c └── zutil.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /COMPILING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/COMPILING.txt -------------------------------------------------------------------------------- /HACKING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/HACKING.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/README.md -------------------------------------------------------------------------------- /StandAloneModeDiagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/StandAloneModeDiagram.png -------------------------------------------------------------------------------- /armsrc/BigBuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/armsrc/BigBuf.c -------------------------------------------------------------------------------- /armsrc/BigBuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/armsrc/BigBuf.h -------------------------------------------------------------------------------- /armsrc/LCD.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/armsrc/LCD.c -------------------------------------------------------------------------------- /armsrc/LCD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/armsrc/LCD.h -------------------------------------------------------------------------------- /armsrc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/armsrc/Makefile -------------------------------------------------------------------------------- /armsrc/Makefile.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/armsrc/Makefile.orig -------------------------------------------------------------------------------- /armsrc/aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/armsrc/aes.c -------------------------------------------------------------------------------- /armsrc/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/armsrc/aes.h -------------------------------------------------------------------------------- /armsrc/appmain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/armsrc/appmain.c -------------------------------------------------------------------------------- /armsrc/appmain.c.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/armsrc/appmain.c.orig -------------------------------------------------------------------------------- /armsrc/appmain.c.rej: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/armsrc/appmain.c.rej -------------------------------------------------------------------------------- /armsrc/apps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/armsrc/apps.h -------------------------------------------------------------------------------- /armsrc/apps.h.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/armsrc/apps.h.orig -------------------------------------------------------------------------------- /armsrc/crapto1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/armsrc/crapto1.c -------------------------------------------------------------------------------- /armsrc/crapto1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/armsrc/crapto1.h -------------------------------------------------------------------------------- /armsrc/crypto1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/armsrc/crypto1.c -------------------------------------------------------------------------------- /armsrc/des.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/armsrc/des.c -------------------------------------------------------------------------------- /armsrc/des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/armsrc/des.h -------------------------------------------------------------------------------- /armsrc/epa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/armsrc/epa.c -------------------------------------------------------------------------------- /armsrc/epa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/armsrc/epa.h -------------------------------------------------------------------------------- /armsrc/fonts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/armsrc/fonts.c -------------------------------------------------------------------------------- /armsrc/fonts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/armsrc/fonts.h -------------------------------------------------------------------------------- /armsrc/fpgaloader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/armsrc/fpgaloader.c -------------------------------------------------------------------------------- /armsrc/fpgaloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/armsrc/fpgaloader.h -------------------------------------------------------------------------------- /armsrc/hfsnoop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/armsrc/hfsnoop.c -------------------------------------------------------------------------------- /armsrc/hitag2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/armsrc/hitag2.c -------------------------------------------------------------------------------- /armsrc/hitagS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/armsrc/hitagS.c -------------------------------------------------------------------------------- /armsrc/iclass.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/armsrc/iclass.c -------------------------------------------------------------------------------- /armsrc/iso14443.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/armsrc/iso14443.c -------------------------------------------------------------------------------- /armsrc/iso14443a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/armsrc/iso14443a.c -------------------------------------------------------------------------------- /armsrc/iso14443a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/armsrc/iso14443a.h -------------------------------------------------------------------------------- /armsrc/iso14443b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/armsrc/iso14443b.c -------------------------------------------------------------------------------- /armsrc/iso14443b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/armsrc/iso14443b.h -------------------------------------------------------------------------------- /armsrc/iso15693.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/armsrc/iso15693.c -------------------------------------------------------------------------------- /armsrc/ldscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/armsrc/ldscript -------------------------------------------------------------------------------- /armsrc/legicrf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/armsrc/legicrf.c -------------------------------------------------------------------------------- /armsrc/legicrf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/armsrc/legicrf.h -------------------------------------------------------------------------------- /armsrc/lfops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/armsrc/lfops.c -------------------------------------------------------------------------------- /armsrc/lfops.c.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/armsrc/lfops.c.orig -------------------------------------------------------------------------------- /armsrc/lfsampling.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/armsrc/lfsampling.c -------------------------------------------------------------------------------- /armsrc/lfsampling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/armsrc/lfsampling.h -------------------------------------------------------------------------------- /armsrc/mifarecmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/armsrc/mifarecmd.c -------------------------------------------------------------------------------- /armsrc/mifarecmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/armsrc/mifarecmd.h -------------------------------------------------------------------------------- /armsrc/mifaresniff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/armsrc/mifaresniff.c -------------------------------------------------------------------------------- /armsrc/mifaresniff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/armsrc/mifaresniff.h -------------------------------------------------------------------------------- /armsrc/mifareutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/armsrc/mifareutil.c -------------------------------------------------------------------------------- /armsrc/mifareutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/armsrc/mifareutil.h -------------------------------------------------------------------------------- /armsrc/obj/.dummy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /armsrc/optimized_cipher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/armsrc/optimized_cipher.c -------------------------------------------------------------------------------- /armsrc/optimized_cipher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/armsrc/optimized_cipher.h -------------------------------------------------------------------------------- /armsrc/pcf7931.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/armsrc/pcf7931.c -------------------------------------------------------------------------------- /armsrc/pcf7931.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/armsrc/pcf7931.h -------------------------------------------------------------------------------- /armsrc/printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/armsrc/printf.c -------------------------------------------------------------------------------- /armsrc/printf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/armsrc/printf.h -------------------------------------------------------------------------------- /armsrc/start.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/armsrc/start.c -------------------------------------------------------------------------------- /armsrc/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/armsrc/stdint.h -------------------------------------------------------------------------------- /armsrc/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/armsrc/string.c -------------------------------------------------------------------------------- /armsrc/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/armsrc/string.h -------------------------------------------------------------------------------- /armsrc/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/armsrc/util.c -------------------------------------------------------------------------------- /armsrc/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/armsrc/util.h -------------------------------------------------------------------------------- /bootrom/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/bootrom/Makefile -------------------------------------------------------------------------------- /bootrom/bootrom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/bootrom/bootrom.c -------------------------------------------------------------------------------- /bootrom/flash-reset.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/bootrom/flash-reset.s -------------------------------------------------------------------------------- /bootrom/ldscript-flash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/bootrom/ldscript-flash -------------------------------------------------------------------------------- /bootrom/obj/.dummy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bootrom/ram-reset.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/bootrom/ram-reset.s -------------------------------------------------------------------------------- /client/.history: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/.history -------------------------------------------------------------------------------- /client/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/Makefile -------------------------------------------------------------------------------- /client/README-bitlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/README-bitlib -------------------------------------------------------------------------------- /client/aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/aes.c -------------------------------------------------------------------------------- /client/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/aes.h -------------------------------------------------------------------------------- /client/cli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/cli.c -------------------------------------------------------------------------------- /client/cmddata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/cmddata.c -------------------------------------------------------------------------------- /client/cmddata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/cmddata.h -------------------------------------------------------------------------------- /client/cmdhf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/cmdhf.c -------------------------------------------------------------------------------- /client/cmdhf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/cmdhf.h -------------------------------------------------------------------------------- /client/cmdhf14a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/cmdhf14a.c -------------------------------------------------------------------------------- /client/cmdhf14a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/cmdhf14a.h -------------------------------------------------------------------------------- /client/cmdhf14b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/cmdhf14b.c -------------------------------------------------------------------------------- /client/cmdhf14b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/cmdhf14b.h -------------------------------------------------------------------------------- /client/cmdhf15.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/cmdhf15.c -------------------------------------------------------------------------------- /client/cmdhf15.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/cmdhf15.h -------------------------------------------------------------------------------- /client/cmdhfepa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/cmdhfepa.c -------------------------------------------------------------------------------- /client/cmdhfepa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/cmdhfepa.h -------------------------------------------------------------------------------- /client/cmdhficlass.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/cmdhficlass.c -------------------------------------------------------------------------------- /client/cmdhficlass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/cmdhficlass.h -------------------------------------------------------------------------------- /client/cmdhflegic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/cmdhflegic.c -------------------------------------------------------------------------------- /client/cmdhflegic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/cmdhflegic.h -------------------------------------------------------------------------------- /client/cmdhfmf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/cmdhfmf.c -------------------------------------------------------------------------------- /client/cmdhfmf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/cmdhfmf.h -------------------------------------------------------------------------------- /client/cmdhfmfu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/cmdhfmfu.c -------------------------------------------------------------------------------- /client/cmdhfmfu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/cmdhfmfu.h -------------------------------------------------------------------------------- /client/cmdhftopaz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/cmdhftopaz.c -------------------------------------------------------------------------------- /client/cmdhftopaz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/cmdhftopaz.h -------------------------------------------------------------------------------- /client/cmdhw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/cmdhw.c -------------------------------------------------------------------------------- /client/cmdhw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/cmdhw.h -------------------------------------------------------------------------------- /client/cmdlf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/cmdlf.c -------------------------------------------------------------------------------- /client/cmdlf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/cmdlf.h -------------------------------------------------------------------------------- /client/cmdlfawid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/cmdlfawid.c -------------------------------------------------------------------------------- /client/cmdlfawid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/cmdlfawid.h -------------------------------------------------------------------------------- /client/cmdlfem4x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/cmdlfem4x.c -------------------------------------------------------------------------------- /client/cmdlfem4x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/cmdlfem4x.h -------------------------------------------------------------------------------- /client/cmdlfhid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/cmdlfhid.c -------------------------------------------------------------------------------- /client/cmdlfhid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/cmdlfhid.h -------------------------------------------------------------------------------- /client/cmdlfhitag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/cmdlfhitag.c -------------------------------------------------------------------------------- /client/cmdlfhitag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/cmdlfhitag.h -------------------------------------------------------------------------------- /client/cmdlfio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/cmdlfio.c -------------------------------------------------------------------------------- /client/cmdlfio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/cmdlfio.h -------------------------------------------------------------------------------- /client/cmdlfpcf7931.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/cmdlfpcf7931.c -------------------------------------------------------------------------------- /client/cmdlfpcf7931.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/cmdlfpcf7931.h -------------------------------------------------------------------------------- /client/cmdlfpresco.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/cmdlfpresco.c -------------------------------------------------------------------------------- /client/cmdlfpresco.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/cmdlfpresco.h -------------------------------------------------------------------------------- /client/cmdlfpyramid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/cmdlfpyramid.c -------------------------------------------------------------------------------- /client/cmdlfpyramid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/cmdlfpyramid.h -------------------------------------------------------------------------------- /client/cmdlft55xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/cmdlft55xx.c -------------------------------------------------------------------------------- /client/cmdlft55xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/cmdlft55xx.h -------------------------------------------------------------------------------- /client/cmdlfti.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/cmdlfti.c -------------------------------------------------------------------------------- /client/cmdlfti.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/cmdlfti.h -------------------------------------------------------------------------------- /client/cmdlfviking.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/cmdlfviking.c -------------------------------------------------------------------------------- /client/cmdlfviking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/cmdlfviking.h -------------------------------------------------------------------------------- /client/cmdmain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/cmdmain.c -------------------------------------------------------------------------------- /client/cmdmain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/cmdmain.h -------------------------------------------------------------------------------- /client/cmdparser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/cmdparser.c -------------------------------------------------------------------------------- /client/cmdparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/cmdparser.h -------------------------------------------------------------------------------- /client/cmdscript.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/cmdscript.c -------------------------------------------------------------------------------- /client/cmdscript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/cmdscript.h -------------------------------------------------------------------------------- /client/data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/data.c -------------------------------------------------------------------------------- /client/data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/data.h -------------------------------------------------------------------------------- /client/default_keys.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/default_keys.dic -------------------------------------------------------------------------------- /client/default_pwd.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/default_pwd.dic -------------------------------------------------------------------------------- /client/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/elf.h -------------------------------------------------------------------------------- /client/eml2UPPER.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/eml2UPPER.sh -------------------------------------------------------------------------------- /client/eml2lower.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/eml2lower.sh -------------------------------------------------------------------------------- /client/flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/flash.c -------------------------------------------------------------------------------- /client/flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/flash.h -------------------------------------------------------------------------------- /client/flasher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/flasher.c -------------------------------------------------------------------------------- /client/fpga_compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/fpga_compress.c -------------------------------------------------------------------------------- /client/gen_pm3mfsim_script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/gen_pm3mfsim_script.sh -------------------------------------------------------------------------------- /client/graph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/graph.c -------------------------------------------------------------------------------- /client/graph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/graph.h -------------------------------------------------------------------------------- /client/guidummy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/guidummy.c -------------------------------------------------------------------------------- /client/hid-flasher/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/hid-flasher/Info.plist -------------------------------------------------------------------------------- /client/hid-flasher/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/hid-flasher/Makefile -------------------------------------------------------------------------------- /client/hid-flasher/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/hid-flasher/elf.h -------------------------------------------------------------------------------- /client/hid-flasher/flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/hid-flasher/flash.c -------------------------------------------------------------------------------- /client/hid-flasher/flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/hid-flasher/flash.h -------------------------------------------------------------------------------- /client/hid-flasher/flasher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/hid-flasher/flasher.c -------------------------------------------------------------------------------- /client/hid-flasher/obj/.dummy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/hid-flasher/proxendian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/hid-flasher/proxendian.h -------------------------------------------------------------------------------- /client/hid-flasher/proxmark3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/hid-flasher/proxmark3.h -------------------------------------------------------------------------------- /client/hid-flasher/proxusb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/hid-flasher/proxusb.c -------------------------------------------------------------------------------- /client/hid-flasher/proxusb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/hid-flasher/proxusb.h -------------------------------------------------------------------------------- /client/hid-flasher/sleep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/hid-flasher/sleep.h -------------------------------------------------------------------------------- /client/hid-flasher/usb_cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/hid-flasher/usb_cmd.h -------------------------------------------------------------------------------- /client/hitag2.ht2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/hitag2.ht2 -------------------------------------------------------------------------------- /client/loclass/cipher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/loclass/cipher.c -------------------------------------------------------------------------------- /client/loclass/cipher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/loclass/cipher.h -------------------------------------------------------------------------------- /client/loclass/cipherutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/loclass/cipherutils.c -------------------------------------------------------------------------------- /client/loclass/cipherutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/loclass/cipherutils.h -------------------------------------------------------------------------------- /client/loclass/des.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/loclass/des.c -------------------------------------------------------------------------------- /client/loclass/des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/loclass/des.h -------------------------------------------------------------------------------- /client/loclass/elite_crack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/loclass/elite_crack.c -------------------------------------------------------------------------------- /client/loclass/elite_crack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/loclass/elite_crack.h -------------------------------------------------------------------------------- /client/loclass/fileutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/loclass/fileutils.c -------------------------------------------------------------------------------- /client/loclass/fileutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/loclass/fileutils.h -------------------------------------------------------------------------------- /client/loclass/iclass_dump.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/loclass/iclass_dump.bin -------------------------------------------------------------------------------- /client/loclass/ikeys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/loclass/ikeys.c -------------------------------------------------------------------------------- /client/loclass/ikeys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/loclass/ikeys.h -------------------------------------------------------------------------------- /client/loclass/loclass_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/loclass/loclass_main.h -------------------------------------------------------------------------------- /client/loclass/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/loclass/main.c -------------------------------------------------------------------------------- /client/lualibs/commands.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/lualibs/commands.lua -------------------------------------------------------------------------------- /client/lualibs/default_toys.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/lualibs/default_toys.lua -------------------------------------------------------------------------------- /client/lualibs/getopt.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/lualibs/getopt.lua -------------------------------------------------------------------------------- /client/lualibs/hf_reader.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/lualibs/hf_reader.lua -------------------------------------------------------------------------------- /client/lualibs/html_dumplib.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/lualibs/html_dumplib.lua -------------------------------------------------------------------------------- /client/lualibs/htmlskel.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/lualibs/htmlskel.lua -------------------------------------------------------------------------------- /client/lualibs/md5.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/lualibs/md5.lua -------------------------------------------------------------------------------- /client/lualibs/mf_default_keys.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/lualibs/mf_default_keys.lua -------------------------------------------------------------------------------- /client/lualibs/precalc.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/lualibs/precalc.lua -------------------------------------------------------------------------------- /client/lualibs/read14a.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/lualibs/read14a.lua -------------------------------------------------------------------------------- /client/lualibs/taglib.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/lualibs/taglib.lua -------------------------------------------------------------------------------- /client/lualibs/utils.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/lualibs/utils.lua -------------------------------------------------------------------------------- /client/mifarehost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/mifarehost.c -------------------------------------------------------------------------------- /client/mifarehost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/mifarehost.h -------------------------------------------------------------------------------- /client/nonce2key/crapto1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/nonce2key/crapto1.c -------------------------------------------------------------------------------- /client/nonce2key/crapto1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/nonce2key/crapto1.h -------------------------------------------------------------------------------- /client/nonce2key/crypto1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/nonce2key/crypto1.c -------------------------------------------------------------------------------- /client/nonce2key/nonce2key.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/nonce2key/nonce2key.c -------------------------------------------------------------------------------- /client/nonce2key/nonce2key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/nonce2key/nonce2key.h -------------------------------------------------------------------------------- /client/obj/.dummy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/obj/loclass/.dummy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/obj/nonce2key/.dummy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/pm3_binlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/pm3_binlib.c -------------------------------------------------------------------------------- /client/pm3_binlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/pm3_binlib.h -------------------------------------------------------------------------------- /client/pm3_bit_limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/pm3_bit_limits.h -------------------------------------------------------------------------------- /client/pm3_bitlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/pm3_bitlib.c -------------------------------------------------------------------------------- /client/pm3_bitlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/pm3_bitlib.h -------------------------------------------------------------------------------- /client/pm3_eml2mfd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/pm3_eml2mfd.py -------------------------------------------------------------------------------- /client/pm3_eml_mfd_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/pm3_eml_mfd_test.py -------------------------------------------------------------------------------- /client/pm3_mfd2eml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/pm3_mfd2eml.py -------------------------------------------------------------------------------- /client/polarssl_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/polarssl_config.h -------------------------------------------------------------------------------- /client/proxendian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/proxendian.h -------------------------------------------------------------------------------- /client/proxgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/proxgui.cpp -------------------------------------------------------------------------------- /client/proxgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/proxgui.h -------------------------------------------------------------------------------- /client/proxguiqt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/proxguiqt.cpp -------------------------------------------------------------------------------- /client/proxguiqt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/proxguiqt.h -------------------------------------------------------------------------------- /client/proxmark3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/proxmark3.c -------------------------------------------------------------------------------- /client/proxmark3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/proxmark3.h -------------------------------------------------------------------------------- /client/scripting.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/scripting.c -------------------------------------------------------------------------------- /client/scripting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/scripting.h -------------------------------------------------------------------------------- /client/scripts/14araw.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/scripts/14araw.lua -------------------------------------------------------------------------------- /client/scripts/cmdline.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/scripts/cmdline.lua -------------------------------------------------------------------------------- /client/scripts/didump.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/scripts/didump.lua -------------------------------------------------------------------------------- /client/scripts/dumptoemul.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/scripts/dumptoemul.lua -------------------------------------------------------------------------------- /client/scripts/emul2dump.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/scripts/emul2dump.lua -------------------------------------------------------------------------------- /client/scripts/emul2html.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/scripts/emul2html.lua -------------------------------------------------------------------------------- /client/scripts/formatMifare.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/scripts/formatMifare.lua -------------------------------------------------------------------------------- /client/scripts/hf_read.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/scripts/hf_read.lua -------------------------------------------------------------------------------- /client/scripts/htmldump.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/scripts/htmldump.lua -------------------------------------------------------------------------------- /client/scripts/mfkeys.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/scripts/mfkeys.lua -------------------------------------------------------------------------------- /client/scripts/mifare_autopwn.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/scripts/mifare_autopwn.lua -------------------------------------------------------------------------------- /client/scripts/ndef_dump.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/scripts/ndef_dump.lua -------------------------------------------------------------------------------- /client/scripts/parameters.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/scripts/parameters.lua -------------------------------------------------------------------------------- /client/scripts/remagic.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/scripts/remagic.lua -------------------------------------------------------------------------------- /client/scripts/test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/scripts/test.lua -------------------------------------------------------------------------------- /client/scripts/test_t55x7_ask.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/scripts/test_t55x7_ask.lua -------------------------------------------------------------------------------- /client/scripts/test_t55x7_bi.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/scripts/test_t55x7_bi.lua -------------------------------------------------------------------------------- /client/scripts/test_t55x7_fsk.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/scripts/test_t55x7_fsk.lua -------------------------------------------------------------------------------- /client/scripts/test_t55x7_psk.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/scripts/test_t55x7_psk.lua -------------------------------------------------------------------------------- /client/scripts/tnp3clone.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/scripts/tnp3clone.lua -------------------------------------------------------------------------------- /client/scripts/tnp3dump.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/scripts/tnp3dump.lua -------------------------------------------------------------------------------- /client/scripts/tnp3sim.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/scripts/tnp3sim.lua -------------------------------------------------------------------------------- /client/scripts/tracetest.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/scripts/tracetest.lua -------------------------------------------------------------------------------- /client/sleep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/sleep.c -------------------------------------------------------------------------------- /client/sleep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/sleep.h -------------------------------------------------------------------------------- /client/snooper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/snooper.c -------------------------------------------------------------------------------- /client/uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/uart.c -------------------------------------------------------------------------------- /client/uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/uart.h -------------------------------------------------------------------------------- /client/ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/ui.c -------------------------------------------------------------------------------- /client/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/ui.h -------------------------------------------------------------------------------- /client/unbind-proxmark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/unbind-proxmark -------------------------------------------------------------------------------- /client/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/util.c -------------------------------------------------------------------------------- /client/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/client/util.h -------------------------------------------------------------------------------- /common/Makefile.common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/common/Makefile.common -------------------------------------------------------------------------------- /common/Makefile.common.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/common/Makefile.common.orig -------------------------------------------------------------------------------- /common/cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/common/cmd.c -------------------------------------------------------------------------------- /common/cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/common/cmd.h -------------------------------------------------------------------------------- /common/crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/common/crc.c -------------------------------------------------------------------------------- /common/crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/common/crc.h -------------------------------------------------------------------------------- /common/crc16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/common/crc16.c -------------------------------------------------------------------------------- /common/crc16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/common/crc16.h -------------------------------------------------------------------------------- /common/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/common/crc32.c -------------------------------------------------------------------------------- /common/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/common/crc32.h -------------------------------------------------------------------------------- /common/crc64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/common/crc64.c -------------------------------------------------------------------------------- /common/crc64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/common/crc64.h -------------------------------------------------------------------------------- /common/default_version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/common/default_version.c -------------------------------------------------------------------------------- /common/iso14443crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/common/iso14443crc.c -------------------------------------------------------------------------------- /common/iso14443crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/common/iso14443crc.h -------------------------------------------------------------------------------- /common/iso15693tools.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/common/iso15693tools.c -------------------------------------------------------------------------------- /common/iso15693tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/common/iso15693tools.h -------------------------------------------------------------------------------- /common/ldscript.common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/common/ldscript.common -------------------------------------------------------------------------------- /common/legic_prng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/common/legic_prng.c -------------------------------------------------------------------------------- /common/lfdemod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/common/lfdemod.c -------------------------------------------------------------------------------- /common/lfdemod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/common/lfdemod.h -------------------------------------------------------------------------------- /common/protocols.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/common/protocols.c -------------------------------------------------------------------------------- /common/protocols.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/common/protocols.h -------------------------------------------------------------------------------- /common/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/common/sha1.c -------------------------------------------------------------------------------- /common/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/common/sha1.h -------------------------------------------------------------------------------- /common/usb_cdc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/common/usb_cdc.c -------------------------------------------------------------------------------- /common/usb_cdc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/common/usb_cdc.h -------------------------------------------------------------------------------- /doc/Compiling Proxmark source and firmware upgrading v1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/doc/Compiling Proxmark source and firmware upgrading v1.pdf -------------------------------------------------------------------------------- /doc/Proxmark III - Ubuntu GSG v1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/doc/Proxmark III - Ubuntu GSG v1.pdf -------------------------------------------------------------------------------- /doc/Proxmark III - Windows 7 GSG v1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/doc/Proxmark III - Windows 7 GSG v1.pdf -------------------------------------------------------------------------------- /doc/Proxmark III - Windows XP SP3 GSG v1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/doc/Proxmark III - Windows XP SP3 GSG v1.pdf -------------------------------------------------------------------------------- /doc/RFID_Antenna-Basic-Form.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/doc/RFID_Antenna-Basic-Form.stl -------------------------------------------------------------------------------- /doc/RFID_Antenna-With-Lanyard-Hook.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/doc/RFID_Antenna-With-Lanyard-Hook.stl -------------------------------------------------------------------------------- /doc/proxmark3.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/doc/proxmark3.brd -------------------------------------------------------------------------------- /doc/proxmark3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/doc/proxmark3.pdf -------------------------------------------------------------------------------- /doc/proxmark3.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/doc/proxmark3.sch -------------------------------------------------------------------------------- /doc/proxmark3.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/doc/proxmark3.xls -------------------------------------------------------------------------------- /doc/proxmark3_schema.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/doc/proxmark3_schema.pdf -------------------------------------------------------------------------------- /doc/system.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/doc/system.txt -------------------------------------------------------------------------------- /driver/77-mm-usb-device-blacklist.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/driver/77-mm-usb-device-blacklist.rules -------------------------------------------------------------------------------- /driver/proxmark3.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/driver/proxmark3.inf -------------------------------------------------------------------------------- /fpga/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/fpga/Makefile -------------------------------------------------------------------------------- /fpga/clk_divider.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/fpga/clk_divider.v -------------------------------------------------------------------------------- /fpga/fpga.ucf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/fpga/fpga.ucf -------------------------------------------------------------------------------- /fpga/fpga_hf.bit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/fpga/fpga_hf.bit -------------------------------------------------------------------------------- /fpga/fpga_hf.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/fpga/fpga_hf.v -------------------------------------------------------------------------------- /fpga/fpga_lf.bit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/fpga/fpga_lf.bit -------------------------------------------------------------------------------- /fpga/fpga_lf.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/fpga/fpga_lf.v -------------------------------------------------------------------------------- /fpga/go.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/fpga/go.bat -------------------------------------------------------------------------------- /fpga/hi_iso14443a.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/fpga/hi_iso14443a.v -------------------------------------------------------------------------------- /fpga/hi_read_rx_xcorr.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/fpga/hi_read_rx_xcorr.v -------------------------------------------------------------------------------- /fpga/hi_read_tx.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/fpga/hi_read_tx.v -------------------------------------------------------------------------------- /fpga/hi_simulate.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/fpga/hi_simulate.v -------------------------------------------------------------------------------- /fpga/hi_sniffer.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/fpga/hi_sniffer.v -------------------------------------------------------------------------------- /fpga/lf_edge_detect.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/fpga/lf_edge_detect.v -------------------------------------------------------------------------------- /fpga/lo_edge_detect.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/fpga/lo_edge_detect.v -------------------------------------------------------------------------------- /fpga/lo_passthru.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/fpga/lo_passthru.v -------------------------------------------------------------------------------- /fpga/lo_read.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/fpga/lo_read.v -------------------------------------------------------------------------------- /fpga/lo_simulate.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/fpga/lo_simulate.v -------------------------------------------------------------------------------- /fpga/lp20khz_1MSa_iir_filter.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/fpga/lp20khz_1MSa_iir_filter.v -------------------------------------------------------------------------------- /fpga/min_max_tracker.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/fpga/min_max_tracker.v -------------------------------------------------------------------------------- /fpga/sim.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/fpga/sim.tcl -------------------------------------------------------------------------------- /fpga/testbed_fpga.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/fpga/testbed_fpga.v -------------------------------------------------------------------------------- /fpga/testbed_hi_read_tx.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/fpga/testbed_hi_read_tx.v -------------------------------------------------------------------------------- /fpga/testbed_hi_simulate.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/fpga/testbed_hi_simulate.v -------------------------------------------------------------------------------- /fpga/testbed_lo_read.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/fpga/testbed_lo_read.v -------------------------------------------------------------------------------- /fpga/testbed_lo_simulate.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/fpga/testbed_lo_simulate.v -------------------------------------------------------------------------------- /fpga/tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/fpga/tests/Makefile -------------------------------------------------------------------------------- /fpga/tests/plot_edgedetect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/fpga/tests/plot_edgedetect.py -------------------------------------------------------------------------------- /fpga/tests/tb_data/pcf7931_read_1MSA_data.filtered.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/fpga/tests/tb_data/pcf7931_read_1MSA_data.filtered.gold -------------------------------------------------------------------------------- /fpga/tests/tb_data/pcf7931_read_1MSA_data.high.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/fpga/tests/tb_data/pcf7931_read_1MSA_data.high.gold -------------------------------------------------------------------------------- /fpga/tests/tb_data/pcf7931_read_1MSA_data.highz.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/fpga/tests/tb_data/pcf7931_read_1MSA_data.highz.gold -------------------------------------------------------------------------------- /fpga/tests/tb_data/pcf7931_read_1MSA_data.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/fpga/tests/tb_data/pcf7931_read_1MSA_data.in -------------------------------------------------------------------------------- /fpga/tests/tb_data/pcf7931_read_1MSA_data.low.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/fpga/tests/tb_data/pcf7931_read_1MSA_data.low.gold -------------------------------------------------------------------------------- /fpga/tests/tb_data/pcf7931_read_1MSA_data.lowz.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/fpga/tests/tb_data/pcf7931_read_1MSA_data.lowz.gold -------------------------------------------------------------------------------- /fpga/tests/tb_data/pcf7931_read_1MSA_data.max.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/fpga/tests/tb_data/pcf7931_read_1MSA_data.max.gold -------------------------------------------------------------------------------- /fpga/tests/tb_data/pcf7931_read_1MSA_data.min.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/fpga/tests/tb_data/pcf7931_read_1MSA_data.min.gold -------------------------------------------------------------------------------- /fpga/tests/tb_data/pcf7931_read_1MSA_data.state.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/fpga/tests/tb_data/pcf7931_read_1MSA_data.state.gold -------------------------------------------------------------------------------- /fpga/tests/tb_data/pcf7931_read_1MSA_data.time: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/fpga/tests/tb_data/pcf7931_read_1MSA_data.time -------------------------------------------------------------------------------- /fpga/tests/tb_data/pcf7931_read_1MSA_data.toggle.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/fpga/tests/tb_data/pcf7931_read_1MSA_data.toggle.gold -------------------------------------------------------------------------------- /fpga/tests/tb_data/pcf7931_write1byte_1MSA_data.filtered.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/fpga/tests/tb_data/pcf7931_write1byte_1MSA_data.filtered.gold -------------------------------------------------------------------------------- /fpga/tests/tb_data/pcf7931_write1byte_1MSA_data.high.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/fpga/tests/tb_data/pcf7931_write1byte_1MSA_data.high.gold -------------------------------------------------------------------------------- /fpga/tests/tb_data/pcf7931_write1byte_1MSA_data.highz.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/fpga/tests/tb_data/pcf7931_write1byte_1MSA_data.highz.gold -------------------------------------------------------------------------------- /fpga/tests/tb_data/pcf7931_write1byte_1MSA_data.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/fpga/tests/tb_data/pcf7931_write1byte_1MSA_data.in -------------------------------------------------------------------------------- /fpga/tests/tb_data/pcf7931_write1byte_1MSA_data.low.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/fpga/tests/tb_data/pcf7931_write1byte_1MSA_data.low.gold -------------------------------------------------------------------------------- /fpga/tests/tb_data/pcf7931_write1byte_1MSA_data.lowz.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/fpga/tests/tb_data/pcf7931_write1byte_1MSA_data.lowz.gold -------------------------------------------------------------------------------- /fpga/tests/tb_data/pcf7931_write1byte_1MSA_data.max.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/fpga/tests/tb_data/pcf7931_write1byte_1MSA_data.max.gold -------------------------------------------------------------------------------- /fpga/tests/tb_data/pcf7931_write1byte_1MSA_data.min.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/fpga/tests/tb_data/pcf7931_write1byte_1MSA_data.min.gold -------------------------------------------------------------------------------- /fpga/tests/tb_data/pcf7931_write1byte_1MSA_data.state.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/fpga/tests/tb_data/pcf7931_write1byte_1MSA_data.state.gold -------------------------------------------------------------------------------- /fpga/tests/tb_data/pcf7931_write1byte_1MSA_data.time: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/fpga/tests/tb_data/pcf7931_write1byte_1MSA_data.time -------------------------------------------------------------------------------- /fpga/tests/tb_data/pcf7931_write1byte_1MSA_data.toggle.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/fpga/tests/tb_data/pcf7931_write1byte_1MSA_data.toggle.gold -------------------------------------------------------------------------------- /fpga/tests/tb_lf_edge_detect.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/fpga/tests/tb_lf_edge_detect.v -------------------------------------------------------------------------------- /fpga/tests/tb_lp20khz_1MSa_iir_filter.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/fpga/tests/tb_lp20khz_1MSa_iir_filter.v -------------------------------------------------------------------------------- /fpga/tests/tb_min_max_tracker.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/fpga/tests/tb_min_max_tracker.v -------------------------------------------------------------------------------- /fpga/util.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/fpga/util.v -------------------------------------------------------------------------------- /fpga/xst_hf.scr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/fpga/xst_hf.scr -------------------------------------------------------------------------------- /fpga/xst_lf.scr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/fpga/xst_lf.scr -------------------------------------------------------------------------------- /include/at91sam7s512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/include/at91sam7s512.h -------------------------------------------------------------------------------- /include/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/include/common.h -------------------------------------------------------------------------------- /include/config_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/include/config_gpio.h -------------------------------------------------------------------------------- /include/hitag2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/include/hitag2.h -------------------------------------------------------------------------------- /include/hitagS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/include/hitagS.h -------------------------------------------------------------------------------- /include/legic_prng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/include/legic_prng.h -------------------------------------------------------------------------------- /include/mifare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/include/mifare.h -------------------------------------------------------------------------------- /include/proxmark3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/include/proxmark3.h -------------------------------------------------------------------------------- /include/usb_cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/include/usb_cmd.h -------------------------------------------------------------------------------- /liblua/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/liblua/Makefile -------------------------------------------------------------------------------- /liblua/lapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/liblua/lapi.c -------------------------------------------------------------------------------- /liblua/lapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/liblua/lapi.h -------------------------------------------------------------------------------- /liblua/lauxlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/liblua/lauxlib.c -------------------------------------------------------------------------------- /liblua/lauxlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/liblua/lauxlib.h -------------------------------------------------------------------------------- /liblua/lbaselib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/liblua/lbaselib.c -------------------------------------------------------------------------------- /liblua/lbitlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/liblua/lbitlib.c -------------------------------------------------------------------------------- /liblua/lcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/liblua/lcode.c -------------------------------------------------------------------------------- /liblua/lcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/liblua/lcode.h -------------------------------------------------------------------------------- /liblua/lcorolib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/liblua/lcorolib.c -------------------------------------------------------------------------------- /liblua/lctype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/liblua/lctype.c -------------------------------------------------------------------------------- /liblua/lctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/liblua/lctype.h -------------------------------------------------------------------------------- /liblua/ldblib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/liblua/ldblib.c -------------------------------------------------------------------------------- /liblua/ldebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/liblua/ldebug.c -------------------------------------------------------------------------------- /liblua/ldebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/liblua/ldebug.h -------------------------------------------------------------------------------- /liblua/ldo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/liblua/ldo.c -------------------------------------------------------------------------------- /liblua/ldo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/liblua/ldo.h -------------------------------------------------------------------------------- /liblua/ldump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/liblua/ldump.c -------------------------------------------------------------------------------- /liblua/lfunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/liblua/lfunc.c -------------------------------------------------------------------------------- /liblua/lfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/liblua/lfunc.h -------------------------------------------------------------------------------- /liblua/lgc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/liblua/lgc.c -------------------------------------------------------------------------------- /liblua/lgc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/liblua/lgc.h -------------------------------------------------------------------------------- /liblua/linit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/liblua/linit.c -------------------------------------------------------------------------------- /liblua/liolib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/liblua/liolib.c -------------------------------------------------------------------------------- /liblua/llex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/liblua/llex.c -------------------------------------------------------------------------------- /liblua/llex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/liblua/llex.h -------------------------------------------------------------------------------- /liblua/llimits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/liblua/llimits.h -------------------------------------------------------------------------------- /liblua/lmathlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/liblua/lmathlib.c -------------------------------------------------------------------------------- /liblua/lmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/liblua/lmem.c -------------------------------------------------------------------------------- /liblua/lmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/liblua/lmem.h -------------------------------------------------------------------------------- /liblua/loadlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/liblua/loadlib.c -------------------------------------------------------------------------------- /liblua/lobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/liblua/lobject.c -------------------------------------------------------------------------------- /liblua/lobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/liblua/lobject.h -------------------------------------------------------------------------------- /liblua/lopcodes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/liblua/lopcodes.c -------------------------------------------------------------------------------- /liblua/lopcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/liblua/lopcodes.h -------------------------------------------------------------------------------- /liblua/loslib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/liblua/loslib.c -------------------------------------------------------------------------------- /liblua/lparser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/liblua/lparser.c -------------------------------------------------------------------------------- /liblua/lparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/liblua/lparser.h -------------------------------------------------------------------------------- /liblua/lstate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/liblua/lstate.c -------------------------------------------------------------------------------- /liblua/lstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/liblua/lstate.h -------------------------------------------------------------------------------- /liblua/lstring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/liblua/lstring.c -------------------------------------------------------------------------------- /liblua/lstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/liblua/lstring.h -------------------------------------------------------------------------------- /liblua/lstrlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/liblua/lstrlib.c -------------------------------------------------------------------------------- /liblua/ltable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/liblua/ltable.c -------------------------------------------------------------------------------- /liblua/ltable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/liblua/ltable.h -------------------------------------------------------------------------------- /liblua/ltablib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/liblua/ltablib.c -------------------------------------------------------------------------------- /liblua/ltm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/liblua/ltm.c -------------------------------------------------------------------------------- /liblua/ltm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/liblua/ltm.h -------------------------------------------------------------------------------- /liblua/lua.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/liblua/lua.c -------------------------------------------------------------------------------- /liblua/lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/liblua/lua.h -------------------------------------------------------------------------------- /liblua/lua.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/liblua/lua.hpp -------------------------------------------------------------------------------- /liblua/luac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/liblua/luac.c -------------------------------------------------------------------------------- /liblua/luaconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/liblua/luaconf.h -------------------------------------------------------------------------------- /liblua/lualib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/liblua/lualib.h -------------------------------------------------------------------------------- /liblua/lundump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/liblua/lundump.c -------------------------------------------------------------------------------- /liblua/lundump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/liblua/lundump.h -------------------------------------------------------------------------------- /liblua/lvm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/liblua/lvm.c -------------------------------------------------------------------------------- /liblua/lvm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/liblua/lvm.h -------------------------------------------------------------------------------- /liblua/lzio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/liblua/lzio.c -------------------------------------------------------------------------------- /liblua/lzio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/liblua/lzio.h -------------------------------------------------------------------------------- /pcb/lf-antenna/CAD/lf-antenna.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/pcb/lf-antenna/CAD/lf-antenna.brd -------------------------------------------------------------------------------- /pcb/lf-antenna/CAM/lf-antenna.GBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/pcb/lf-antenna/CAM/lf-antenna.GBL -------------------------------------------------------------------------------- /pcb/lf-antenna/CAM/lf-antenna.GBO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/pcb/lf-antenna/CAM/lf-antenna.GBO -------------------------------------------------------------------------------- /pcb/lf-antenna/CAM/lf-antenna.GBP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/pcb/lf-antenna/CAM/lf-antenna.GBP -------------------------------------------------------------------------------- /pcb/lf-antenna/CAM/lf-antenna.GBS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/pcb/lf-antenna/CAM/lf-antenna.GBS -------------------------------------------------------------------------------- /pcb/lf-antenna/CAM/lf-antenna.GML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/pcb/lf-antenna/CAM/lf-antenna.GML -------------------------------------------------------------------------------- /pcb/lf-antenna/CAM/lf-antenna.GTL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/pcb/lf-antenna/CAM/lf-antenna.GTL -------------------------------------------------------------------------------- /pcb/lf-antenna/CAM/lf-antenna.GTO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/pcb/lf-antenna/CAM/lf-antenna.GTO -------------------------------------------------------------------------------- /pcb/lf-antenna/CAM/lf-antenna.GTP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/pcb/lf-antenna/CAM/lf-antenna.GTP -------------------------------------------------------------------------------- /pcb/lf-antenna/CAM/lf-antenna.GTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/pcb/lf-antenna/CAM/lf-antenna.GTS -------------------------------------------------------------------------------- /pcb/lf-antenna/CAM/lf-antenna.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/pcb/lf-antenna/CAM/lf-antenna.TXT -------------------------------------------------------------------------------- /pcb/lf-antenna/CAM/lf-antenna.do: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/pcb/lf-antenna/CAM/lf-antenna.do -------------------------------------------------------------------------------- /pcb/lf-antenna/CAM/lf-antenna.dri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/pcb/lf-antenna/CAM/lf-antenna.dri -------------------------------------------------------------------------------- /pcb/lf-antenna/CAM/lf-antenna.gpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/pcb/lf-antenna/CAM/lf-antenna.gpi -------------------------------------------------------------------------------- /pcb/lf-antenna/MFG/lf-antenna_bot.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/pcb/lf-antenna/MFG/lf-antenna_bot.pdf -------------------------------------------------------------------------------- /pcb/lf-antenna/MFG/lf-antenna_cam.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/pcb/lf-antenna/MFG/lf-antenna_cam.zip -------------------------------------------------------------------------------- /pcb/lf-antenna/MFG/lf-antenna_top.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/pcb/lf-antenna/MFG/lf-antenna_top.pdf -------------------------------------------------------------------------------- /pcb/lf-antenna/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/pcb/lf-antenna/README.md -------------------------------------------------------------------------------- /pcb/proxmark3_fix/BOT_layer_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/pcb/proxmark3_fix/BOT_layer_preview.png -------------------------------------------------------------------------------- /pcb/proxmark3_fix/CAD/change_log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/pcb/proxmark3_fix/CAD/change_log.txt -------------------------------------------------------------------------------- /pcb/proxmark3_fix/CAD/proxmark3.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/pcb/proxmark3_fix/CAD/proxmark3.brd -------------------------------------------------------------------------------- /pcb/proxmark3_fix/CAD/proxmark3.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/pcb/proxmark3_fix/CAD/proxmark3.sch -------------------------------------------------------------------------------- /pcb/proxmark3_fix/CAD/proxmark3_exported_and_modified_components.lbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/pcb/proxmark3_fix/CAD/proxmark3_exported_and_modified_components.lbr -------------------------------------------------------------------------------- /pcb/proxmark3_fix/CAM/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/pcb/proxmark3_fix/CAM/README.txt -------------------------------------------------------------------------------- /pcb/proxmark3_fix/CAM/proxmark3.GBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/pcb/proxmark3_fix/CAM/proxmark3.GBL -------------------------------------------------------------------------------- /pcb/proxmark3_fix/CAM/proxmark3.GBO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/pcb/proxmark3_fix/CAM/proxmark3.GBO -------------------------------------------------------------------------------- /pcb/proxmark3_fix/CAM/proxmark3.GBP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/pcb/proxmark3_fix/CAM/proxmark3.GBP -------------------------------------------------------------------------------- /pcb/proxmark3_fix/CAM/proxmark3.GBS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/pcb/proxmark3_fix/CAM/proxmark3.GBS -------------------------------------------------------------------------------- /pcb/proxmark3_fix/CAM/proxmark3.GL1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/pcb/proxmark3_fix/CAM/proxmark3.GL1 -------------------------------------------------------------------------------- /pcb/proxmark3_fix/CAM/proxmark3.GL2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/pcb/proxmark3_fix/CAM/proxmark3.GL2 -------------------------------------------------------------------------------- /pcb/proxmark3_fix/CAM/proxmark3.GML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/pcb/proxmark3_fix/CAM/proxmark3.GML -------------------------------------------------------------------------------- /pcb/proxmark3_fix/CAM/proxmark3.GTL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/pcb/proxmark3_fix/CAM/proxmark3.GTL -------------------------------------------------------------------------------- /pcb/proxmark3_fix/CAM/proxmark3.GTO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/pcb/proxmark3_fix/CAM/proxmark3.GTO -------------------------------------------------------------------------------- /pcb/proxmark3_fix/CAM/proxmark3.GTP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/pcb/proxmark3_fix/CAM/proxmark3.GTP -------------------------------------------------------------------------------- /pcb/proxmark3_fix/CAM/proxmark3.GTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/pcb/proxmark3_fix/CAM/proxmark3.GTS -------------------------------------------------------------------------------- /pcb/proxmark3_fix/CAM/proxmark3.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/pcb/proxmark3_fix/CAM/proxmark3.TXT -------------------------------------------------------------------------------- /pcb/proxmark3_fix/CAM/proxmark3.do: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/pcb/proxmark3_fix/CAM/proxmark3.do -------------------------------------------------------------------------------- /pcb/proxmark3_fix/CAM/proxmark3.dri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/pcb/proxmark3_fix/CAM/proxmark3.dri -------------------------------------------------------------------------------- /pcb/proxmark3_fix/CAM/proxmark3.gpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/pcb/proxmark3_fix/CAM/proxmark3.gpi -------------------------------------------------------------------------------- /pcb/proxmark3_fix/IN1_layer_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/pcb/proxmark3_fix/IN1_layer_preview.png -------------------------------------------------------------------------------- /pcb/proxmark3_fix/IN2_layer_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/pcb/proxmark3_fix/IN2_layer_preview.png -------------------------------------------------------------------------------- /pcb/proxmark3_fix/MFG/proxmark3_IN1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/pcb/proxmark3_fix/MFG/proxmark3_IN1.pdf -------------------------------------------------------------------------------- /pcb/proxmark3_fix/MFG/proxmark3_IN2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/pcb/proxmark3_fix/MFG/proxmark3_IN2.pdf -------------------------------------------------------------------------------- /pcb/proxmark3_fix/MFG/proxmark3_bot.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/pcb/proxmark3_fix/MFG/proxmark3_bot.pdf -------------------------------------------------------------------------------- /pcb/proxmark3_fix/MFG/proxmark3_cam.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/pcb/proxmark3_fix/MFG/proxmark3_cam.zip -------------------------------------------------------------------------------- /pcb/proxmark3_fix/MFG/proxmark3_sch.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/pcb/proxmark3_fix/MFG/proxmark3_sch.pdf -------------------------------------------------------------------------------- /pcb/proxmark3_fix/MFG/proxmark3_top.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/pcb/proxmark3_fix/MFG/proxmark3_top.pdf -------------------------------------------------------------------------------- /pcb/proxmark3_fix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/pcb/proxmark3_fix/README.md -------------------------------------------------------------------------------- /pcb/proxmark3_fix/TOP_layer_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/pcb/proxmark3_fix/TOP_layer_preview.png -------------------------------------------------------------------------------- /pcb/proxmark3_original_cad_cam_zip_files/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/pcb/proxmark3_original_cad_cam_zip_files/README.md -------------------------------------------------------------------------------- /pcb/proxmark3_original_cad_cam_zip_files/proxmark3-eagle.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/pcb/proxmark3_original_cad_cam_zip_files/proxmark3-eagle.zip -------------------------------------------------------------------------------- /pcb/proxmark3_original_cad_cam_zip_files/proxmark3-mfgr-data.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/pcb/proxmark3_original_cad_cam_zip_files/proxmark3-mfgr-data.zip -------------------------------------------------------------------------------- /recovery/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/recovery/Makefile -------------------------------------------------------------------------------- /tools/at91sam7s256-armusbocd-flash-program.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/tools/at91sam7s256-armusbocd-flash-program.cfg -------------------------------------------------------------------------------- /tools/at91sam7s256-armusbocd.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/tools/at91sam7s256-armusbocd.cfg -------------------------------------------------------------------------------- /tools/at91sam7s256-jtagkey.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/tools/at91sam7s256-jtagkey.cfg -------------------------------------------------------------------------------- /tools/at91sam7s256-wiggler.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/tools/at91sam7s256-wiggler.cfg -------------------------------------------------------------------------------- /tools/at91sam7s512-jtagkey.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/tools/at91sam7s512-jtagkey.cfg -------------------------------------------------------------------------------- /tools/findbits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/tools/findbits.py -------------------------------------------------------------------------------- /tools/findbits_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/tools/findbits_test.py -------------------------------------------------------------------------------- /tools/install-gnuarm4.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/tools/install-gnuarm4.sh -------------------------------------------------------------------------------- /tools/mfkey/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/tools/mfkey/Makefile -------------------------------------------------------------------------------- /tools/mfkey/crapto1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/tools/mfkey/crapto1.c -------------------------------------------------------------------------------- /tools/mfkey/crapto1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/tools/mfkey/crapto1.h -------------------------------------------------------------------------------- /tools/mfkey/crypto1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/tools/mfkey/crypto1.c -------------------------------------------------------------------------------- /tools/mfkey/example_trace.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/tools/mfkey/example_trace.txt -------------------------------------------------------------------------------- /tools/mfkey/mfkey32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/tools/mfkey/mfkey32.c -------------------------------------------------------------------------------- /tools/mfkey/mfkey64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/tools/mfkey/mfkey64.c -------------------------------------------------------------------------------- /tools/mkversion.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/tools/mkversion.pl -------------------------------------------------------------------------------- /tools/nonce2key/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/tools/nonce2key/Makefile -------------------------------------------------------------------------------- /tools/nonce2key/crapto1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/tools/nonce2key/crapto1.c -------------------------------------------------------------------------------- /tools/nonce2key/crapto1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/tools/nonce2key/crapto1.h -------------------------------------------------------------------------------- /tools/nonce2key/crypto1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/tools/nonce2key/crypto1.c -------------------------------------------------------------------------------- /tools/nonce2key/nonce2key.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/tools/nonce2key/nonce2key.c -------------------------------------------------------------------------------- /tools/rfidtest.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/tools/rfidtest.pl -------------------------------------------------------------------------------- /tools/srecswap.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/tools/srecswap.pl -------------------------------------------------------------------------------- /tools/xorcheck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/tools/xorcheck.py -------------------------------------------------------------------------------- /traces/ATA5577-HIDemu-FC1-C9.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/traces/ATA5577-HIDemu-FC1-C9.pm3 -------------------------------------------------------------------------------- /traces/AWID-15-259.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/traces/AWID-15-259.pm3 -------------------------------------------------------------------------------- /traces/Casi-12ed825c29.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/traces/Casi-12ed825c29.pm3 -------------------------------------------------------------------------------- /traces/EM4102-1.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/traces/EM4102-1.pm3 -------------------------------------------------------------------------------- /traces/EM4102-2.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/traces/EM4102-2.pm3 -------------------------------------------------------------------------------- /traces/EM4102-3.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/traces/EM4102-3.pm3 -------------------------------------------------------------------------------- /traces/EM4102-Fob.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/traces/EM4102-Fob.pm3 -------------------------------------------------------------------------------- /traces/HID-weak-fob-11647.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/traces/HID-weak-fob-11647.pm3 -------------------------------------------------------------------------------- /traces/Paradox-96_40426-APJN08.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/traces/Paradox-96_40426-APJN08.pm3 -------------------------------------------------------------------------------- /traces/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/traces/README.txt -------------------------------------------------------------------------------- /traces/TITEST.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/traces/TITEST.TXT -------------------------------------------------------------------------------- /traces/Transit999-best.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/traces/Transit999-best.pm3 -------------------------------------------------------------------------------- /traces/em4102-clamshell.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/traces/em4102-clamshell.pm3 -------------------------------------------------------------------------------- /traces/em4102-thin.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/traces/em4102-thin.pm3 -------------------------------------------------------------------------------- /traces/em4x05.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/traces/em4x05.pm3 -------------------------------------------------------------------------------- /traces/em4x50.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/traces/em4x50.pm3 -------------------------------------------------------------------------------- /traces/hid-proxCardII-05512-11432784-1.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/traces/hid-proxCardII-05512-11432784-1.pm3 -------------------------------------------------------------------------------- /traces/homeagain.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/traces/homeagain.pm3 -------------------------------------------------------------------------------- /traces/homeagain1600.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/traces/homeagain1600.pm3 -------------------------------------------------------------------------------- /traces/indala-00002-12345678-1A.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/traces/indala-00002-12345678-1A.pm3 -------------------------------------------------------------------------------- /traces/indala-504278295.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/traces/indala-504278295.pm3 -------------------------------------------------------------------------------- /traces/ioProx-XSF-01-BE-03011.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/traces/ioProx-XSF-01-BE-03011.pm3 -------------------------------------------------------------------------------- /traces/ioprox-XSF-01-3B-44725.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/traces/ioprox-XSF-01-3B-44725.pm3 -------------------------------------------------------------------------------- /traces/keri.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/traces/keri.pm3 -------------------------------------------------------------------------------- /traces/modulation-ask-biph-50.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/traces/modulation-ask-biph-50.pm3 -------------------------------------------------------------------------------- /traces/modulation-ask-man-100.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/traces/modulation-ask-man-100.pm3 -------------------------------------------------------------------------------- /traces/modulation-ask-man-128.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/traces/modulation-ask-man-128.pm3 -------------------------------------------------------------------------------- /traces/modulation-ask-man-16.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/traces/modulation-ask-man-16.pm3 -------------------------------------------------------------------------------- /traces/modulation-ask-man-32.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/traces/modulation-ask-man-32.pm3 -------------------------------------------------------------------------------- /traces/modulation-ask-man-40.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/traces/modulation-ask-man-40.pm3 -------------------------------------------------------------------------------- /traces/modulation-ask-man-8.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/traces/modulation-ask-man-8.pm3 -------------------------------------------------------------------------------- /traces/modulation-biphase.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/traces/modulation-biphase.pm3 -------------------------------------------------------------------------------- /traces/modulation-data.dat: -------------------------------------------------------------------------------- 1 |  2 | -------------------------------------------------------------------------------- /traces/modulation-direct-32.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/traces/modulation-direct-32.pm3 -------------------------------------------------------------------------------- /traces/modulation-direct-40.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/traces/modulation-direct-40.pm3 -------------------------------------------------------------------------------- /traces/modulation-direct-50.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/traces/modulation-direct-50.pm3 -------------------------------------------------------------------------------- /traces/modulation-fsk1-50.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/traces/modulation-fsk1-50.pm3 -------------------------------------------------------------------------------- /traces/modulation-fsk1.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/traces/modulation-fsk1.pm3 -------------------------------------------------------------------------------- /traces/modulation-fsk1a-50.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/traces/modulation-fsk1a-50.pm3 -------------------------------------------------------------------------------- /traces/modulation-fsk2-50.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/traces/modulation-fsk2-50.pm3 -------------------------------------------------------------------------------- /traces/modulation-fsk2.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/traces/modulation-fsk2.pm3 -------------------------------------------------------------------------------- /traces/modulation-fsk2a-40.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/traces/modulation-fsk2a-40.pm3 -------------------------------------------------------------------------------- /traces/modulation-fsk2a-50.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/traces/modulation-fsk2a-50.pm3 -------------------------------------------------------------------------------- /traces/modulation-manchester.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/traces/modulation-manchester.pm3 -------------------------------------------------------------------------------- /traces/modulation-nrz.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/traces/modulation-nrz.pm3 -------------------------------------------------------------------------------- /traces/modulation-psk1-32-4.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/traces/modulation-psk1-32-4.pm3 -------------------------------------------------------------------------------- /traces/modulation-psk1-64-8.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/traces/modulation-psk1-64-8.pm3 -------------------------------------------------------------------------------- /traces/modulation-psk1.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/traces/modulation-psk1.pm3 -------------------------------------------------------------------------------- /traces/modulation-psk2-32-2.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/traces/modulation-psk2-32-2.pm3 -------------------------------------------------------------------------------- /traces/modulation-psk2.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/traces/modulation-psk2.pm3 -------------------------------------------------------------------------------- /traces/modulation-psk3-32-8.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/traces/modulation-psk3-32-8.pm3 -------------------------------------------------------------------------------- /traces/modulation-psk3.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/traces/modulation-psk3.pm3 -------------------------------------------------------------------------------- /zlib/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/zlib/ChangeLog -------------------------------------------------------------------------------- /zlib/FAQ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/zlib/FAQ -------------------------------------------------------------------------------- /zlib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/zlib/README -------------------------------------------------------------------------------- /zlib/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/zlib/adler32.c -------------------------------------------------------------------------------- /zlib/deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/zlib/deflate.c -------------------------------------------------------------------------------- /zlib/deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/zlib/deflate.h -------------------------------------------------------------------------------- /zlib/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/zlib/inffast.c -------------------------------------------------------------------------------- /zlib/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/zlib/inffast.h -------------------------------------------------------------------------------- /zlib/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/zlib/inffixed.h -------------------------------------------------------------------------------- /zlib/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/zlib/inflate.c -------------------------------------------------------------------------------- /zlib/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/zlib/inflate.h -------------------------------------------------------------------------------- /zlib/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/zlib/inftrees.c -------------------------------------------------------------------------------- /zlib/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/zlib/inftrees.h -------------------------------------------------------------------------------- /zlib/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/zlib/trees.c -------------------------------------------------------------------------------- /zlib/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/zlib/trees.h -------------------------------------------------------------------------------- /zlib/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/zlib/zconf.h -------------------------------------------------------------------------------- /zlib/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/zlib/zlib.h -------------------------------------------------------------------------------- /zlib/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/zlib/zutil.c -------------------------------------------------------------------------------- /zlib/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exploitagency/hid1000-bruteforce/HEAD/zlib/zutil.h --------------------------------------------------------------------------------