├── .gitattributes ├── .gitignore ├── CHANGELOG.md ├── CI ├── .travis.yml ├── appveyor.yml ├── readme.md └── travis_test_commands.scr ├── COMPILING.txt ├── HACKING.txt ├── LICENSE.txt ├── Makefile ├── README.md ├── armsrc ├── BigBuf.c ├── BigBuf.h ├── LCD.c ├── LCD.h ├── Makefile ├── appmain.c ├── apps.h ├── epa.c ├── epa.h ├── fonts.c ├── fonts.h ├── fpgaloader.c ├── fpgaloader.h ├── hfsnoop.c ├── hfsnoop.h ├── hitag2.c ├── hitag2.h ├── hitagS.c ├── hitagS.h ├── i2c.c ├── i2c.h ├── iclass.c ├── iclass.h ├── iso14443a.c ├── iso14443a.h ├── iso14443b.c ├── iso14443b.h ├── iso15693.c ├── iso15693.h ├── ldscript ├── legicrf.c ├── legicrf.h ├── legicrfsim.c ├── legicrfsim.h ├── lfops.c ├── lfsampling.c ├── lfsampling.h ├── mifarecmd.c ├── mifarecmd.h ├── mifaresim.c ├── mifaresim.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 ├── string.c ├── string.h ├── util.c └── util.h ├── bootrom ├── Makefile ├── bootrom.c ├── flash-reset.s ├── ldscript-flash ├── obj │ └── .dummy ├── ram-reset.s ├── string.c └── string.h ├── client ├── Makefile ├── README-bitlib ├── cliparser │ ├── README.md │ ├── argtable3.c │ ├── argtable3.h │ ├── cliparser.c │ └── cliparser.h ├── cmddata.c ├── cmddata.h ├── cmdhf.c ├── cmdhf.h ├── cmdhf14a.c ├── cmdhf14a.h ├── cmdhf14b.c ├── cmdhf14b.h ├── cmdhf15.c ├── cmdhf15.h ├── cmdhfepa.c ├── cmdhfepa.h ├── cmdhffido.c ├── cmdhffido.h ├── cmdhficlass.c ├── cmdhficlass.h ├── cmdhflegic.c ├── cmdhflegic.h ├── cmdhflist.c ├── cmdhflist.h ├── cmdhfmf.c ├── cmdhfmf.h ├── cmdhfmfhard.c ├── cmdhfmfhard.h ├── cmdhfmfp.c ├── cmdhfmfp.h ├── cmdhfmfu.c ├── cmdhfmfu.h ├── cmdhftopaz.c ├── cmdhftopaz.h ├── cmdhw.c ├── cmdhw.h ├── cmdlf.c ├── cmdlf.h ├── cmdlfawid.c ├── cmdlfawid.h ├── cmdlfcotag.c ├── cmdlfcotag.h ├── cmdlfem4x.c ├── cmdlfem4x.h ├── cmdlffdx.c ├── cmdlffdx.h ├── cmdlfgproxii.c ├── cmdlfgproxii.h ├── cmdlfhid.c ├── cmdlfhid.h ├── cmdlfhitag.c ├── cmdlfhitag.h ├── cmdlfindala.c ├── cmdlfindala.h ├── cmdlfio.c ├── cmdlfio.h ├── cmdlfjablotron.c ├── cmdlfjablotron.h ├── cmdlfnexwatch.c ├── cmdlfnexwatch.h ├── cmdlfnoralsy.c ├── cmdlfnoralsy.h ├── cmdlfpac.c ├── cmdlfpac.h ├── cmdlfparadox.c ├── cmdlfparadox.h ├── cmdlfpcf7931.c ├── cmdlfpcf7931.h ├── cmdlfpresco.c ├── cmdlfpresco.h ├── cmdlfpyramid.c ├── cmdlfpyramid.h ├── cmdlfsecurakey.c ├── cmdlfsecurakey.h ├── cmdlft55xx.c ├── cmdlft55xx.h ├── cmdlfti.c ├── cmdlfti.h ├── cmdlfviking.c ├── cmdlfviking.h ├── cmdlfvisa2000.c ├── cmdlfvisa2000.h ├── cmdmain.c ├── cmdmain.h ├── cmdparser.c ├── cmdparser.h ├── cmdscript.c ├── cmdscript.h ├── cmdsmartcard.c ├── cmdsmartcard.h ├── comms.c ├── comms.h ├── crypto │ ├── asn1dump.c │ ├── asn1dump.h │ ├── asn1utils.c │ ├── asn1utils.h │ ├── libpcrypto.c │ ├── libpcrypto.h │ └── oids.json ├── default_keys.dic ├── default_pwd.dic ├── elf.h ├── eml2UPPER.sh ├── eml2lower.sh ├── emv │ ├── apduinfo.c │ ├── apduinfo.h │ ├── capk.txt │ ├── cmdemv.c │ ├── cmdemv.h │ ├── crypto.c │ ├── crypto.h │ ├── crypto_backend.h │ ├── crypto_polarssl.c │ ├── defparams.json │ ├── dol.c │ ├── dol.h │ ├── dump.c │ ├── dump.h │ ├── emv_pk.c │ ├── emv_pk.h │ ├── emv_pki.c │ ├── emv_pki.h │ ├── emv_pki_priv.c │ ├── emv_pki_priv.h │ ├── emv_roca.c │ ├── emv_roca.h │ ├── emv_tags.c │ ├── emv_tags.h │ ├── emvcore.c │ ├── emvcore.h │ ├── emvjson.c │ ├── emvjson.h │ ├── test │ │ ├── cda_test.c │ │ ├── cda_test.h │ │ ├── crypto_test.c │ │ ├── crypto_test.h │ │ ├── cryptotest.c │ │ ├── cryptotest.h │ │ ├── dda_test.c │ │ ├── dda_test.h │ │ ├── sda_test.c │ │ └── sda_test.h │ ├── tlv.c │ └── tlv.h ├── fido │ ├── additional_ca.c │ ├── additional_ca.h │ ├── cbortools.c │ ├── cbortools.h │ ├── cose.c │ ├── cose.h │ ├── fido2.json │ ├── fidocore.c │ └── fidocore.h ├── flash.c ├── flash.h ├── flasher.c ├── fpga_compress.c ├── gen_pm3mfsim_script.sh ├── graph.c ├── graph.h ├── guidummy.cpp ├── hardnested │ ├── bf_bench_data.bin │ ├── hardnested_bf_core.c │ ├── hardnested_bf_core.h │ ├── hardnested_bitarray_core.c │ ├── hardnested_bitarray_core.h │ ├── hardnested_bruteforce.c │ ├── hardnested_bruteforce.h │ ├── hardnested_tables.c │ └── tables │ │ ├── bitflip_0_001_states.bin.z │ │ ├── bitflip_0_003_states.bin.z │ │ ├── bitflip_0_005_states.bin.z │ │ ├── bitflip_0_007_states.bin.z │ │ ├── bitflip_0_009_states.bin.z │ │ ├── bitflip_0_00b_states.bin.z │ │ ├── bitflip_0_00d_states.bin.z │ │ ├── bitflip_0_00f_states.bin.z │ │ ├── bitflip_0_010_states.bin.z │ │ ├── bitflip_0_014_states.bin.z │ │ ├── bitflip_0_01c_states.bin.z │ │ ├── bitflip_0_021_states.bin.z │ │ ├── bitflip_0_023_states.bin.z │ │ ├── bitflip_0_025_states.bin.z │ │ ├── bitflip_0_027_states.bin.z │ │ ├── bitflip_0_029_states.bin.z │ │ ├── bitflip_0_02b_states.bin.z │ │ ├── bitflip_0_02d_states.bin.z │ │ ├── bitflip_0_02f_states.bin.z │ │ ├── bitflip_0_030_states.bin.z │ │ ├── bitflip_0_034_states.bin.z │ │ ├── bitflip_0_03c_states.bin.z │ │ ├── bitflip_0_040_states.bin.z │ │ ├── bitflip_0_044_states.bin.z │ │ ├── bitflip_0_04c_states.bin.z │ │ ├── bitflip_0_051_states.bin.z │ │ ├── bitflip_0_053_states.bin.z │ │ ├── bitflip_0_055_states.bin.z │ │ ├── bitflip_0_057_states.bin.z │ │ ├── bitflip_0_059_states.bin.z │ │ ├── bitflip_0_05b_states.bin.z │ │ ├── bitflip_0_05d_states.bin.z │ │ ├── bitflip_0_05f_states.bin.z │ │ ├── bitflip_0_064_states.bin.z │ │ ├── bitflip_0_06c_states.bin.z │ │ ├── bitflip_0_071_states.bin.z │ │ ├── bitflip_0_073_states.bin.z │ │ ├── bitflip_0_075_states.bin.z │ │ ├── bitflip_0_077_states.bin.z │ │ ├── bitflip_0_079_states.bin.z │ │ ├── bitflip_0_07b_states.bin.z │ │ ├── bitflip_0_07f_states.bin.z │ │ ├── bitflip_0_081_states.bin.z │ │ ├── bitflip_0_083_states.bin.z │ │ ├── bitflip_0_085_states.bin.z │ │ ├── bitflip_0_087_states.bin.z │ │ ├── bitflip_0_089_states.bin.z │ │ ├── bitflip_0_08b_states.bin.z │ │ ├── bitflip_0_08d_states.bin.z │ │ ├── bitflip_0_08f_states.bin.z │ │ ├── bitflip_0_090_states.bin.z │ │ ├── bitflip_0_094_states.bin.z │ │ ├── bitflip_0_09c_states.bin.z │ │ ├── bitflip_0_0a1_states.bin.z │ │ ├── bitflip_0_0a3_states.bin.z │ │ ├── bitflip_0_0a5_states.bin.z │ │ ├── bitflip_0_0a7_states.bin.z │ │ ├── bitflip_0_0a9_states.bin.z │ │ ├── bitflip_0_0ab_states.bin.z │ │ ├── bitflip_0_0ad_states.bin.z │ │ ├── bitflip_0_0af_states.bin.z │ │ ├── bitflip_0_0b0_states.bin.z │ │ ├── bitflip_0_0b4_states.bin.z │ │ ├── bitflip_0_0bc_states.bin.z │ │ ├── bitflip_0_0c0_states.bin.z │ │ ├── bitflip_0_0c4_states.bin.z │ │ ├── bitflip_0_0cc_states.bin.z │ │ ├── bitflip_0_0d1_states.bin.z │ │ ├── bitflip_0_0d3_states.bin.z │ │ ├── bitflip_0_0d5_states.bin.z │ │ ├── bitflip_0_0d7_states.bin.z │ │ ├── bitflip_0_0d9_states.bin.z │ │ ├── bitflip_0_0db_states.bin.z │ │ ├── bitflip_0_0dd_states.bin.z │ │ ├── bitflip_0_0df_states.bin.z │ │ ├── bitflip_0_0e4_states.bin.z │ │ ├── bitflip_0_0ec_states.bin.z │ │ ├── bitflip_0_0f1_states.bin.z │ │ ├── bitflip_0_0f3_states.bin.z │ │ ├── bitflip_0_0f5_states.bin.z │ │ ├── bitflip_0_0f7_states.bin.z │ │ ├── bitflip_0_0f9_states.bin.z │ │ ├── bitflip_0_0fb_states.bin.z │ │ ├── bitflip_0_0fd_states.bin.z │ │ ├── bitflip_0_0ff_states.bin.z │ │ ├── bitflip_0_104_states.bin.z │ │ ├── bitflip_0_10c_states.bin.z │ │ ├── bitflip_0_111_states.bin.z │ │ ├── bitflip_0_113_states.bin.z │ │ ├── bitflip_0_115_states.bin.z │ │ ├── bitflip_0_117_states.bin.z │ │ ├── bitflip_0_119_states.bin.z │ │ ├── bitflip_0_11b_states.bin.z │ │ ├── bitflip_0_11d_states.bin.z │ │ ├── bitflip_0_11f_states.bin.z │ │ ├── bitflip_0_124_states.bin.z │ │ ├── bitflip_0_12c_states.bin.z │ │ ├── bitflip_0_131_states.bin.z │ │ ├── bitflip_0_133_states.bin.z │ │ ├── bitflip_0_135_states.bin.z │ │ ├── bitflip_0_137_states.bin.z │ │ ├── bitflip_0_139_states.bin.z │ │ ├── bitflip_0_13b_states.bin.z │ │ ├── bitflip_0_13d_states.bin.z │ │ ├── bitflip_0_13f_states.bin.z │ │ ├── bitflip_0_141_states.bin.z │ │ ├── bitflip_0_143_states.bin.z │ │ ├── bitflip_0_145_states.bin.z │ │ ├── bitflip_0_147_states.bin.z │ │ ├── bitflip_0_149_states.bin.z │ │ ├── bitflip_0_14b_states.bin.z │ │ ├── bitflip_0_14d_states.bin.z │ │ ├── bitflip_0_14f_states.bin.z │ │ ├── bitflip_0_150_states.bin.z │ │ ├── bitflip_0_154_states.bin.z │ │ ├── bitflip_0_15c_states.bin.z │ │ ├── bitflip_0_161_states.bin.z │ │ ├── bitflip_0_163_states.bin.z │ │ ├── bitflip_0_165_states.bin.z │ │ ├── bitflip_0_167_states.bin.z │ │ ├── bitflip_0_169_states.bin.z │ │ ├── bitflip_0_16b_states.bin.z │ │ ├── bitflip_0_16d_states.bin.z │ │ ├── bitflip_0_16f_states.bin.z │ │ ├── bitflip_0_170_states.bin.z │ │ ├── bitflip_0_174_states.bin.z │ │ ├── bitflip_0_17c_states.bin.z │ │ ├── bitflip_0_184_states.bin.z │ │ ├── bitflip_0_18c_states.bin.z │ │ ├── bitflip_0_191_states.bin.z │ │ ├── bitflip_0_193_states.bin.z │ │ ├── bitflip_0_195_states.bin.z │ │ ├── bitflip_0_197_states.bin.z │ │ ├── bitflip_0_199_states.bin.z │ │ ├── bitflip_0_19b_states.bin.z │ │ ├── bitflip_0_19d_states.bin.z │ │ ├── bitflip_0_19f_states.bin.z │ │ ├── bitflip_0_1a4_states.bin.z │ │ ├── bitflip_0_1ac_states.bin.z │ │ ├── bitflip_0_1b1_states.bin.z │ │ ├── bitflip_0_1b3_states.bin.z │ │ ├── bitflip_0_1b5_states.bin.z │ │ ├── bitflip_0_1b7_states.bin.z │ │ ├── bitflip_0_1b9_states.bin.z │ │ ├── bitflip_0_1bb_states.bin.z │ │ ├── bitflip_0_1bd_states.bin.z │ │ ├── bitflip_0_1bf_states.bin.z │ │ ├── bitflip_0_1c1_states.bin.z │ │ ├── bitflip_0_1c3_states.bin.z │ │ ├── bitflip_0_1c5_states.bin.z │ │ ├── bitflip_0_1c9_states.bin.z │ │ ├── bitflip_0_1cb_states.bin.z │ │ ├── bitflip_0_1d0_states.bin.z │ │ ├── bitflip_0_1d4_states.bin.z │ │ ├── bitflip_0_1dc_states.bin.z │ │ ├── bitflip_0_1e1_states.bin.z │ │ ├── bitflip_0_1e3_states.bin.z │ │ ├── bitflip_0_1e5_states.bin.z │ │ ├── bitflip_0_1e7_states.bin.z │ │ ├── bitflip_0_1e9_states.bin.z │ │ ├── bitflip_0_1eb_states.bin.z │ │ ├── bitflip_0_1ed_states.bin.z │ │ ├── bitflip_0_1ef_states.bin.z │ │ ├── bitflip_0_1f0_states.bin.z │ │ ├── bitflip_0_1f4_states.bin.z │ │ ├── bitflip_0_1fc_states.bin.z │ │ ├── bitflip_0_210_states.bin.z │ │ ├── bitflip_0_225_states.bin.z │ │ ├── bitflip_0_227_states.bin.z │ │ ├── bitflip_0_22d_states.bin.z │ │ ├── bitflip_0_22f_states.bin.z │ │ ├── bitflip_0_240_states.bin.z │ │ ├── bitflip_0_275_states.bin.z │ │ ├── bitflip_0_277_states.bin.z │ │ ├── bitflip_0_27f_states.bin.z │ │ ├── bitflip_0_294_states.bin.z │ │ ├── bitflip_0_2a1_states.bin.z │ │ ├── bitflip_0_2a3_states.bin.z │ │ ├── bitflip_0_2a9_states.bin.z │ │ ├── bitflip_0_2ab_states.bin.z │ │ ├── bitflip_0_2c4_states.bin.z │ │ ├── bitflip_0_2f1_states.bin.z │ │ ├── bitflip_0_2f3_states.bin.z │ │ ├── bitflip_0_2f9_states.bin.z │ │ ├── bitflip_0_2fb_states.bin.z │ │ ├── bitflip_0_335_states.bin.z │ │ ├── bitflip_0_337_states.bin.z │ │ ├── bitflip_0_33d_states.bin.z │ │ ├── bitflip_0_33f_states.bin.z │ │ ├── bitflip_0_350_states.bin.z │ │ ├── bitflip_0_365_states.bin.z │ │ ├── bitflip_0_367_states.bin.z │ │ ├── bitflip_0_36d_states.bin.z │ │ ├── bitflip_0_36f_states.bin.z │ │ ├── bitflip_0_384_states.bin.z │ │ ├── bitflip_0_3b1_states.bin.z │ │ ├── bitflip_0_3b3_states.bin.z │ │ ├── bitflip_0_3b9_states.bin.z │ │ ├── bitflip_0_3bb_states.bin.z │ │ ├── bitflip_0_3d4_states.bin.z │ │ ├── bitflip_0_3e1_states.bin.z │ │ ├── bitflip_0_3e3_states.bin.z │ │ ├── bitflip_0_3e9_states.bin.z │ │ ├── bitflip_0_3eb_states.bin.z │ │ ├── bitflip_1_002_states.bin.z │ │ ├── bitflip_1_008_states.bin.z │ │ ├── bitflip_1_00a_states.bin.z │ │ ├── bitflip_1_012_states.bin.z │ │ ├── bitflip_1_018_states.bin.z │ │ ├── bitflip_1_01a_states.bin.z │ │ ├── bitflip_1_020_states.bin.z │ │ ├── bitflip_1_028_states.bin.z │ │ ├── bitflip_1_02a_states.bin.z │ │ ├── bitflip_1_02e_states.bin.z │ │ ├── bitflip_1_032_states.bin.z │ │ ├── bitflip_1_036_states.bin.z │ │ ├── bitflip_1_038_states.bin.z │ │ ├── bitflip_1_03a_states.bin.z │ │ ├── bitflip_1_03e_states.bin.z │ │ ├── bitflip_1_040_states.bin.z │ │ ├── bitflip_1_042_states.bin.z │ │ ├── bitflip_1_046_states.bin.z │ │ ├── bitflip_1_048_states.bin.z │ │ ├── bitflip_1_04a_states.bin.z │ │ ├── bitflip_1_04e_states.bin.z │ │ ├── bitflip_1_052_states.bin.z │ │ ├── bitflip_1_056_states.bin.z │ │ ├── bitflip_1_058_states.bin.z │ │ ├── bitflip_1_05a_states.bin.z │ │ ├── bitflip_1_05e_states.bin.z │ │ ├── bitflip_1_060_states.bin.z │ │ ├── bitflip_1_062_states.bin.z │ │ ├── bitflip_1_066_states.bin.z │ │ ├── bitflip_1_068_states.bin.z │ │ ├── bitflip_1_06a_states.bin.z │ │ ├── bitflip_1_06e_states.bin.z │ │ ├── bitflip_1_072_states.bin.z │ │ ├── bitflip_1_076_states.bin.z │ │ ├── bitflip_1_078_states.bin.z │ │ ├── bitflip_1_07a_states.bin.z │ │ ├── bitflip_1_07e_states.bin.z │ │ ├── bitflip_1_080_states.bin.z │ │ ├── bitflip_1_082_states.bin.z │ │ ├── bitflip_1_086_states.bin.z │ │ ├── bitflip_1_088_states.bin.z │ │ ├── bitflip_1_08a_states.bin.z │ │ ├── bitflip_1_08e_states.bin.z │ │ ├── bitflip_1_092_states.bin.z │ │ ├── bitflip_1_096_states.bin.z │ │ ├── bitflip_1_098_states.bin.z │ │ ├── bitflip_1_09a_states.bin.z │ │ ├── bitflip_1_09e_states.bin.z │ │ ├── bitflip_1_0a0_states.bin.z │ │ ├── bitflip_1_0a2_states.bin.z │ │ ├── bitflip_1_0a6_states.bin.z │ │ ├── bitflip_1_0a8_states.bin.z │ │ ├── bitflip_1_0aa_states.bin.z │ │ ├── bitflip_1_0ae_states.bin.z │ │ ├── bitflip_1_0b2_states.bin.z │ │ ├── bitflip_1_0b6_states.bin.z │ │ ├── bitflip_1_0b8_states.bin.z │ │ ├── bitflip_1_0ba_states.bin.z │ │ ├── bitflip_1_0be_states.bin.z │ │ ├── bitflip_1_0c0_states.bin.z │ │ ├── bitflip_1_0c2_states.bin.z │ │ ├── bitflip_1_0c6_states.bin.z │ │ ├── bitflip_1_0c8_states.bin.z │ │ ├── bitflip_1_0ca_states.bin.z │ │ ├── bitflip_1_0ce_states.bin.z │ │ ├── bitflip_1_0d2_states.bin.z │ │ ├── bitflip_1_0d6_states.bin.z │ │ ├── bitflip_1_0d8_states.bin.z │ │ ├── bitflip_1_0da_states.bin.z │ │ ├── bitflip_1_0de_states.bin.z │ │ ├── bitflip_1_0e0_states.bin.z │ │ ├── bitflip_1_0e8_states.bin.z │ │ ├── bitflip_1_0f8_states.bin.z │ │ ├── bitflip_1_108_states.bin.z │ │ ├── bitflip_1_111_states.bin.z │ │ ├── bitflip_1_113_states.bin.z │ │ ├── bitflip_1_115_states.bin.z │ │ ├── bitflip_1_117_states.bin.z │ │ ├── bitflip_1_118_states.bin.z │ │ ├── bitflip_1_11a_states.bin.z │ │ ├── bitflip_1_11b_states.bin.z │ │ ├── bitflip_1_120_states.bin.z │ │ ├── bitflip_1_122_states.bin.z │ │ ├── bitflip_1_128_states.bin.z │ │ ├── bitflip_1_131_states.bin.z │ │ ├── bitflip_1_135_states.bin.z │ │ ├── bitflip_1_138_states.bin.z │ │ ├── bitflip_1_145_states.bin.z │ │ ├── bitflip_1_147_states.bin.z │ │ ├── bitflip_1_148_states.bin.z │ │ ├── bitflip_1_158_states.bin.z │ │ ├── bitflip_1_160_states.bin.z │ │ ├── bitflip_1_161_states.bin.z │ │ ├── bitflip_1_163_states.bin.z │ │ ├── bitflip_1_165_states.bin.z │ │ ├── bitflip_1_168_states.bin.z │ │ ├── bitflip_1_178_states.bin.z │ │ ├── bitflip_1_180_states.bin.z │ │ ├── bitflip_1_188_states.bin.z │ │ ├── bitflip_1_191_states.bin.z │ │ ├── bitflip_1_198_states.bin.z │ │ ├── bitflip_1_199_states.bin.z │ │ ├── bitflip_1_19d_states.bin.z │ │ ├── bitflip_1_19f_states.bin.z │ │ ├── bitflip_1_1a0_states.bin.z │ │ ├── bitflip_1_1a8_states.bin.z │ │ ├── bitflip_1_1b3_states.bin.z │ │ ├── bitflip_1_1b5_states.bin.z │ │ ├── bitflip_1_1b7_states.bin.z │ │ ├── bitflip_1_1b8_states.bin.z │ │ ├── bitflip_1_1b9_states.bin.z │ │ ├── bitflip_1_1bd_states.bin.z │ │ ├── bitflip_1_1c1_states.bin.z │ │ ├── bitflip_1_1c3_states.bin.z │ │ ├── bitflip_1_1c8_states.bin.z │ │ ├── bitflip_1_1c9_states.bin.z │ │ ├── bitflip_1_1cd_states.bin.z │ │ ├── bitflip_1_1cf_states.bin.z │ │ ├── bitflip_1_1d8_states.bin.z │ │ ├── bitflip_1_1e0_states.bin.z │ │ ├── bitflip_1_1e1_states.bin.z │ │ ├── bitflip_1_1e5_states.bin.z │ │ ├── bitflip_1_1e7_states.bin.z │ │ ├── bitflip_1_1e8_states.bin.z │ │ ├── bitflip_1_1e9_states.bin.z │ │ ├── bitflip_1_1eb_states.bin.z │ │ ├── bitflip_1_1ed_states.bin.z │ │ ├── bitflip_1_1f8_states.bin.z │ │ ├── bitflip_1_208_states.bin.z │ │ ├── bitflip_1_220_states.bin.z │ │ ├── bitflip_1_24a_states.bin.z │ │ ├── bitflip_1_24e_states.bin.z │ │ ├── bitflip_1_25a_states.bin.z │ │ ├── bitflip_1_25e_states.bin.z │ │ ├── bitflip_1_262_states.bin.z │ │ ├── bitflip_1_266_states.bin.z │ │ ├── bitflip_1_272_states.bin.z │ │ ├── bitflip_1_276_states.bin.z │ │ ├── bitflip_1_280_states.bin.z │ │ ├── bitflip_1_2a8_states.bin.z │ │ ├── bitflip_1_2c2_states.bin.z │ │ ├── bitflip_1_2c6_states.bin.z │ │ ├── bitflip_1_2d2_states.bin.z │ │ ├── bitflip_1_2d6_states.bin.z │ │ ├── bitflip_1_328_states.bin.z │ │ ├── bitflip_1_388_states.bin.z │ │ └── bitflip_1_3a0_states.bin.z ├── 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 ├── hidcardformats.c ├── hidcardformats.h ├── hidcardformatutils.c ├── hidcardformatutils.h ├── hitag2.ht2 ├── jansson │ ├── Makefile │ ├── dump.c │ ├── error.c │ ├── hashtable.c │ ├── hashtable.h │ ├── hashtable_seed.c │ ├── jansson.def │ ├── jansson.h │ ├── jansson_config.h │ ├── jansson_config.h.in │ ├── jansson_private.h │ ├── load.c │ ├── lookup3.h │ ├── memory.c │ ├── pack_unpack.c │ ├── path.c │ ├── strbuffer.c │ ├── strbuffer.h │ ├── strconv.c │ ├── utf.c │ ├── utf.h │ └── value.c ├── loclass │ ├── cipher.c │ ├── cipher.h │ ├── cipherutils.c │ ├── cipherutils.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 ├── mifare │ ├── mad.c │ ├── mad.h │ ├── mfkey.c │ ├── mfkey.h │ ├── mifare4.c │ ├── mifare4.h │ ├── mifaredefault.h │ ├── mifarehost.c │ ├── mifarehost.h │ ├── ndef.c │ └── ndef.h ├── obj │ ├── .dummy │ ├── cliparser │ │ └── .dummy │ ├── crapto1 │ │ └── .dummy │ ├── crypto │ │ └── .dummy │ ├── emv │ │ ├── .dummy │ │ └── test │ │ │ └── .dummy │ ├── fido │ │ └── .dummy │ ├── hardnested │ │ └── .dummy │ ├── loclass │ │ └── .dummy │ └── mifare │ │ └── .dummy ├── pcsc.c ├── pcsc.h ├── 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 ├── proxendian.h ├── proxgui.cpp ├── proxgui.h ├── proxguiqt.cpp ├── proxguiqt.h ├── proxmark3.c ├── proxmark3.h ├── sc_upgrade_firmware │ ├── SIM010.BIN │ ├── SIM010.md5.txt │ ├── SIM010.sha512.txt │ └── readme.txt ├── scripting.c ├── scripting.h ├── scripts │ ├── 14araw.lua │ ├── brutesim.lua │ ├── cmdline.lua │ ├── didump.lua │ ├── dumptoemul.lua │ ├── emul2dump.lua │ ├── emul2html.lua │ ├── formatMifare.lua │ ├── hf_read.lua │ ├── htmldump.lua │ ├── lf_bulk_program.lua │ ├── mfkeys.lua │ ├── mifarePlus.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 ├── taginfo.c ├── taginfo.h ├── tinycbor │ ├── Makefile │ ├── cbor.h │ ├── cborencoder.c │ ├── cborencoder_close_container_checked.c │ ├── cborerrorstrings.c │ ├── cborinternal_p.h │ ├── cborjson.h │ ├── cborparser.c │ ├── cborparser_dup_string.c │ ├── cborpretty.c │ ├── cborpretty_stdio.c │ ├── cbortojson.c │ ├── cborvalidation.c │ ├── compilersupport_p.h │ ├── open_memstream.c │ ├── tinycbor-version.h │ └── utf8_p.h ├── ui.c ├── ui.h ├── ui │ └── overlays.ui ├── unbind-proxmark ├── usb_cmd_h2lua.awk ├── util.c ├── util.h ├── util_darwin.h ├── util_darwin.m ├── util_posix.c ├── util_posix.h ├── whereami.c └── whereami.h ├── common ├── Makefile.common ├── Makefile_Enabled_Options.common ├── crapto1 │ ├── crapto1.c │ ├── crapto1.h │ ├── crypto1.c │ └── readme ├── crc.c ├── crc.h ├── crc16.c ├── crc16.h ├── crc32.c ├── crc32.h ├── crc64.c ├── crc64.h ├── default_version.c ├── fpga.h ├── iso14443crc.c ├── iso14443crc.h ├── iso15693tools.c ├── iso15693tools.h ├── ldscript.common ├── legic_prng.c ├── lfdemod.c ├── lfdemod.h ├── mbedtls │ ├── Makefile │ ├── aes.c │ ├── aes.h │ ├── arc4.c │ ├── arc4.h │ ├── asn1.h │ ├── asn1parse.c │ ├── asn1write.c │ ├── asn1write.h │ ├── base64.c │ ├── base64.h │ ├── bignum.c │ ├── bignum.h │ ├── blowfish.c │ ├── blowfish.h │ ├── bn_mul.h │ ├── camellia.c │ ├── camellia.h │ ├── certs.c │ ├── certs.h │ ├── check_config.h │ ├── cipher.c │ ├── cipher.h │ ├── cipher_internal.h │ ├── cipher_wrap.c │ ├── cmac.c │ ├── cmac.h │ ├── config.h │ ├── ctr_drbg.c │ ├── ctr_drbg.h │ ├── des.c │ ├── des.h │ ├── ecdsa.c │ ├── ecdsa.h │ ├── ecp.c │ ├── ecp.h │ ├── ecp_curves.c │ ├── ecp_internal.h │ ├── entropy.c │ ├── entropy.h │ ├── entropy_poll.c │ ├── entropy_poll.h │ ├── error.c │ ├── error.h │ ├── md.c │ ├── md.h │ ├── md5.c │ ├── md5.h │ ├── md_internal.h │ ├── md_wrap.c │ ├── oid.c │ ├── oid.h │ ├── pem.c │ ├── pem.h │ ├── pk.c │ ├── pk.h │ ├── pk_internal.h │ ├── pk_wrap.c │ ├── pkcs12.c │ ├── pkcs12.h │ ├── pkcs5.c │ ├── pkcs5.h │ ├── pkparse.c │ ├── pkwrite.c │ ├── platform.c │ ├── platform.h │ ├── platform_util.c │ ├── platform_util.h │ ├── platform_util_arm.c │ ├── platform_util_arm.h │ ├── rsa.c │ ├── rsa.h │ ├── rsa_internal.c │ ├── rsa_internal.h │ ├── sha1.c │ ├── sha1.h │ ├── sha256.c │ ├── sha256.h │ ├── sha512.c │ ├── sha512.h │ ├── threading.c │ ├── threading.h │ ├── timing.c │ ├── timing.h │ ├── x509.c │ ├── x509.h │ ├── x509_crl.c │ ├── x509_crl.h │ ├── x509_crt.c │ └── x509_crt.h ├── parity.c ├── parity.h ├── protocols.c ├── protocols.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_get_trace.v ├── hi_iso14443a.v ├── hi_reader.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 ├── hitag.h ├── legic.h ├── legic_prng.h ├── mifare.h ├── proxmark3.h ├── smartcard.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-busblaster.cfg ├── at91sam7s512-buspirate.cfg ├── at91sam7s512-jtagkey.cfg ├── findbits.py ├── findbits_test.py ├── install-gnuarm4.sh ├── mfkey │ ├── Makefile │ ├── example_trace.txt │ ├── mfkey32.c │ └── mfkey64.c ├── mkversion.pl ├── 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 ├── uart ├── README.md ├── uart.h ├── uart_posix.c └── uart_win32.c └── 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/Proxmark/proxmark3/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CI/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/CI/.travis.yml -------------------------------------------------------------------------------- /CI/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/CI/appveyor.yml -------------------------------------------------------------------------------- /CI/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/CI/readme.md -------------------------------------------------------------------------------- /CI/travis_test_commands.scr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/CI/travis_test_commands.scr -------------------------------------------------------------------------------- /COMPILING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/COMPILING.txt -------------------------------------------------------------------------------- /HACKING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/HACKING.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/README.md -------------------------------------------------------------------------------- /armsrc/BigBuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/armsrc/BigBuf.c -------------------------------------------------------------------------------- /armsrc/BigBuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/armsrc/BigBuf.h -------------------------------------------------------------------------------- /armsrc/LCD.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/armsrc/LCD.c -------------------------------------------------------------------------------- /armsrc/LCD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/armsrc/LCD.h -------------------------------------------------------------------------------- /armsrc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/armsrc/Makefile -------------------------------------------------------------------------------- /armsrc/appmain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/armsrc/appmain.c -------------------------------------------------------------------------------- /armsrc/apps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/armsrc/apps.h -------------------------------------------------------------------------------- /armsrc/epa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/armsrc/epa.c -------------------------------------------------------------------------------- /armsrc/epa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/armsrc/epa.h -------------------------------------------------------------------------------- /armsrc/fonts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/armsrc/fonts.c -------------------------------------------------------------------------------- /armsrc/fonts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/armsrc/fonts.h -------------------------------------------------------------------------------- /armsrc/fpgaloader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/armsrc/fpgaloader.c -------------------------------------------------------------------------------- /armsrc/fpgaloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/armsrc/fpgaloader.h -------------------------------------------------------------------------------- /armsrc/hfsnoop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/armsrc/hfsnoop.c -------------------------------------------------------------------------------- /armsrc/hfsnoop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/armsrc/hfsnoop.h -------------------------------------------------------------------------------- /armsrc/hitag2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/armsrc/hitag2.c -------------------------------------------------------------------------------- /armsrc/hitag2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/armsrc/hitag2.h -------------------------------------------------------------------------------- /armsrc/hitagS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/armsrc/hitagS.c -------------------------------------------------------------------------------- /armsrc/hitagS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/armsrc/hitagS.h -------------------------------------------------------------------------------- /armsrc/i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/armsrc/i2c.c -------------------------------------------------------------------------------- /armsrc/i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/armsrc/i2c.h -------------------------------------------------------------------------------- /armsrc/iclass.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/armsrc/iclass.c -------------------------------------------------------------------------------- /armsrc/iclass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/armsrc/iclass.h -------------------------------------------------------------------------------- /armsrc/iso14443a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/armsrc/iso14443a.c -------------------------------------------------------------------------------- /armsrc/iso14443a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/armsrc/iso14443a.h -------------------------------------------------------------------------------- /armsrc/iso14443b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/armsrc/iso14443b.c -------------------------------------------------------------------------------- /armsrc/iso14443b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/armsrc/iso14443b.h -------------------------------------------------------------------------------- /armsrc/iso15693.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/armsrc/iso15693.c -------------------------------------------------------------------------------- /armsrc/iso15693.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/armsrc/iso15693.h -------------------------------------------------------------------------------- /armsrc/ldscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/armsrc/ldscript -------------------------------------------------------------------------------- /armsrc/legicrf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/armsrc/legicrf.c -------------------------------------------------------------------------------- /armsrc/legicrf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/armsrc/legicrf.h -------------------------------------------------------------------------------- /armsrc/legicrfsim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/armsrc/legicrfsim.c -------------------------------------------------------------------------------- /armsrc/legicrfsim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/armsrc/legicrfsim.h -------------------------------------------------------------------------------- /armsrc/lfops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/armsrc/lfops.c -------------------------------------------------------------------------------- /armsrc/lfsampling.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/armsrc/lfsampling.c -------------------------------------------------------------------------------- /armsrc/lfsampling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/armsrc/lfsampling.h -------------------------------------------------------------------------------- /armsrc/mifarecmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/armsrc/mifarecmd.c -------------------------------------------------------------------------------- /armsrc/mifarecmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/armsrc/mifarecmd.h -------------------------------------------------------------------------------- /armsrc/mifaresim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/armsrc/mifaresim.c -------------------------------------------------------------------------------- /armsrc/mifaresim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/armsrc/mifaresim.h -------------------------------------------------------------------------------- /armsrc/mifaresniff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/armsrc/mifaresniff.c -------------------------------------------------------------------------------- /armsrc/mifaresniff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/armsrc/mifaresniff.h -------------------------------------------------------------------------------- /armsrc/mifareutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/armsrc/mifareutil.c -------------------------------------------------------------------------------- /armsrc/mifareutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/armsrc/mifareutil.h -------------------------------------------------------------------------------- /armsrc/obj/.dummy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /armsrc/optimized_cipher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/armsrc/optimized_cipher.c -------------------------------------------------------------------------------- /armsrc/optimized_cipher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/armsrc/optimized_cipher.h -------------------------------------------------------------------------------- /armsrc/pcf7931.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/armsrc/pcf7931.c -------------------------------------------------------------------------------- /armsrc/pcf7931.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/armsrc/pcf7931.h -------------------------------------------------------------------------------- /armsrc/printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/armsrc/printf.c -------------------------------------------------------------------------------- /armsrc/printf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/armsrc/printf.h -------------------------------------------------------------------------------- /armsrc/start.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/armsrc/start.c -------------------------------------------------------------------------------- /armsrc/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/armsrc/string.c -------------------------------------------------------------------------------- /armsrc/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/armsrc/string.h -------------------------------------------------------------------------------- /armsrc/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/armsrc/util.c -------------------------------------------------------------------------------- /armsrc/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/armsrc/util.h -------------------------------------------------------------------------------- /bootrom/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/bootrom/Makefile -------------------------------------------------------------------------------- /bootrom/bootrom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/bootrom/bootrom.c -------------------------------------------------------------------------------- /bootrom/flash-reset.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/bootrom/flash-reset.s -------------------------------------------------------------------------------- /bootrom/ldscript-flash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/bootrom/ldscript-flash -------------------------------------------------------------------------------- /bootrom/obj/.dummy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bootrom/ram-reset.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/bootrom/ram-reset.s -------------------------------------------------------------------------------- /bootrom/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/bootrom/string.c -------------------------------------------------------------------------------- /bootrom/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/bootrom/string.h -------------------------------------------------------------------------------- /client/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/Makefile -------------------------------------------------------------------------------- /client/README-bitlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/README-bitlib -------------------------------------------------------------------------------- /client/cliparser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/cliparser/README.md -------------------------------------------------------------------------------- /client/cliparser/argtable3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/cliparser/argtable3.c -------------------------------------------------------------------------------- /client/cliparser/argtable3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/cliparser/argtable3.h -------------------------------------------------------------------------------- /client/cliparser/cliparser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/cliparser/cliparser.c -------------------------------------------------------------------------------- /client/cliparser/cliparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/cliparser/cliparser.h -------------------------------------------------------------------------------- /client/cmddata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/cmddata.c -------------------------------------------------------------------------------- /client/cmddata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/cmddata.h -------------------------------------------------------------------------------- /client/cmdhf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/cmdhf.c -------------------------------------------------------------------------------- /client/cmdhf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/cmdhf.h -------------------------------------------------------------------------------- /client/cmdhf14a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/cmdhf14a.c -------------------------------------------------------------------------------- /client/cmdhf14a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/cmdhf14a.h -------------------------------------------------------------------------------- /client/cmdhf14b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/cmdhf14b.c -------------------------------------------------------------------------------- /client/cmdhf14b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/cmdhf14b.h -------------------------------------------------------------------------------- /client/cmdhf15.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/cmdhf15.c -------------------------------------------------------------------------------- /client/cmdhf15.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/cmdhf15.h -------------------------------------------------------------------------------- /client/cmdhfepa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/cmdhfepa.c -------------------------------------------------------------------------------- /client/cmdhfepa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/cmdhfepa.h -------------------------------------------------------------------------------- /client/cmdhffido.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/cmdhffido.c -------------------------------------------------------------------------------- /client/cmdhffido.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/cmdhffido.h -------------------------------------------------------------------------------- /client/cmdhficlass.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/cmdhficlass.c -------------------------------------------------------------------------------- /client/cmdhficlass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/cmdhficlass.h -------------------------------------------------------------------------------- /client/cmdhflegic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/cmdhflegic.c -------------------------------------------------------------------------------- /client/cmdhflegic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/cmdhflegic.h -------------------------------------------------------------------------------- /client/cmdhflist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/cmdhflist.c -------------------------------------------------------------------------------- /client/cmdhflist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/cmdhflist.h -------------------------------------------------------------------------------- /client/cmdhfmf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/cmdhfmf.c -------------------------------------------------------------------------------- /client/cmdhfmf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/cmdhfmf.h -------------------------------------------------------------------------------- /client/cmdhfmfhard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/cmdhfmfhard.c -------------------------------------------------------------------------------- /client/cmdhfmfhard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/cmdhfmfhard.h -------------------------------------------------------------------------------- /client/cmdhfmfp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/cmdhfmfp.c -------------------------------------------------------------------------------- /client/cmdhfmfp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/cmdhfmfp.h -------------------------------------------------------------------------------- /client/cmdhfmfu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/cmdhfmfu.c -------------------------------------------------------------------------------- /client/cmdhfmfu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/cmdhfmfu.h -------------------------------------------------------------------------------- /client/cmdhftopaz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/cmdhftopaz.c -------------------------------------------------------------------------------- /client/cmdhftopaz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/cmdhftopaz.h -------------------------------------------------------------------------------- /client/cmdhw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/cmdhw.c -------------------------------------------------------------------------------- /client/cmdhw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/cmdhw.h -------------------------------------------------------------------------------- /client/cmdlf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/cmdlf.c -------------------------------------------------------------------------------- /client/cmdlf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/cmdlf.h -------------------------------------------------------------------------------- /client/cmdlfawid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/cmdlfawid.c -------------------------------------------------------------------------------- /client/cmdlfawid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/cmdlfawid.h -------------------------------------------------------------------------------- /client/cmdlfcotag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/cmdlfcotag.c -------------------------------------------------------------------------------- /client/cmdlfcotag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/cmdlfcotag.h -------------------------------------------------------------------------------- /client/cmdlfem4x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/cmdlfem4x.c -------------------------------------------------------------------------------- /client/cmdlfem4x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/cmdlfem4x.h -------------------------------------------------------------------------------- /client/cmdlffdx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/cmdlffdx.c -------------------------------------------------------------------------------- /client/cmdlffdx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/cmdlffdx.h -------------------------------------------------------------------------------- /client/cmdlfgproxii.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/cmdlfgproxii.c -------------------------------------------------------------------------------- /client/cmdlfgproxii.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/cmdlfgproxii.h -------------------------------------------------------------------------------- /client/cmdlfhid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/cmdlfhid.c -------------------------------------------------------------------------------- /client/cmdlfhid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/cmdlfhid.h -------------------------------------------------------------------------------- /client/cmdlfhitag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/cmdlfhitag.c -------------------------------------------------------------------------------- /client/cmdlfhitag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/cmdlfhitag.h -------------------------------------------------------------------------------- /client/cmdlfindala.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/cmdlfindala.c -------------------------------------------------------------------------------- /client/cmdlfindala.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/cmdlfindala.h -------------------------------------------------------------------------------- /client/cmdlfio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/cmdlfio.c -------------------------------------------------------------------------------- /client/cmdlfio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/cmdlfio.h -------------------------------------------------------------------------------- /client/cmdlfjablotron.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/cmdlfjablotron.c -------------------------------------------------------------------------------- /client/cmdlfjablotron.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/cmdlfjablotron.h -------------------------------------------------------------------------------- /client/cmdlfnexwatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/cmdlfnexwatch.c -------------------------------------------------------------------------------- /client/cmdlfnexwatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/cmdlfnexwatch.h -------------------------------------------------------------------------------- /client/cmdlfnoralsy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/cmdlfnoralsy.c -------------------------------------------------------------------------------- /client/cmdlfnoralsy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/cmdlfnoralsy.h -------------------------------------------------------------------------------- /client/cmdlfpac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/cmdlfpac.c -------------------------------------------------------------------------------- /client/cmdlfpac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/cmdlfpac.h -------------------------------------------------------------------------------- /client/cmdlfparadox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/cmdlfparadox.c -------------------------------------------------------------------------------- /client/cmdlfparadox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/cmdlfparadox.h -------------------------------------------------------------------------------- /client/cmdlfpcf7931.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/cmdlfpcf7931.c -------------------------------------------------------------------------------- /client/cmdlfpcf7931.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/cmdlfpcf7931.h -------------------------------------------------------------------------------- /client/cmdlfpresco.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/cmdlfpresco.c -------------------------------------------------------------------------------- /client/cmdlfpresco.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/cmdlfpresco.h -------------------------------------------------------------------------------- /client/cmdlfpyramid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/cmdlfpyramid.c -------------------------------------------------------------------------------- /client/cmdlfpyramid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/cmdlfpyramid.h -------------------------------------------------------------------------------- /client/cmdlfsecurakey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/cmdlfsecurakey.c -------------------------------------------------------------------------------- /client/cmdlfsecurakey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/cmdlfsecurakey.h -------------------------------------------------------------------------------- /client/cmdlft55xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/cmdlft55xx.c -------------------------------------------------------------------------------- /client/cmdlft55xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/cmdlft55xx.h -------------------------------------------------------------------------------- /client/cmdlfti.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/cmdlfti.c -------------------------------------------------------------------------------- /client/cmdlfti.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/cmdlfti.h -------------------------------------------------------------------------------- /client/cmdlfviking.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/cmdlfviking.c -------------------------------------------------------------------------------- /client/cmdlfviking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/cmdlfviking.h -------------------------------------------------------------------------------- /client/cmdlfvisa2000.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/cmdlfvisa2000.c -------------------------------------------------------------------------------- /client/cmdlfvisa2000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/cmdlfvisa2000.h -------------------------------------------------------------------------------- /client/cmdmain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/cmdmain.c -------------------------------------------------------------------------------- /client/cmdmain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/cmdmain.h -------------------------------------------------------------------------------- /client/cmdparser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/cmdparser.c -------------------------------------------------------------------------------- /client/cmdparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/cmdparser.h -------------------------------------------------------------------------------- /client/cmdscript.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/cmdscript.c -------------------------------------------------------------------------------- /client/cmdscript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/cmdscript.h -------------------------------------------------------------------------------- /client/cmdsmartcard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/cmdsmartcard.c -------------------------------------------------------------------------------- /client/cmdsmartcard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/cmdsmartcard.h -------------------------------------------------------------------------------- /client/comms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/comms.c -------------------------------------------------------------------------------- /client/comms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/comms.h -------------------------------------------------------------------------------- /client/crypto/asn1dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/crypto/asn1dump.c -------------------------------------------------------------------------------- /client/crypto/asn1dump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/crypto/asn1dump.h -------------------------------------------------------------------------------- /client/crypto/asn1utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/crypto/asn1utils.c -------------------------------------------------------------------------------- /client/crypto/asn1utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/crypto/asn1utils.h -------------------------------------------------------------------------------- /client/crypto/libpcrypto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/crypto/libpcrypto.c -------------------------------------------------------------------------------- /client/crypto/libpcrypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/crypto/libpcrypto.h -------------------------------------------------------------------------------- /client/crypto/oids.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/crypto/oids.json -------------------------------------------------------------------------------- /client/default_keys.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/default_keys.dic -------------------------------------------------------------------------------- /client/default_pwd.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/default_pwd.dic -------------------------------------------------------------------------------- /client/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/elf.h -------------------------------------------------------------------------------- /client/eml2UPPER.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/eml2UPPER.sh -------------------------------------------------------------------------------- /client/eml2lower.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/eml2lower.sh -------------------------------------------------------------------------------- /client/emv/apduinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/emv/apduinfo.c -------------------------------------------------------------------------------- /client/emv/apduinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/emv/apduinfo.h -------------------------------------------------------------------------------- /client/emv/capk.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/emv/capk.txt -------------------------------------------------------------------------------- /client/emv/cmdemv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/emv/cmdemv.c -------------------------------------------------------------------------------- /client/emv/cmdemv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/emv/cmdemv.h -------------------------------------------------------------------------------- /client/emv/crypto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/emv/crypto.c -------------------------------------------------------------------------------- /client/emv/crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/emv/crypto.h -------------------------------------------------------------------------------- /client/emv/crypto_backend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/emv/crypto_backend.h -------------------------------------------------------------------------------- /client/emv/crypto_polarssl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/emv/crypto_polarssl.c -------------------------------------------------------------------------------- /client/emv/defparams.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/emv/defparams.json -------------------------------------------------------------------------------- /client/emv/dol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/emv/dol.c -------------------------------------------------------------------------------- /client/emv/dol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/emv/dol.h -------------------------------------------------------------------------------- /client/emv/dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/emv/dump.c -------------------------------------------------------------------------------- /client/emv/dump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/emv/dump.h -------------------------------------------------------------------------------- /client/emv/emv_pk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/emv/emv_pk.c -------------------------------------------------------------------------------- /client/emv/emv_pk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/emv/emv_pk.h -------------------------------------------------------------------------------- /client/emv/emv_pki.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/emv/emv_pki.c -------------------------------------------------------------------------------- /client/emv/emv_pki.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/emv/emv_pki.h -------------------------------------------------------------------------------- /client/emv/emv_pki_priv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/emv/emv_pki_priv.c -------------------------------------------------------------------------------- /client/emv/emv_pki_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/emv/emv_pki_priv.h -------------------------------------------------------------------------------- /client/emv/emv_roca.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/emv/emv_roca.c -------------------------------------------------------------------------------- /client/emv/emv_roca.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/emv/emv_roca.h -------------------------------------------------------------------------------- /client/emv/emv_tags.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/emv/emv_tags.c -------------------------------------------------------------------------------- /client/emv/emv_tags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/emv/emv_tags.h -------------------------------------------------------------------------------- /client/emv/emvcore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/emv/emvcore.c -------------------------------------------------------------------------------- /client/emv/emvcore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/emv/emvcore.h -------------------------------------------------------------------------------- /client/emv/emvjson.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/emv/emvjson.c -------------------------------------------------------------------------------- /client/emv/emvjson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/emv/emvjson.h -------------------------------------------------------------------------------- /client/emv/test/cda_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/emv/test/cda_test.c -------------------------------------------------------------------------------- /client/emv/test/cda_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/emv/test/cda_test.h -------------------------------------------------------------------------------- /client/emv/test/crypto_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/emv/test/crypto_test.c -------------------------------------------------------------------------------- /client/emv/test/crypto_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/emv/test/crypto_test.h -------------------------------------------------------------------------------- /client/emv/test/cryptotest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/emv/test/cryptotest.c -------------------------------------------------------------------------------- /client/emv/test/cryptotest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/emv/test/cryptotest.h -------------------------------------------------------------------------------- /client/emv/test/dda_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/emv/test/dda_test.c -------------------------------------------------------------------------------- /client/emv/test/dda_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/emv/test/dda_test.h -------------------------------------------------------------------------------- /client/emv/test/sda_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/emv/test/sda_test.c -------------------------------------------------------------------------------- /client/emv/test/sda_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/emv/test/sda_test.h -------------------------------------------------------------------------------- /client/emv/tlv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/emv/tlv.c -------------------------------------------------------------------------------- /client/emv/tlv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/emv/tlv.h -------------------------------------------------------------------------------- /client/fido/additional_ca.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/fido/additional_ca.c -------------------------------------------------------------------------------- /client/fido/additional_ca.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/fido/additional_ca.h -------------------------------------------------------------------------------- /client/fido/cbortools.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/fido/cbortools.c -------------------------------------------------------------------------------- /client/fido/cbortools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/fido/cbortools.h -------------------------------------------------------------------------------- /client/fido/cose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/fido/cose.c -------------------------------------------------------------------------------- /client/fido/cose.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/fido/cose.h -------------------------------------------------------------------------------- /client/fido/fido2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/fido/fido2.json -------------------------------------------------------------------------------- /client/fido/fidocore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/fido/fidocore.c -------------------------------------------------------------------------------- /client/fido/fidocore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/fido/fidocore.h -------------------------------------------------------------------------------- /client/flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/flash.c -------------------------------------------------------------------------------- /client/flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/flash.h -------------------------------------------------------------------------------- /client/flasher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/flasher.c -------------------------------------------------------------------------------- /client/fpga_compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/fpga_compress.c -------------------------------------------------------------------------------- /client/gen_pm3mfsim_script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/gen_pm3mfsim_script.sh -------------------------------------------------------------------------------- /client/graph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/graph.c -------------------------------------------------------------------------------- /client/graph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/graph.h -------------------------------------------------------------------------------- /client/guidummy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/guidummy.cpp -------------------------------------------------------------------------------- /client/hardnested/bf_bench_data.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hardnested/bf_bench_data.bin -------------------------------------------------------------------------------- /client/hardnested/hardnested_bf_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hardnested/hardnested_bf_core.c -------------------------------------------------------------------------------- /client/hardnested/hardnested_bf_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hardnested/hardnested_bf_core.h -------------------------------------------------------------------------------- /client/hardnested/hardnested_bitarray_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hardnested/hardnested_bitarray_core.c -------------------------------------------------------------------------------- /client/hardnested/hardnested_bitarray_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hardnested/hardnested_bitarray_core.h -------------------------------------------------------------------------------- /client/hardnested/hardnested_bruteforce.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hardnested/hardnested_bruteforce.c -------------------------------------------------------------------------------- /client/hardnested/hardnested_bruteforce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hardnested/hardnested_bruteforce.h -------------------------------------------------------------------------------- /client/hardnested/hardnested_tables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hardnested/hardnested_tables.c -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_001_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hardnested/tables/bitflip_0_001_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_003_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hardnested/tables/bitflip_0_003_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_005_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hardnested/tables/bitflip_0_005_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_007_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hardnested/tables/bitflip_0_007_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_009_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hardnested/tables/bitflip_0_009_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_00b_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hardnested/tables/bitflip_0_00b_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_00d_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hardnested/tables/bitflip_0_00d_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_00f_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hardnested/tables/bitflip_0_00f_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_010_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hardnested/tables/bitflip_0_010_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_014_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hardnested/tables/bitflip_0_014_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_01c_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hardnested/tables/bitflip_0_01c_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_021_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hardnested/tables/bitflip_0_021_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_023_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hardnested/tables/bitflip_0_023_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_025_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hardnested/tables/bitflip_0_025_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_027_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hardnested/tables/bitflip_0_027_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_029_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hardnested/tables/bitflip_0_029_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_02b_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hardnested/tables/bitflip_0_02b_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_02d_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hardnested/tables/bitflip_0_02d_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_02f_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hardnested/tables/bitflip_0_02f_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_030_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hardnested/tables/bitflip_0_030_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_034_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hardnested/tables/bitflip_0_034_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_03c_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hardnested/tables/bitflip_0_03c_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_040_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hardnested/tables/bitflip_0_040_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_044_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hardnested/tables/bitflip_0_044_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_04c_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hardnested/tables/bitflip_0_04c_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_051_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hardnested/tables/bitflip_0_051_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_053_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hardnested/tables/bitflip_0_053_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_055_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hardnested/tables/bitflip_0_055_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_057_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hardnested/tables/bitflip_0_057_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_059_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hardnested/tables/bitflip_0_059_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_05b_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hardnested/tables/bitflip_0_05b_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_05d_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hardnested/tables/bitflip_0_05d_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_05f_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hardnested/tables/bitflip_0_05f_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_064_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hardnested/tables/bitflip_0_064_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_06c_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hardnested/tables/bitflip_0_06c_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_071_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hardnested/tables/bitflip_0_071_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_073_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hardnested/tables/bitflip_0_073_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_075_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hardnested/tables/bitflip_0_075_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_077_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hardnested/tables/bitflip_0_077_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_079_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hardnested/tables/bitflip_0_079_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_07b_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hardnested/tables/bitflip_0_07b_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_07f_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hardnested/tables/bitflip_0_07f_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_081_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hardnested/tables/bitflip_0_081_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_083_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hardnested/tables/bitflip_0_083_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_085_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hardnested/tables/bitflip_0_085_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_087_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hardnested/tables/bitflip_0_087_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_089_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hardnested/tables/bitflip_0_089_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_08b_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hardnested/tables/bitflip_0_08b_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_08d_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hardnested/tables/bitflip_0_08d_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_08f_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hardnested/tables/bitflip_0_08f_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_090_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hardnested/tables/bitflip_0_090_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_094_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hardnested/tables/bitflip_0_094_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_09c_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hardnested/tables/bitflip_0_09c_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_0a1_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hardnested/tables/bitflip_0_0a1_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_0a3_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hardnested/tables/bitflip_0_0a3_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_0a5_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hardnested/tables/bitflip_0_0a5_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_0a7_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hardnested/tables/bitflip_0_0a7_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_0a9_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hardnested/tables/bitflip_0_0a9_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_0ab_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hardnested/tables/bitflip_0_0ab_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_0ad_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hardnested/tables/bitflip_0_0ad_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_0af_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hardnested/tables/bitflip_0_0af_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_0b0_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hardnested/tables/bitflip_0_0b0_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_0b4_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hardnested/tables/bitflip_0_0b4_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_0bc_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hardnested/tables/bitflip_0_0bc_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_0c0_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hardnested/tables/bitflip_0_0c0_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_0c4_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hardnested/tables/bitflip_0_0c4_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_0cc_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hardnested/tables/bitflip_0_0cc_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_0d1_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hardnested/tables/bitflip_0_0d1_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_0d3_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hardnested/tables/bitflip_0_0d3_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_0d5_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hardnested/tables/bitflip_0_0d5_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_0d7_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hardnested/tables/bitflip_0_0d7_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_0d9_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hardnested/tables/bitflip_0_0d9_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_0db_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hardnested/tables/bitflip_0_0db_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_0dd_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hardnested/tables/bitflip_0_0dd_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_0df_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hardnested/tables/bitflip_0_0df_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_0e4_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hardnested/tables/bitflip_0_0e4_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_0ec_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hardnested/tables/bitflip_0_0ec_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_0f1_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hardnested/tables/bitflip_0_0f1_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_0f3_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hardnested/tables/bitflip_0_0f3_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_0f5_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hardnested/tables/bitflip_0_0f5_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_0f7_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hardnested/tables/bitflip_0_0f7_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_0f9_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hardnested/tables/bitflip_0_0f9_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_0fb_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hardnested/tables/bitflip_0_0fb_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_0fd_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hardnested/tables/bitflip_0_0fd_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_0ff_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hardnested/tables/bitflip_0_0ff_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_104_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hardnested/tables/bitflip_0_104_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_10c_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hardnested/tables/bitflip_0_10c_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_111_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hardnested/tables/bitflip_0_111_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_113_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hardnested/tables/bitflip_0_113_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_115_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hardnested/tables/bitflip_0_115_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_117_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hardnested/tables/bitflip_0_117_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_119_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hardnested/tables/bitflip_0_119_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_11b_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hardnested/tables/bitflip_0_11b_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_11d_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hardnested/tables/bitflip_0_11d_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_11f_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hardnested/tables/bitflip_0_11f_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_124_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hardnested/tables/bitflip_0_124_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_12c_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hardnested/tables/bitflip_0_12c_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_131_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hardnested/tables/bitflip_0_131_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_133_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hardnested/tables/bitflip_0_133_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_135_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hardnested/tables/bitflip_0_135_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_137_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hardnested/tables/bitflip_0_137_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_139_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hardnested/tables/bitflip_0_139_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_13b_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hardnested/tables/bitflip_0_13b_states.bin.z -------------------------------------------------------------------------------- /client/hid-flasher/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hid-flasher/Info.plist -------------------------------------------------------------------------------- /client/hid-flasher/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hid-flasher/Makefile -------------------------------------------------------------------------------- /client/hid-flasher/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hid-flasher/elf.h -------------------------------------------------------------------------------- /client/hid-flasher/flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hid-flasher/flash.c -------------------------------------------------------------------------------- /client/hid-flasher/flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hid-flasher/flash.h -------------------------------------------------------------------------------- /client/hid-flasher/flasher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hid-flasher/flasher.c -------------------------------------------------------------------------------- /client/hid-flasher/obj/.dummy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/hid-flasher/proxendian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hid-flasher/proxendian.h -------------------------------------------------------------------------------- /client/hid-flasher/proxmark3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hid-flasher/proxmark3.h -------------------------------------------------------------------------------- /client/hid-flasher/proxusb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hid-flasher/proxusb.c -------------------------------------------------------------------------------- /client/hid-flasher/proxusb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hid-flasher/proxusb.h -------------------------------------------------------------------------------- /client/hid-flasher/sleep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hid-flasher/sleep.h -------------------------------------------------------------------------------- /client/hid-flasher/usb_cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hid-flasher/usb_cmd.h -------------------------------------------------------------------------------- /client/hidcardformats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hidcardformats.c -------------------------------------------------------------------------------- /client/hidcardformats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hidcardformats.h -------------------------------------------------------------------------------- /client/hidcardformatutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hidcardformatutils.c -------------------------------------------------------------------------------- /client/hidcardformatutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hidcardformatutils.h -------------------------------------------------------------------------------- /client/hitag2.ht2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/hitag2.ht2 -------------------------------------------------------------------------------- /client/jansson/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/jansson/Makefile -------------------------------------------------------------------------------- /client/jansson/dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/jansson/dump.c -------------------------------------------------------------------------------- /client/jansson/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/jansson/error.c -------------------------------------------------------------------------------- /client/jansson/hashtable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/jansson/hashtable.c -------------------------------------------------------------------------------- /client/jansson/hashtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/jansson/hashtable.h -------------------------------------------------------------------------------- /client/jansson/hashtable_seed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/jansson/hashtable_seed.c -------------------------------------------------------------------------------- /client/jansson/jansson.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/jansson/jansson.def -------------------------------------------------------------------------------- /client/jansson/jansson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/jansson/jansson.h -------------------------------------------------------------------------------- /client/jansson/jansson_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/jansson/jansson_config.h -------------------------------------------------------------------------------- /client/jansson/jansson_config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/jansson/jansson_config.h.in -------------------------------------------------------------------------------- /client/jansson/jansson_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/jansson/jansson_private.h -------------------------------------------------------------------------------- /client/jansson/load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/jansson/load.c -------------------------------------------------------------------------------- /client/jansson/lookup3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/jansson/lookup3.h -------------------------------------------------------------------------------- /client/jansson/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/jansson/memory.c -------------------------------------------------------------------------------- /client/jansson/pack_unpack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/jansson/pack_unpack.c -------------------------------------------------------------------------------- /client/jansson/path.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/jansson/path.c -------------------------------------------------------------------------------- /client/jansson/strbuffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/jansson/strbuffer.c -------------------------------------------------------------------------------- /client/jansson/strbuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/jansson/strbuffer.h -------------------------------------------------------------------------------- /client/jansson/strconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/jansson/strconv.c -------------------------------------------------------------------------------- /client/jansson/utf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/jansson/utf.c -------------------------------------------------------------------------------- /client/jansson/utf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/jansson/utf.h -------------------------------------------------------------------------------- /client/jansson/value.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/jansson/value.c -------------------------------------------------------------------------------- /client/loclass/cipher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/loclass/cipher.c -------------------------------------------------------------------------------- /client/loclass/cipher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/loclass/cipher.h -------------------------------------------------------------------------------- /client/loclass/cipherutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/loclass/cipherutils.c -------------------------------------------------------------------------------- /client/loclass/cipherutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/loclass/cipherutils.h -------------------------------------------------------------------------------- /client/loclass/elite_crack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/loclass/elite_crack.c -------------------------------------------------------------------------------- /client/loclass/elite_crack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/loclass/elite_crack.h -------------------------------------------------------------------------------- /client/loclass/fileutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/loclass/fileutils.c -------------------------------------------------------------------------------- /client/loclass/fileutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/loclass/fileutils.h -------------------------------------------------------------------------------- /client/loclass/iclass_dump.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/loclass/iclass_dump.bin -------------------------------------------------------------------------------- /client/loclass/ikeys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/loclass/ikeys.c -------------------------------------------------------------------------------- /client/loclass/ikeys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/loclass/ikeys.h -------------------------------------------------------------------------------- /client/loclass/loclass_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/loclass/loclass_main.h -------------------------------------------------------------------------------- /client/loclass/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/loclass/main.c -------------------------------------------------------------------------------- /client/lualibs/commands.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/lualibs/commands.lua -------------------------------------------------------------------------------- /client/lualibs/default_toys.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/lualibs/default_toys.lua -------------------------------------------------------------------------------- /client/lualibs/getopt.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/lualibs/getopt.lua -------------------------------------------------------------------------------- /client/lualibs/hf_reader.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/lualibs/hf_reader.lua -------------------------------------------------------------------------------- /client/lualibs/html_dumplib.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/lualibs/html_dumplib.lua -------------------------------------------------------------------------------- /client/lualibs/htmlskel.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/lualibs/htmlskel.lua -------------------------------------------------------------------------------- /client/lualibs/md5.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/lualibs/md5.lua -------------------------------------------------------------------------------- /client/lualibs/mf_default_keys.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/lualibs/mf_default_keys.lua -------------------------------------------------------------------------------- /client/lualibs/precalc.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/lualibs/precalc.lua -------------------------------------------------------------------------------- /client/lualibs/read14a.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/lualibs/read14a.lua -------------------------------------------------------------------------------- /client/lualibs/taglib.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/lualibs/taglib.lua -------------------------------------------------------------------------------- /client/lualibs/utils.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/lualibs/utils.lua -------------------------------------------------------------------------------- /client/mifare/mad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/mifare/mad.c -------------------------------------------------------------------------------- /client/mifare/mad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/mifare/mad.h -------------------------------------------------------------------------------- /client/mifare/mfkey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/mifare/mfkey.c -------------------------------------------------------------------------------- /client/mifare/mfkey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/mifare/mfkey.h -------------------------------------------------------------------------------- /client/mifare/mifare4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/mifare/mifare4.c -------------------------------------------------------------------------------- /client/mifare/mifare4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/mifare/mifare4.h -------------------------------------------------------------------------------- /client/mifare/mifaredefault.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/mifare/mifaredefault.h -------------------------------------------------------------------------------- /client/mifare/mifarehost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/mifare/mifarehost.c -------------------------------------------------------------------------------- /client/mifare/mifarehost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/mifare/mifarehost.h -------------------------------------------------------------------------------- /client/mifare/ndef.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/mifare/ndef.c -------------------------------------------------------------------------------- /client/mifare/ndef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/mifare/ndef.h -------------------------------------------------------------------------------- /client/obj/.dummy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/obj/cliparser/.dummy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/obj/crapto1/.dummy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/obj/crypto/.dummy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/obj/emv/.dummy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/obj/emv/test/.dummy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/obj/fido/.dummy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/obj/hardnested/.dummy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/obj/loclass/.dummy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/obj/mifare/.dummy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/pcsc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/pcsc.c -------------------------------------------------------------------------------- /client/pcsc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/pcsc.h -------------------------------------------------------------------------------- /client/pm3_binlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/pm3_binlib.c -------------------------------------------------------------------------------- /client/pm3_binlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/pm3_binlib.h -------------------------------------------------------------------------------- /client/pm3_bit_limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/pm3_bit_limits.h -------------------------------------------------------------------------------- /client/pm3_bitlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/pm3_bitlib.c -------------------------------------------------------------------------------- /client/pm3_bitlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/pm3_bitlib.h -------------------------------------------------------------------------------- /client/pm3_eml2mfd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/pm3_eml2mfd.py -------------------------------------------------------------------------------- /client/pm3_eml_mfd_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/pm3_eml_mfd_test.py -------------------------------------------------------------------------------- /client/pm3_mfd2eml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/pm3_mfd2eml.py -------------------------------------------------------------------------------- /client/proxendian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/proxendian.h -------------------------------------------------------------------------------- /client/proxgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/proxgui.cpp -------------------------------------------------------------------------------- /client/proxgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/proxgui.h -------------------------------------------------------------------------------- /client/proxguiqt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/proxguiqt.cpp -------------------------------------------------------------------------------- /client/proxguiqt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/proxguiqt.h -------------------------------------------------------------------------------- /client/proxmark3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/proxmark3.c -------------------------------------------------------------------------------- /client/proxmark3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/proxmark3.h -------------------------------------------------------------------------------- /client/sc_upgrade_firmware/SIM010.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/sc_upgrade_firmware/SIM010.BIN -------------------------------------------------------------------------------- /client/sc_upgrade_firmware/SIM010.md5.txt: -------------------------------------------------------------------------------- 1 | 136e157364609e5c395540dc8dadbfd6 *SIM010.BIN 2 | -------------------------------------------------------------------------------- /client/sc_upgrade_firmware/SIM010.sha512.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/sc_upgrade_firmware/SIM010.sha512.txt -------------------------------------------------------------------------------- /client/sc_upgrade_firmware/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/sc_upgrade_firmware/readme.txt -------------------------------------------------------------------------------- /client/scripting.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/scripting.c -------------------------------------------------------------------------------- /client/scripting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/scripting.h -------------------------------------------------------------------------------- /client/scripts/14araw.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/scripts/14araw.lua -------------------------------------------------------------------------------- /client/scripts/brutesim.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/scripts/brutesim.lua -------------------------------------------------------------------------------- /client/scripts/cmdline.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/scripts/cmdline.lua -------------------------------------------------------------------------------- /client/scripts/didump.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/scripts/didump.lua -------------------------------------------------------------------------------- /client/scripts/dumptoemul.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/scripts/dumptoemul.lua -------------------------------------------------------------------------------- /client/scripts/emul2dump.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/scripts/emul2dump.lua -------------------------------------------------------------------------------- /client/scripts/emul2html.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/scripts/emul2html.lua -------------------------------------------------------------------------------- /client/scripts/formatMifare.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/scripts/formatMifare.lua -------------------------------------------------------------------------------- /client/scripts/hf_read.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/scripts/hf_read.lua -------------------------------------------------------------------------------- /client/scripts/htmldump.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/scripts/htmldump.lua -------------------------------------------------------------------------------- /client/scripts/lf_bulk_program.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/scripts/lf_bulk_program.lua -------------------------------------------------------------------------------- /client/scripts/mfkeys.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/scripts/mfkeys.lua -------------------------------------------------------------------------------- /client/scripts/mifarePlus.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/scripts/mifarePlus.lua -------------------------------------------------------------------------------- /client/scripts/mifare_autopwn.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/scripts/mifare_autopwn.lua -------------------------------------------------------------------------------- /client/scripts/ndef_dump.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/scripts/ndef_dump.lua -------------------------------------------------------------------------------- /client/scripts/parameters.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/scripts/parameters.lua -------------------------------------------------------------------------------- /client/scripts/remagic.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/scripts/remagic.lua -------------------------------------------------------------------------------- /client/scripts/test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/scripts/test.lua -------------------------------------------------------------------------------- /client/scripts/test_t55x7_ask.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/scripts/test_t55x7_ask.lua -------------------------------------------------------------------------------- /client/scripts/test_t55x7_bi.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/scripts/test_t55x7_bi.lua -------------------------------------------------------------------------------- /client/scripts/test_t55x7_fsk.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/scripts/test_t55x7_fsk.lua -------------------------------------------------------------------------------- /client/scripts/test_t55x7_psk.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/scripts/test_t55x7_psk.lua -------------------------------------------------------------------------------- /client/scripts/tnp3clone.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/scripts/tnp3clone.lua -------------------------------------------------------------------------------- /client/scripts/tnp3dump.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/scripts/tnp3dump.lua -------------------------------------------------------------------------------- /client/scripts/tnp3sim.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/scripts/tnp3sim.lua -------------------------------------------------------------------------------- /client/scripts/tracetest.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/scripts/tracetest.lua -------------------------------------------------------------------------------- /client/taginfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/taginfo.c -------------------------------------------------------------------------------- /client/taginfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/taginfo.h -------------------------------------------------------------------------------- /client/tinycbor/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/tinycbor/Makefile -------------------------------------------------------------------------------- /client/tinycbor/cbor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/tinycbor/cbor.h -------------------------------------------------------------------------------- /client/tinycbor/cborencoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/tinycbor/cborencoder.c -------------------------------------------------------------------------------- /client/tinycbor/cborerrorstrings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/tinycbor/cborerrorstrings.c -------------------------------------------------------------------------------- /client/tinycbor/cborinternal_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/tinycbor/cborinternal_p.h -------------------------------------------------------------------------------- /client/tinycbor/cborjson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/tinycbor/cborjson.h -------------------------------------------------------------------------------- /client/tinycbor/cborparser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/tinycbor/cborparser.c -------------------------------------------------------------------------------- /client/tinycbor/cborparser_dup_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/tinycbor/cborparser_dup_string.c -------------------------------------------------------------------------------- /client/tinycbor/cborpretty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/tinycbor/cborpretty.c -------------------------------------------------------------------------------- /client/tinycbor/cborpretty_stdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/tinycbor/cborpretty_stdio.c -------------------------------------------------------------------------------- /client/tinycbor/cbortojson.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/tinycbor/cbortojson.c -------------------------------------------------------------------------------- /client/tinycbor/cborvalidation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/tinycbor/cborvalidation.c -------------------------------------------------------------------------------- /client/tinycbor/compilersupport_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/tinycbor/compilersupport_p.h -------------------------------------------------------------------------------- /client/tinycbor/open_memstream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/tinycbor/open_memstream.c -------------------------------------------------------------------------------- /client/tinycbor/tinycbor-version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/tinycbor/tinycbor-version.h -------------------------------------------------------------------------------- /client/tinycbor/utf8_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/tinycbor/utf8_p.h -------------------------------------------------------------------------------- /client/ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/ui.c -------------------------------------------------------------------------------- /client/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/ui.h -------------------------------------------------------------------------------- /client/ui/overlays.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/ui/overlays.ui -------------------------------------------------------------------------------- /client/unbind-proxmark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/unbind-proxmark -------------------------------------------------------------------------------- /client/usb_cmd_h2lua.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/usb_cmd_h2lua.awk -------------------------------------------------------------------------------- /client/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/util.c -------------------------------------------------------------------------------- /client/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/util.h -------------------------------------------------------------------------------- /client/util_darwin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/util_darwin.h -------------------------------------------------------------------------------- /client/util_darwin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/util_darwin.m -------------------------------------------------------------------------------- /client/util_posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/util_posix.c -------------------------------------------------------------------------------- /client/util_posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/util_posix.h -------------------------------------------------------------------------------- /client/whereami.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/whereami.c -------------------------------------------------------------------------------- /client/whereami.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/client/whereami.h -------------------------------------------------------------------------------- /common/Makefile.common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/common/Makefile.common -------------------------------------------------------------------------------- /common/Makefile_Enabled_Options.common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/common/Makefile_Enabled_Options.common -------------------------------------------------------------------------------- /common/crapto1/crapto1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/common/crapto1/crapto1.c -------------------------------------------------------------------------------- /common/crapto1/crapto1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/common/crapto1/crapto1.h -------------------------------------------------------------------------------- /common/crapto1/crypto1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/common/crapto1/crypto1.c -------------------------------------------------------------------------------- /common/crapto1/readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/common/crapto1/readme -------------------------------------------------------------------------------- /common/crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/common/crc.c -------------------------------------------------------------------------------- /common/crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/common/crc.h -------------------------------------------------------------------------------- /common/crc16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/common/crc16.c -------------------------------------------------------------------------------- /common/crc16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/common/crc16.h -------------------------------------------------------------------------------- /common/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/common/crc32.c -------------------------------------------------------------------------------- /common/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/common/crc32.h -------------------------------------------------------------------------------- /common/crc64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/common/crc64.c -------------------------------------------------------------------------------- /common/crc64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/common/crc64.h -------------------------------------------------------------------------------- /common/default_version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/common/default_version.c -------------------------------------------------------------------------------- /common/fpga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/common/fpga.h -------------------------------------------------------------------------------- /common/iso14443crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/common/iso14443crc.c -------------------------------------------------------------------------------- /common/iso14443crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/common/iso14443crc.h -------------------------------------------------------------------------------- /common/iso15693tools.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/common/iso15693tools.c -------------------------------------------------------------------------------- /common/iso15693tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/common/iso15693tools.h -------------------------------------------------------------------------------- /common/ldscript.common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/common/ldscript.common -------------------------------------------------------------------------------- /common/legic_prng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/common/legic_prng.c -------------------------------------------------------------------------------- /common/lfdemod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/common/lfdemod.c -------------------------------------------------------------------------------- /common/lfdemod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/common/lfdemod.h -------------------------------------------------------------------------------- /common/mbedtls/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/common/mbedtls/Makefile -------------------------------------------------------------------------------- /common/mbedtls/aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/common/mbedtls/aes.c -------------------------------------------------------------------------------- /common/mbedtls/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/common/mbedtls/aes.h -------------------------------------------------------------------------------- /common/mbedtls/arc4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/common/mbedtls/arc4.c -------------------------------------------------------------------------------- /common/mbedtls/arc4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/common/mbedtls/arc4.h -------------------------------------------------------------------------------- /common/mbedtls/asn1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/common/mbedtls/asn1.h -------------------------------------------------------------------------------- /common/mbedtls/asn1parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/common/mbedtls/asn1parse.c -------------------------------------------------------------------------------- /common/mbedtls/asn1write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/common/mbedtls/asn1write.c -------------------------------------------------------------------------------- /common/mbedtls/asn1write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/common/mbedtls/asn1write.h -------------------------------------------------------------------------------- /common/mbedtls/base64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/common/mbedtls/base64.c -------------------------------------------------------------------------------- /common/mbedtls/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/common/mbedtls/base64.h -------------------------------------------------------------------------------- /common/mbedtls/bignum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/common/mbedtls/bignum.c -------------------------------------------------------------------------------- /common/mbedtls/bignum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/common/mbedtls/bignum.h -------------------------------------------------------------------------------- /common/mbedtls/blowfish.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/common/mbedtls/blowfish.c -------------------------------------------------------------------------------- /common/mbedtls/blowfish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/common/mbedtls/blowfish.h -------------------------------------------------------------------------------- /common/mbedtls/bn_mul.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/common/mbedtls/bn_mul.h -------------------------------------------------------------------------------- /common/mbedtls/camellia.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/common/mbedtls/camellia.c -------------------------------------------------------------------------------- /common/mbedtls/camellia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/common/mbedtls/camellia.h -------------------------------------------------------------------------------- /common/mbedtls/certs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/common/mbedtls/certs.c -------------------------------------------------------------------------------- /common/mbedtls/certs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/common/mbedtls/certs.h -------------------------------------------------------------------------------- /common/mbedtls/check_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/common/mbedtls/check_config.h -------------------------------------------------------------------------------- /common/mbedtls/cipher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/common/mbedtls/cipher.c -------------------------------------------------------------------------------- /common/mbedtls/cipher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/common/mbedtls/cipher.h -------------------------------------------------------------------------------- /common/mbedtls/cipher_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/common/mbedtls/cipher_internal.h -------------------------------------------------------------------------------- /common/mbedtls/cipher_wrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/common/mbedtls/cipher_wrap.c -------------------------------------------------------------------------------- /common/mbedtls/cmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/common/mbedtls/cmac.c -------------------------------------------------------------------------------- /common/mbedtls/cmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/common/mbedtls/cmac.h -------------------------------------------------------------------------------- /common/mbedtls/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/common/mbedtls/config.h -------------------------------------------------------------------------------- /common/mbedtls/ctr_drbg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/common/mbedtls/ctr_drbg.c -------------------------------------------------------------------------------- /common/mbedtls/ctr_drbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/common/mbedtls/ctr_drbg.h -------------------------------------------------------------------------------- /common/mbedtls/des.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/common/mbedtls/des.c -------------------------------------------------------------------------------- /common/mbedtls/des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/common/mbedtls/des.h -------------------------------------------------------------------------------- /common/mbedtls/ecdsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/common/mbedtls/ecdsa.c -------------------------------------------------------------------------------- /common/mbedtls/ecdsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/common/mbedtls/ecdsa.h -------------------------------------------------------------------------------- /common/mbedtls/ecp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/common/mbedtls/ecp.c -------------------------------------------------------------------------------- /common/mbedtls/ecp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/common/mbedtls/ecp.h -------------------------------------------------------------------------------- /common/mbedtls/ecp_curves.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/common/mbedtls/ecp_curves.c -------------------------------------------------------------------------------- /common/mbedtls/ecp_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/common/mbedtls/ecp_internal.h -------------------------------------------------------------------------------- /common/mbedtls/entropy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/common/mbedtls/entropy.c -------------------------------------------------------------------------------- /common/mbedtls/entropy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/common/mbedtls/entropy.h -------------------------------------------------------------------------------- /common/mbedtls/entropy_poll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/common/mbedtls/entropy_poll.c -------------------------------------------------------------------------------- /common/mbedtls/entropy_poll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/common/mbedtls/entropy_poll.h -------------------------------------------------------------------------------- /common/mbedtls/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/common/mbedtls/error.c -------------------------------------------------------------------------------- /common/mbedtls/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/common/mbedtls/error.h -------------------------------------------------------------------------------- /common/mbedtls/md.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/common/mbedtls/md.c -------------------------------------------------------------------------------- /common/mbedtls/md.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/common/mbedtls/md.h -------------------------------------------------------------------------------- /common/mbedtls/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/common/mbedtls/md5.c -------------------------------------------------------------------------------- /common/mbedtls/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/common/mbedtls/md5.h -------------------------------------------------------------------------------- /common/mbedtls/md_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/common/mbedtls/md_internal.h -------------------------------------------------------------------------------- /common/mbedtls/md_wrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/common/mbedtls/md_wrap.c -------------------------------------------------------------------------------- /common/mbedtls/oid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/common/mbedtls/oid.c -------------------------------------------------------------------------------- /common/mbedtls/oid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/common/mbedtls/oid.h -------------------------------------------------------------------------------- /common/mbedtls/pem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/common/mbedtls/pem.c -------------------------------------------------------------------------------- /common/mbedtls/pem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/common/mbedtls/pem.h -------------------------------------------------------------------------------- /common/mbedtls/pk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/common/mbedtls/pk.c -------------------------------------------------------------------------------- /common/mbedtls/pk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/common/mbedtls/pk.h -------------------------------------------------------------------------------- /common/mbedtls/pk_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/common/mbedtls/pk_internal.h -------------------------------------------------------------------------------- /common/mbedtls/pk_wrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/common/mbedtls/pk_wrap.c -------------------------------------------------------------------------------- /common/mbedtls/pkcs12.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/common/mbedtls/pkcs12.c -------------------------------------------------------------------------------- /common/mbedtls/pkcs12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/common/mbedtls/pkcs12.h -------------------------------------------------------------------------------- /common/mbedtls/pkcs5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/common/mbedtls/pkcs5.c -------------------------------------------------------------------------------- /common/mbedtls/pkcs5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/common/mbedtls/pkcs5.h -------------------------------------------------------------------------------- /common/mbedtls/pkparse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/common/mbedtls/pkparse.c -------------------------------------------------------------------------------- /common/mbedtls/pkwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/common/mbedtls/pkwrite.c -------------------------------------------------------------------------------- /common/mbedtls/platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/common/mbedtls/platform.c -------------------------------------------------------------------------------- /common/mbedtls/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/common/mbedtls/platform.h -------------------------------------------------------------------------------- /common/mbedtls/platform_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/common/mbedtls/platform_util.c -------------------------------------------------------------------------------- /common/mbedtls/platform_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/common/mbedtls/platform_util.h -------------------------------------------------------------------------------- /common/mbedtls/platform_util_arm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/common/mbedtls/platform_util_arm.c -------------------------------------------------------------------------------- /common/mbedtls/platform_util_arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/common/mbedtls/platform_util_arm.h -------------------------------------------------------------------------------- /common/mbedtls/rsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/common/mbedtls/rsa.c -------------------------------------------------------------------------------- /common/mbedtls/rsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/common/mbedtls/rsa.h -------------------------------------------------------------------------------- /common/mbedtls/rsa_internal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/common/mbedtls/rsa_internal.c -------------------------------------------------------------------------------- /common/mbedtls/rsa_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/common/mbedtls/rsa_internal.h -------------------------------------------------------------------------------- /common/mbedtls/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/common/mbedtls/sha1.c -------------------------------------------------------------------------------- /common/mbedtls/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/common/mbedtls/sha1.h -------------------------------------------------------------------------------- /common/mbedtls/sha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/common/mbedtls/sha256.c -------------------------------------------------------------------------------- /common/mbedtls/sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/common/mbedtls/sha256.h -------------------------------------------------------------------------------- /common/mbedtls/sha512.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/common/mbedtls/sha512.c -------------------------------------------------------------------------------- /common/mbedtls/sha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/common/mbedtls/sha512.h -------------------------------------------------------------------------------- /common/mbedtls/threading.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/common/mbedtls/threading.c -------------------------------------------------------------------------------- /common/mbedtls/threading.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/common/mbedtls/threading.h -------------------------------------------------------------------------------- /common/mbedtls/timing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/common/mbedtls/timing.c -------------------------------------------------------------------------------- /common/mbedtls/timing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/common/mbedtls/timing.h -------------------------------------------------------------------------------- /common/mbedtls/x509.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/common/mbedtls/x509.c -------------------------------------------------------------------------------- /common/mbedtls/x509.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/common/mbedtls/x509.h -------------------------------------------------------------------------------- /common/mbedtls/x509_crl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/common/mbedtls/x509_crl.c -------------------------------------------------------------------------------- /common/mbedtls/x509_crl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/common/mbedtls/x509_crl.h -------------------------------------------------------------------------------- /common/mbedtls/x509_crt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/common/mbedtls/x509_crt.c -------------------------------------------------------------------------------- /common/mbedtls/x509_crt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/common/mbedtls/x509_crt.h -------------------------------------------------------------------------------- /common/parity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/common/parity.c -------------------------------------------------------------------------------- /common/parity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/common/parity.h -------------------------------------------------------------------------------- /common/protocols.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/common/protocols.c -------------------------------------------------------------------------------- /common/protocols.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/common/protocols.h -------------------------------------------------------------------------------- /common/usb_cdc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/common/usb_cdc.c -------------------------------------------------------------------------------- /common/usb_cdc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/common/usb_cdc.h -------------------------------------------------------------------------------- /doc/Proxmark III - Ubuntu GSG v1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/doc/Proxmark III - Ubuntu GSG v1.pdf -------------------------------------------------------------------------------- /doc/Proxmark III - Windows 7 GSG v1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/doc/Proxmark III - Windows 7 GSG v1.pdf -------------------------------------------------------------------------------- /doc/Proxmark III - Windows XP SP3 GSG v1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/doc/Proxmark III - Windows XP SP3 GSG v1.pdf -------------------------------------------------------------------------------- /doc/RFID_Antenna-Basic-Form.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/doc/RFID_Antenna-Basic-Form.stl -------------------------------------------------------------------------------- /doc/RFID_Antenna-With-Lanyard-Hook.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/doc/RFID_Antenna-With-Lanyard-Hook.stl -------------------------------------------------------------------------------- /doc/proxmark3.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/doc/proxmark3.brd -------------------------------------------------------------------------------- /doc/proxmark3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/doc/proxmark3.pdf -------------------------------------------------------------------------------- /doc/proxmark3.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/doc/proxmark3.sch -------------------------------------------------------------------------------- /doc/proxmark3.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/doc/proxmark3.xls -------------------------------------------------------------------------------- /doc/proxmark3_schema.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/doc/proxmark3_schema.pdf -------------------------------------------------------------------------------- /doc/system.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/doc/system.txt -------------------------------------------------------------------------------- /driver/77-mm-usb-device-blacklist.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/driver/77-mm-usb-device-blacklist.rules -------------------------------------------------------------------------------- /driver/proxmark3.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/driver/proxmark3.inf -------------------------------------------------------------------------------- /fpga/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/fpga/Makefile -------------------------------------------------------------------------------- /fpga/clk_divider.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/fpga/clk_divider.v -------------------------------------------------------------------------------- /fpga/fpga.ucf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/fpga/fpga.ucf -------------------------------------------------------------------------------- /fpga/fpga_hf.bit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/fpga/fpga_hf.bit -------------------------------------------------------------------------------- /fpga/fpga_hf.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/fpga/fpga_hf.v -------------------------------------------------------------------------------- /fpga/fpga_lf.bit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/fpga/fpga_lf.bit -------------------------------------------------------------------------------- /fpga/fpga_lf.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/fpga/fpga_lf.v -------------------------------------------------------------------------------- /fpga/go.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/fpga/go.bat -------------------------------------------------------------------------------- /fpga/hi_get_trace.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/fpga/hi_get_trace.v -------------------------------------------------------------------------------- /fpga/hi_iso14443a.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/fpga/hi_iso14443a.v -------------------------------------------------------------------------------- /fpga/hi_reader.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/fpga/hi_reader.v -------------------------------------------------------------------------------- /fpga/hi_simulate.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/fpga/hi_simulate.v -------------------------------------------------------------------------------- /fpga/hi_sniffer.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/fpga/hi_sniffer.v -------------------------------------------------------------------------------- /fpga/lf_edge_detect.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/fpga/lf_edge_detect.v -------------------------------------------------------------------------------- /fpga/lo_edge_detect.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/fpga/lo_edge_detect.v -------------------------------------------------------------------------------- /fpga/lo_passthru.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/fpga/lo_passthru.v -------------------------------------------------------------------------------- /fpga/lo_read.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/fpga/lo_read.v -------------------------------------------------------------------------------- /fpga/lo_simulate.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/fpga/lo_simulate.v -------------------------------------------------------------------------------- /fpga/lp20khz_1MSa_iir_filter.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/fpga/lp20khz_1MSa_iir_filter.v -------------------------------------------------------------------------------- /fpga/min_max_tracker.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/fpga/min_max_tracker.v -------------------------------------------------------------------------------- /fpga/sim.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/fpga/sim.tcl -------------------------------------------------------------------------------- /fpga/testbed_fpga.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/fpga/testbed_fpga.v -------------------------------------------------------------------------------- /fpga/testbed_hi_read_tx.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/fpga/testbed_hi_read_tx.v -------------------------------------------------------------------------------- /fpga/testbed_hi_simulate.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/fpga/testbed_hi_simulate.v -------------------------------------------------------------------------------- /fpga/testbed_lo_read.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/fpga/testbed_lo_read.v -------------------------------------------------------------------------------- /fpga/testbed_lo_simulate.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/fpga/testbed_lo_simulate.v -------------------------------------------------------------------------------- /fpga/tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/fpga/tests/Makefile -------------------------------------------------------------------------------- /fpga/tests/plot_edgedetect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/fpga/tests/plot_edgedetect.py -------------------------------------------------------------------------------- /fpga/tests/tb_data/pcf7931_read_1MSA_data.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/fpga/tests/tb_data/pcf7931_read_1MSA_data.in -------------------------------------------------------------------------------- /fpga/tests/tb_data/pcf7931_read_1MSA_data.time: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/fpga/tests/tb_data/pcf7931_read_1MSA_data.time -------------------------------------------------------------------------------- /fpga/tests/tb_lf_edge_detect.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/fpga/tests/tb_lf_edge_detect.v -------------------------------------------------------------------------------- /fpga/tests/tb_lp20khz_1MSa_iir_filter.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/fpga/tests/tb_lp20khz_1MSa_iir_filter.v -------------------------------------------------------------------------------- /fpga/tests/tb_min_max_tracker.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/fpga/tests/tb_min_max_tracker.v -------------------------------------------------------------------------------- /fpga/util.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/fpga/util.v -------------------------------------------------------------------------------- /fpga/xst_hf.scr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/fpga/xst_hf.scr -------------------------------------------------------------------------------- /fpga/xst_lf.scr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/fpga/xst_lf.scr -------------------------------------------------------------------------------- /include/at91sam7s512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/include/at91sam7s512.h -------------------------------------------------------------------------------- /include/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/include/common.h -------------------------------------------------------------------------------- /include/config_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/include/config_gpio.h -------------------------------------------------------------------------------- /include/hitag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/include/hitag.h -------------------------------------------------------------------------------- /include/legic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/include/legic.h -------------------------------------------------------------------------------- /include/legic_prng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/include/legic_prng.h -------------------------------------------------------------------------------- /include/mifare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/include/mifare.h -------------------------------------------------------------------------------- /include/proxmark3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/include/proxmark3.h -------------------------------------------------------------------------------- /include/smartcard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/include/smartcard.h -------------------------------------------------------------------------------- /include/usb_cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/include/usb_cmd.h -------------------------------------------------------------------------------- /liblua/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/liblua/Makefile -------------------------------------------------------------------------------- /liblua/lapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/liblua/lapi.c -------------------------------------------------------------------------------- /liblua/lapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/liblua/lapi.h -------------------------------------------------------------------------------- /liblua/lauxlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/liblua/lauxlib.c -------------------------------------------------------------------------------- /liblua/lauxlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/liblua/lauxlib.h -------------------------------------------------------------------------------- /liblua/lbaselib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/liblua/lbaselib.c -------------------------------------------------------------------------------- /liblua/lbitlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/liblua/lbitlib.c -------------------------------------------------------------------------------- /liblua/lcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/liblua/lcode.c -------------------------------------------------------------------------------- /liblua/lcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/liblua/lcode.h -------------------------------------------------------------------------------- /liblua/lcorolib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/liblua/lcorolib.c -------------------------------------------------------------------------------- /liblua/lctype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/liblua/lctype.c -------------------------------------------------------------------------------- /liblua/lctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/liblua/lctype.h -------------------------------------------------------------------------------- /liblua/ldblib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/liblua/ldblib.c -------------------------------------------------------------------------------- /liblua/ldebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/liblua/ldebug.c -------------------------------------------------------------------------------- /liblua/ldebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/liblua/ldebug.h -------------------------------------------------------------------------------- /liblua/ldo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/liblua/ldo.c -------------------------------------------------------------------------------- /liblua/ldo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/liblua/ldo.h -------------------------------------------------------------------------------- /liblua/ldump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/liblua/ldump.c -------------------------------------------------------------------------------- /liblua/lfunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/liblua/lfunc.c -------------------------------------------------------------------------------- /liblua/lfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/liblua/lfunc.h -------------------------------------------------------------------------------- /liblua/lgc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/liblua/lgc.c -------------------------------------------------------------------------------- /liblua/lgc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/liblua/lgc.h -------------------------------------------------------------------------------- /liblua/linit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/liblua/linit.c -------------------------------------------------------------------------------- /liblua/liolib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/liblua/liolib.c -------------------------------------------------------------------------------- /liblua/llex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/liblua/llex.c -------------------------------------------------------------------------------- /liblua/llex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/liblua/llex.h -------------------------------------------------------------------------------- /liblua/llimits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/liblua/llimits.h -------------------------------------------------------------------------------- /liblua/lmathlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/liblua/lmathlib.c -------------------------------------------------------------------------------- /liblua/lmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/liblua/lmem.c -------------------------------------------------------------------------------- /liblua/lmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/liblua/lmem.h -------------------------------------------------------------------------------- /liblua/loadlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/liblua/loadlib.c -------------------------------------------------------------------------------- /liblua/lobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/liblua/lobject.c -------------------------------------------------------------------------------- /liblua/lobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/liblua/lobject.h -------------------------------------------------------------------------------- /liblua/lopcodes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/liblua/lopcodes.c -------------------------------------------------------------------------------- /liblua/lopcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/liblua/lopcodes.h -------------------------------------------------------------------------------- /liblua/loslib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/liblua/loslib.c -------------------------------------------------------------------------------- /liblua/lparser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/liblua/lparser.c -------------------------------------------------------------------------------- /liblua/lparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/liblua/lparser.h -------------------------------------------------------------------------------- /liblua/lstate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/liblua/lstate.c -------------------------------------------------------------------------------- /liblua/lstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/liblua/lstate.h -------------------------------------------------------------------------------- /liblua/lstring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/liblua/lstring.c -------------------------------------------------------------------------------- /liblua/lstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/liblua/lstring.h -------------------------------------------------------------------------------- /liblua/lstrlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/liblua/lstrlib.c -------------------------------------------------------------------------------- /liblua/ltable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/liblua/ltable.c -------------------------------------------------------------------------------- /liblua/ltable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/liblua/ltable.h -------------------------------------------------------------------------------- /liblua/ltablib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/liblua/ltablib.c -------------------------------------------------------------------------------- /liblua/ltm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/liblua/ltm.c -------------------------------------------------------------------------------- /liblua/ltm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/liblua/ltm.h -------------------------------------------------------------------------------- /liblua/lua.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/liblua/lua.c -------------------------------------------------------------------------------- /liblua/lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/liblua/lua.h -------------------------------------------------------------------------------- /liblua/lua.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/liblua/lua.hpp -------------------------------------------------------------------------------- /liblua/luac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/liblua/luac.c -------------------------------------------------------------------------------- /liblua/luaconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/liblua/luaconf.h -------------------------------------------------------------------------------- /liblua/lualib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/liblua/lualib.h -------------------------------------------------------------------------------- /liblua/lundump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/liblua/lundump.c -------------------------------------------------------------------------------- /liblua/lundump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/liblua/lundump.h -------------------------------------------------------------------------------- /liblua/lvm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/liblua/lvm.c -------------------------------------------------------------------------------- /liblua/lvm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/liblua/lvm.h -------------------------------------------------------------------------------- /liblua/lzio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/liblua/lzio.c -------------------------------------------------------------------------------- /liblua/lzio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/liblua/lzio.h -------------------------------------------------------------------------------- /pcb/lf-antenna/CAD/lf-antenna.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/pcb/lf-antenna/CAD/lf-antenna.brd -------------------------------------------------------------------------------- /pcb/lf-antenna/CAM/lf-antenna.GBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/pcb/lf-antenna/CAM/lf-antenna.GBL -------------------------------------------------------------------------------- /pcb/lf-antenna/CAM/lf-antenna.GBO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/pcb/lf-antenna/CAM/lf-antenna.GBO -------------------------------------------------------------------------------- /pcb/lf-antenna/CAM/lf-antenna.GBP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/pcb/lf-antenna/CAM/lf-antenna.GBP -------------------------------------------------------------------------------- /pcb/lf-antenna/CAM/lf-antenna.GBS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/pcb/lf-antenna/CAM/lf-antenna.GBS -------------------------------------------------------------------------------- /pcb/lf-antenna/CAM/lf-antenna.GML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/pcb/lf-antenna/CAM/lf-antenna.GML -------------------------------------------------------------------------------- /pcb/lf-antenna/CAM/lf-antenna.GTL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/pcb/lf-antenna/CAM/lf-antenna.GTL -------------------------------------------------------------------------------- /pcb/lf-antenna/CAM/lf-antenna.GTO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/pcb/lf-antenna/CAM/lf-antenna.GTO -------------------------------------------------------------------------------- /pcb/lf-antenna/CAM/lf-antenna.GTP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/pcb/lf-antenna/CAM/lf-antenna.GTP -------------------------------------------------------------------------------- /pcb/lf-antenna/CAM/lf-antenna.GTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/pcb/lf-antenna/CAM/lf-antenna.GTS -------------------------------------------------------------------------------- /pcb/lf-antenna/CAM/lf-antenna.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/pcb/lf-antenna/CAM/lf-antenna.TXT -------------------------------------------------------------------------------- /pcb/lf-antenna/CAM/lf-antenna.do: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/pcb/lf-antenna/CAM/lf-antenna.do -------------------------------------------------------------------------------- /pcb/lf-antenna/CAM/lf-antenna.dri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/pcb/lf-antenna/CAM/lf-antenna.dri -------------------------------------------------------------------------------- /pcb/lf-antenna/CAM/lf-antenna.gpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/pcb/lf-antenna/CAM/lf-antenna.gpi -------------------------------------------------------------------------------- /pcb/lf-antenna/MFG/lf-antenna_bot.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/pcb/lf-antenna/MFG/lf-antenna_bot.pdf -------------------------------------------------------------------------------- /pcb/lf-antenna/MFG/lf-antenna_cam.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/pcb/lf-antenna/MFG/lf-antenna_cam.zip -------------------------------------------------------------------------------- /pcb/lf-antenna/MFG/lf-antenna_top.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/pcb/lf-antenna/MFG/lf-antenna_top.pdf -------------------------------------------------------------------------------- /pcb/lf-antenna/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/pcb/lf-antenna/README.md -------------------------------------------------------------------------------- /pcb/proxmark3_fix/BOT_layer_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/pcb/proxmark3_fix/BOT_layer_preview.png -------------------------------------------------------------------------------- /pcb/proxmark3_fix/CAD/change_log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/pcb/proxmark3_fix/CAD/change_log.txt -------------------------------------------------------------------------------- /pcb/proxmark3_fix/CAD/proxmark3.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/pcb/proxmark3_fix/CAD/proxmark3.brd -------------------------------------------------------------------------------- /pcb/proxmark3_fix/CAD/proxmark3.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/pcb/proxmark3_fix/CAD/proxmark3.sch -------------------------------------------------------------------------------- /pcb/proxmark3_fix/CAM/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/pcb/proxmark3_fix/CAM/README.txt -------------------------------------------------------------------------------- /pcb/proxmark3_fix/CAM/proxmark3.GBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/pcb/proxmark3_fix/CAM/proxmark3.GBL -------------------------------------------------------------------------------- /pcb/proxmark3_fix/CAM/proxmark3.GBO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/pcb/proxmark3_fix/CAM/proxmark3.GBO -------------------------------------------------------------------------------- /pcb/proxmark3_fix/CAM/proxmark3.GBP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/pcb/proxmark3_fix/CAM/proxmark3.GBP -------------------------------------------------------------------------------- /pcb/proxmark3_fix/CAM/proxmark3.GBS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/pcb/proxmark3_fix/CAM/proxmark3.GBS -------------------------------------------------------------------------------- /pcb/proxmark3_fix/CAM/proxmark3.GL1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/pcb/proxmark3_fix/CAM/proxmark3.GL1 -------------------------------------------------------------------------------- /pcb/proxmark3_fix/CAM/proxmark3.GL2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/pcb/proxmark3_fix/CAM/proxmark3.GL2 -------------------------------------------------------------------------------- /pcb/proxmark3_fix/CAM/proxmark3.GML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/pcb/proxmark3_fix/CAM/proxmark3.GML -------------------------------------------------------------------------------- /pcb/proxmark3_fix/CAM/proxmark3.GTL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/pcb/proxmark3_fix/CAM/proxmark3.GTL -------------------------------------------------------------------------------- /pcb/proxmark3_fix/CAM/proxmark3.GTO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/pcb/proxmark3_fix/CAM/proxmark3.GTO -------------------------------------------------------------------------------- /pcb/proxmark3_fix/CAM/proxmark3.GTP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/pcb/proxmark3_fix/CAM/proxmark3.GTP -------------------------------------------------------------------------------- /pcb/proxmark3_fix/CAM/proxmark3.GTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/pcb/proxmark3_fix/CAM/proxmark3.GTS -------------------------------------------------------------------------------- /pcb/proxmark3_fix/CAM/proxmark3.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/pcb/proxmark3_fix/CAM/proxmark3.TXT -------------------------------------------------------------------------------- /pcb/proxmark3_fix/CAM/proxmark3.do: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/pcb/proxmark3_fix/CAM/proxmark3.do -------------------------------------------------------------------------------- /pcb/proxmark3_fix/CAM/proxmark3.dri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/pcb/proxmark3_fix/CAM/proxmark3.dri -------------------------------------------------------------------------------- /pcb/proxmark3_fix/CAM/proxmark3.gpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/pcb/proxmark3_fix/CAM/proxmark3.gpi -------------------------------------------------------------------------------- /pcb/proxmark3_fix/IN1_layer_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/pcb/proxmark3_fix/IN1_layer_preview.png -------------------------------------------------------------------------------- /pcb/proxmark3_fix/IN2_layer_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/pcb/proxmark3_fix/IN2_layer_preview.png -------------------------------------------------------------------------------- /pcb/proxmark3_fix/MFG/proxmark3_IN1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/pcb/proxmark3_fix/MFG/proxmark3_IN1.pdf -------------------------------------------------------------------------------- /pcb/proxmark3_fix/MFG/proxmark3_IN2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/pcb/proxmark3_fix/MFG/proxmark3_IN2.pdf -------------------------------------------------------------------------------- /pcb/proxmark3_fix/MFG/proxmark3_bot.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/pcb/proxmark3_fix/MFG/proxmark3_bot.pdf -------------------------------------------------------------------------------- /pcb/proxmark3_fix/MFG/proxmark3_cam.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/pcb/proxmark3_fix/MFG/proxmark3_cam.zip -------------------------------------------------------------------------------- /pcb/proxmark3_fix/MFG/proxmark3_sch.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/pcb/proxmark3_fix/MFG/proxmark3_sch.pdf -------------------------------------------------------------------------------- /pcb/proxmark3_fix/MFG/proxmark3_top.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/pcb/proxmark3_fix/MFG/proxmark3_top.pdf -------------------------------------------------------------------------------- /pcb/proxmark3_fix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/pcb/proxmark3_fix/README.md -------------------------------------------------------------------------------- /pcb/proxmark3_fix/TOP_layer_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/pcb/proxmark3_fix/TOP_layer_preview.png -------------------------------------------------------------------------------- /recovery/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/recovery/Makefile -------------------------------------------------------------------------------- /tools/at91sam7s256-armusbocd-flash-program.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/tools/at91sam7s256-armusbocd-flash-program.cfg -------------------------------------------------------------------------------- /tools/at91sam7s256-armusbocd.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/tools/at91sam7s256-armusbocd.cfg -------------------------------------------------------------------------------- /tools/at91sam7s256-jtagkey.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/tools/at91sam7s256-jtagkey.cfg -------------------------------------------------------------------------------- /tools/at91sam7s256-wiggler.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/tools/at91sam7s256-wiggler.cfg -------------------------------------------------------------------------------- /tools/at91sam7s512-busblaster.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/tools/at91sam7s512-busblaster.cfg -------------------------------------------------------------------------------- /tools/at91sam7s512-buspirate.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/tools/at91sam7s512-buspirate.cfg -------------------------------------------------------------------------------- /tools/at91sam7s512-jtagkey.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/tools/at91sam7s512-jtagkey.cfg -------------------------------------------------------------------------------- /tools/findbits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/tools/findbits.py -------------------------------------------------------------------------------- /tools/findbits_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/tools/findbits_test.py -------------------------------------------------------------------------------- /tools/install-gnuarm4.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/tools/install-gnuarm4.sh -------------------------------------------------------------------------------- /tools/mfkey/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/tools/mfkey/Makefile -------------------------------------------------------------------------------- /tools/mfkey/example_trace.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/tools/mfkey/example_trace.txt -------------------------------------------------------------------------------- /tools/mfkey/mfkey32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/tools/mfkey/mfkey32.c -------------------------------------------------------------------------------- /tools/mfkey/mfkey64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/tools/mfkey/mfkey64.c -------------------------------------------------------------------------------- /tools/mkversion.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/tools/mkversion.pl -------------------------------------------------------------------------------- /tools/rfidtest.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/tools/rfidtest.pl -------------------------------------------------------------------------------- /tools/srecswap.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/tools/srecswap.pl -------------------------------------------------------------------------------- /tools/xorcheck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/tools/xorcheck.py -------------------------------------------------------------------------------- /traces/ATA5577-HIDemu-FC1-C9.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/traces/ATA5577-HIDemu-FC1-C9.pm3 -------------------------------------------------------------------------------- /traces/AWID-15-259.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/traces/AWID-15-259.pm3 -------------------------------------------------------------------------------- /traces/Casi-12ed825c29.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/traces/Casi-12ed825c29.pm3 -------------------------------------------------------------------------------- /traces/EM4102-1.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/traces/EM4102-1.pm3 -------------------------------------------------------------------------------- /traces/EM4102-2.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/traces/EM4102-2.pm3 -------------------------------------------------------------------------------- /traces/EM4102-3.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/traces/EM4102-3.pm3 -------------------------------------------------------------------------------- /traces/EM4102-Fob.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/traces/EM4102-Fob.pm3 -------------------------------------------------------------------------------- /traces/HID-weak-fob-11647.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/traces/HID-weak-fob-11647.pm3 -------------------------------------------------------------------------------- /traces/Paradox-96_40426-APJN08.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/traces/Paradox-96_40426-APJN08.pm3 -------------------------------------------------------------------------------- /traces/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/traces/README.txt -------------------------------------------------------------------------------- /traces/TITEST.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/traces/TITEST.TXT -------------------------------------------------------------------------------- /traces/Transit999-best.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/traces/Transit999-best.pm3 -------------------------------------------------------------------------------- /traces/em4102-clamshell.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/traces/em4102-clamshell.pm3 -------------------------------------------------------------------------------- /traces/em4102-thin.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/traces/em4102-thin.pm3 -------------------------------------------------------------------------------- /traces/em4x05.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/traces/em4x05.pm3 -------------------------------------------------------------------------------- /traces/em4x50.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/traces/em4x50.pm3 -------------------------------------------------------------------------------- /traces/hid-proxCardII-05512-11432784-1.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/traces/hid-proxCardII-05512-11432784-1.pm3 -------------------------------------------------------------------------------- /traces/homeagain.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/traces/homeagain.pm3 -------------------------------------------------------------------------------- /traces/homeagain1600.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/traces/homeagain1600.pm3 -------------------------------------------------------------------------------- /traces/indala-00002-12345678-1A.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/traces/indala-00002-12345678-1A.pm3 -------------------------------------------------------------------------------- /traces/indala-504278295.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/traces/indala-504278295.pm3 -------------------------------------------------------------------------------- /traces/ioProx-XSF-01-BE-03011.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/traces/ioProx-XSF-01-BE-03011.pm3 -------------------------------------------------------------------------------- /traces/ioprox-XSF-01-3B-44725.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/traces/ioprox-XSF-01-3B-44725.pm3 -------------------------------------------------------------------------------- /traces/keri.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/traces/keri.pm3 -------------------------------------------------------------------------------- /traces/modulation-ask-biph-50.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/traces/modulation-ask-biph-50.pm3 -------------------------------------------------------------------------------- /traces/modulation-ask-man-100.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/traces/modulation-ask-man-100.pm3 -------------------------------------------------------------------------------- /traces/modulation-ask-man-128.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/traces/modulation-ask-man-128.pm3 -------------------------------------------------------------------------------- /traces/modulation-ask-man-16.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/traces/modulation-ask-man-16.pm3 -------------------------------------------------------------------------------- /traces/modulation-ask-man-32.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/traces/modulation-ask-man-32.pm3 -------------------------------------------------------------------------------- /traces/modulation-ask-man-40.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/traces/modulation-ask-man-40.pm3 -------------------------------------------------------------------------------- /traces/modulation-ask-man-8.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/traces/modulation-ask-man-8.pm3 -------------------------------------------------------------------------------- /traces/modulation-biphase.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/traces/modulation-biphase.pm3 -------------------------------------------------------------------------------- /traces/modulation-data.dat: -------------------------------------------------------------------------------- 1 |  2 | -------------------------------------------------------------------------------- /traces/modulation-direct-32.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/traces/modulation-direct-32.pm3 -------------------------------------------------------------------------------- /traces/modulation-direct-40.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/traces/modulation-direct-40.pm3 -------------------------------------------------------------------------------- /traces/modulation-direct-50.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/traces/modulation-direct-50.pm3 -------------------------------------------------------------------------------- /traces/modulation-fsk1-50.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/traces/modulation-fsk1-50.pm3 -------------------------------------------------------------------------------- /traces/modulation-fsk1.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/traces/modulation-fsk1.pm3 -------------------------------------------------------------------------------- /traces/modulation-fsk1a-50.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/traces/modulation-fsk1a-50.pm3 -------------------------------------------------------------------------------- /traces/modulation-fsk2-50.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/traces/modulation-fsk2-50.pm3 -------------------------------------------------------------------------------- /traces/modulation-fsk2.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/traces/modulation-fsk2.pm3 -------------------------------------------------------------------------------- /traces/modulation-fsk2a-40.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/traces/modulation-fsk2a-40.pm3 -------------------------------------------------------------------------------- /traces/modulation-fsk2a-50.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/traces/modulation-fsk2a-50.pm3 -------------------------------------------------------------------------------- /traces/modulation-manchester.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/traces/modulation-manchester.pm3 -------------------------------------------------------------------------------- /traces/modulation-nrz.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/traces/modulation-nrz.pm3 -------------------------------------------------------------------------------- /traces/modulation-psk1-32-4.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/traces/modulation-psk1-32-4.pm3 -------------------------------------------------------------------------------- /traces/modulation-psk1-64-8.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/traces/modulation-psk1-64-8.pm3 -------------------------------------------------------------------------------- /traces/modulation-psk1.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/traces/modulation-psk1.pm3 -------------------------------------------------------------------------------- /traces/modulation-psk2-32-2.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/traces/modulation-psk2-32-2.pm3 -------------------------------------------------------------------------------- /traces/modulation-psk2.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/traces/modulation-psk2.pm3 -------------------------------------------------------------------------------- /traces/modulation-psk3-32-8.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/traces/modulation-psk3-32-8.pm3 -------------------------------------------------------------------------------- /traces/modulation-psk3.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/traces/modulation-psk3.pm3 -------------------------------------------------------------------------------- /uart/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/uart/README.md -------------------------------------------------------------------------------- /uart/uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/uart/uart.h -------------------------------------------------------------------------------- /uart/uart_posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/uart/uart_posix.c -------------------------------------------------------------------------------- /uart/uart_win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/uart/uart_win32.c -------------------------------------------------------------------------------- /zlib/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/zlib/ChangeLog -------------------------------------------------------------------------------- /zlib/FAQ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/zlib/FAQ -------------------------------------------------------------------------------- /zlib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/zlib/README -------------------------------------------------------------------------------- /zlib/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/zlib/adler32.c -------------------------------------------------------------------------------- /zlib/deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/zlib/deflate.c -------------------------------------------------------------------------------- /zlib/deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/zlib/deflate.h -------------------------------------------------------------------------------- /zlib/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/zlib/inffast.c -------------------------------------------------------------------------------- /zlib/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/zlib/inffast.h -------------------------------------------------------------------------------- /zlib/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/zlib/inffixed.h -------------------------------------------------------------------------------- /zlib/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/zlib/inflate.c -------------------------------------------------------------------------------- /zlib/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/zlib/inflate.h -------------------------------------------------------------------------------- /zlib/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/zlib/inftrees.c -------------------------------------------------------------------------------- /zlib/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/zlib/inftrees.h -------------------------------------------------------------------------------- /zlib/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/zlib/trees.c -------------------------------------------------------------------------------- /zlib/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/zlib/trees.h -------------------------------------------------------------------------------- /zlib/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/zlib/zconf.h -------------------------------------------------------------------------------- /zlib/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/zlib/zlib.h -------------------------------------------------------------------------------- /zlib/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/zlib/zutil.c -------------------------------------------------------------------------------- /zlib/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Proxmark/proxmark3/HEAD/zlib/zutil.h --------------------------------------------------------------------------------