├── .gitattributes ├── .github └── ISSUE_TEMPLATE │ └── bug_report.md ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── COMPILING.txt ├── HACKING.txt ├── LICENSE.txt ├── Makefile ├── README.md ├── appveyor.yml ├── armsrc ├── BigBuf.c ├── BigBuf.h ├── LCD.c ├── LCD.h ├── Makefile ├── Standalone │ ├── hf_colin.c │ ├── hf_colin.h │ ├── hf_mattyrun.c │ ├── hf_mattyrun.h │ ├── hf_young.c │ ├── hf_young.h │ ├── lf_hidbrute.c │ ├── lf_hidbrute.h │ ├── lf_proxbrute.c │ ├── lf_proxbrute.h │ ├── lf_samyrun.c │ ├── lf_samyrun.h │ ├── readme.md │ └── standalone.h ├── aes.c ├── aes.h ├── appmain.c ├── apps.h ├── buzzer.c ├── buzzer.h ├── des.c ├── des.h ├── desfire_crypto.c ├── desfire_crypto.h ├── desfire_key.c ├── desfire_key.h ├── epa.c ├── epa.h ├── felica.c ├── flashmem.c ├── flashmem.h ├── fonts.c ├── fonts.h ├── fpgaloader.c ├── fpgaloader.h ├── hfsnoop.c ├── hitag2.c ├── hitagS.c ├── iclass.c ├── iso14443a.c ├── iso14443a.h ├── iso14443b.c ├── iso14443b.h ├── iso15693.c ├── ldscript ├── legicrf.c ├── legicrf.h ├── lfops.c ├── lfsampling.c ├── lfsampling.h ├── mifarecmd.c ├── mifarecmd.h ├── mifaredesfire.c ├── mifaredesfire.h ├── mifaresniff.c ├── mifaresniff.h ├── mifareutil.c ├── mifareutil.h ├── obj │ ├── .dummy │ └── Standalone │ │ └── .dummy ├── optimized_cipher.c ├── optimized_cipher.h ├── pcf7931.c ├── pcf7931.h ├── printf.c ├── printf.h ├── start.c ├── string.c ├── string.h ├── ticks.c ├── ticks.h ├── tlv.c ├── tlv.h ├── util.c ├── util.h ├── vtsend.c └── vtsend.h ├── bootrom ├── Makefile ├── bootrom.c ├── flash-reset.s ├── ldscript-flash ├── obj │ └── .dummy └── ram-reset.s ├── client ├── Makefile ├── README-bitlib ├── cli.c ├── cmdanalyse.c ├── cmdanalyse.h ├── cmdcrc.c ├── cmdcrc.h ├── cmddata.c ├── cmddata.h ├── cmdflashmem.c ├── cmdflashmem.h ├── cmdhf.c ├── cmdhf.h ├── cmdhf14a.c ├── cmdhf14a.h ├── cmdhf14b.c ├── cmdhf14b.h ├── cmdhf15.c ├── cmdhf15.h ├── cmdhfemv.c ├── cmdhfemv.h ├── cmdhfepa.c ├── cmdhfepa.h ├── cmdhffelica.c ├── cmdhffelica.h ├── cmdhficlass.c ├── cmdhficlass.h ├── cmdhflegic.c ├── cmdhflegic.h ├── cmdhflist.c ├── cmdhflist.h ├── cmdhfmf.c ├── cmdhfmf.h ├── cmdhfmfdes.c ├── cmdhfmfdes.h ├── cmdhfmfdesfire.c ├── cmdhfmfdesfire.h ├── cmdhfmfhard.c ├── cmdhfmfhard.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 ├── cmdlfguard.c ├── cmdlfguard.h ├── cmdlfhid.c ├── cmdlfhid.h ├── cmdlfhitag.c ├── cmdlfhitag.h ├── cmdlfindala.c ├── cmdlfindala.h ├── cmdlfio.c ├── cmdlfio.h ├── cmdlfjablotron.c ├── cmdlfjablotron.h ├── cmdlfnedap.c ├── cmdlfnedap.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 ├── cmdtrace.c ├── cmdtrace.h ├── default_iclass_keys.dic ├── default_keys.dic ├── default_keys_dic2lua.awk ├── 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 │ ├── 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_tags.c │ ├── emv_tags.h │ ├── emvcore.c │ ├── emvcore.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 ├── 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 ├── hitag2.ht2 ├── libluamiibo.so ├── loclass │ ├── cipher.c │ ├── cipher.h │ ├── cipherutils.c │ ├── cipherutils.h │ ├── elite_crack.c │ ├── elite_crack.h │ ├── fileutils.c │ ├── fileutils.h │ ├── hash1_brute.c │ ├── hash1_brute.h │ ├── iclass_dump.bin │ ├── ikeys.c │ ├── ikeys.h │ ├── loclass information.txt │ ├── loclass_main.h │ └── main.c ├── lualibs │ ├── 7816_error.lua │ ├── amiibolib.lua │ ├── ansicolors.lua │ ├── commands.lua │ ├── default_toys.lua │ ├── default_toys_di.lua │ ├── dkjson.lua │ ├── emulator.lua │ ├── getopt.lua │ ├── hf_reader.lua │ ├── html_dumplib.lua │ ├── htmlskel.lua │ ├── md5.lua │ ├── precalc.lua │ ├── read14a.lua │ ├── read14b.lua │ ├── taglib.lua │ └── utils.lua ├── mfkey.c ├── mfkey.h ├── mifaredefault.h ├── mifarehost.c ├── mifarehost.h ├── obj │ ├── .dummy │ ├── crapto1 │ │ └── .dummy │ ├── emv │ │ ├── .dummy │ │ └── test │ │ │ └── .dummy │ ├── hardnested │ │ └── .dummy │ ├── loclass │ │ └── .dummy │ ├── nonce2key │ │ └── .dummy │ ├── polarssl │ │ └── .dummy │ └── reveng │ │ └── .gitignore ├── platforms │ └── .gitignore ├── 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 ├── pm3_mfdread.py ├── polarssl_config.h ├── proxendian.h ├── proxgui.cpp ├── proxgui.h ├── proxguiqt.cpp ├── proxguiqt.h ├── proxmark3.c ├── proxmark3.h ├── reveng │ ├── bmpbit.c │ ├── cli.c │ ├── config.h │ ├── getopt.c │ ├── getopt.h │ ├── model.c │ ├── poly.c │ ├── preset.c │ ├── reveng.c │ └── reveng.h ├── scandir.c ├── scandir.h ├── scripting.c ├── scripting.h ├── scripts │ ├── 14araw.lua │ ├── Legic_clone.lua │ ├── amiibo.lua │ ├── brutesim.lua │ ├── calc_di.lua │ ├── calc_ev1_it.lua │ ├── calc_mizip.lua │ ├── calypso.lua │ ├── cmdline.lua │ ├── didump.lua │ ├── dumptoemul-mfu.lua │ ├── dumptoemul.lua │ ├── e.lua │ ├── emul2dump.lua │ ├── emul2html.lua │ ├── formatMifare.lua │ ├── hf_read.lua │ ├── htmldump.lua │ ├── legic.lua │ ├── legic_buffer2card.lua │ ├── lf_bulk.lua │ ├── mfkeys.lua │ ├── mifare_access.lua │ ├── mifare_autopwn.lua │ ├── mifareplus.lua │ ├── ndef_dump.lua │ ├── ntag_3d.lua │ ├── parameters.lua │ ├── remagic.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 │ ├── ufodump.lua │ └── ul_uid.lua ├── snooper.c ├── ui.c ├── ui.h ├── ui │ └── overlays.ui ├── unbind-proxmark ├── usb_cmd_h2lua.awk ├── util.c ├── util.h ├── util_posix.c ├── util_posix.h ├── whereami.c └── whereami.h ├── common ├── Makefile.common ├── bucketsort.c ├── bucketsort.h ├── cmd.c ├── cmd.h ├── 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 ├── desfire.h ├── emvtags.h ├── fpga.h ├── i2c.c ├── i2c.h ├── iso14443crc.c ├── iso14443crc.h ├── iso15693tools.c ├── iso15693tools.h ├── ldscript.common ├── legic_prng.c ├── lfdemod.c ├── lfdemod.h ├── parity.c ├── parity.h ├── polarssl │ ├── aes.c │ ├── aes.h │ ├── base64.c │ ├── base64.h │ ├── bignum.c │ ├── bignum.h │ ├── bn_mul.h │ ├── des.c │ ├── des.h │ ├── hmac_drbg.c │ ├── hmac_drbg.h │ ├── polarssl_config.h │ ├── rsa.c │ ├── rsa.h │ ├── sha1.c │ ├── sha1.h │ ├── sha256.c │ └── sha256.h ├── prng.c ├── prng.h ├── protocols.c ├── protocols.h ├── radixsort.c ├── radixsort.h ├── random.c ├── random.h ├── tea.c ├── tea.h ├── usart.c ├── usart.h ├── usb_cdc.c ├── usb_cdc.h ├── wiegand.c └── wiegand.h ├── covbuild.sh ├── covconfig.sh ├── 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-pm3-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_flite.v ├── hi_iso14443a.v ├── hi_read_rx_xcorr.v ├── hi_read_tx.v ├── hi_simulate.v ├── hi_sniffer.v ├── lf_edge_detect.v ├── lo_edge_detect.v ├── lo_passthru.v ├── lo_read.v ├── lo_simulate.v ├── lp20khz_1MSa_iir_filter.v ├── min_max_tracker.v ├── sim.tcl ├── testbed_fpga.v ├── testbed_hi_read_tx.v ├── testbed_hi_simulate.v ├── testbed_lo_read.v ├── testbed_lo_simulate.v ├── tests │ ├── Makefile │ ├── plot_edgedetect.py │ ├── tb_data │ │ ├── pcf7931_read_1MSA_data.filtered.gold │ │ ├── pcf7931_read_1MSA_data.high.gold │ │ ├── pcf7931_read_1MSA_data.highz.gold │ │ ├── pcf7931_read_1MSA_data.in │ │ ├── pcf7931_read_1MSA_data.low.gold │ │ ├── pcf7931_read_1MSA_data.lowz.gold │ │ ├── pcf7931_read_1MSA_data.max.gold │ │ ├── pcf7931_read_1MSA_data.min.gold │ │ ├── pcf7931_read_1MSA_data.state.gold │ │ ├── pcf7931_read_1MSA_data.time │ │ ├── pcf7931_read_1MSA_data.toggle.gold │ │ ├── pcf7931_write1byte_1MSA_data.filtered.gold │ │ ├── pcf7931_write1byte_1MSA_data.high.gold │ │ ├── pcf7931_write1byte_1MSA_data.highz.gold │ │ ├── pcf7931_write1byte_1MSA_data.in │ │ ├── pcf7931_write1byte_1MSA_data.low.gold │ │ ├── pcf7931_write1byte_1MSA_data.lowz.gold │ │ ├── pcf7931_write1byte_1MSA_data.max.gold │ │ ├── pcf7931_write1byte_1MSA_data.min.gold │ │ ├── pcf7931_write1byte_1MSA_data.state.gold │ │ ├── pcf7931_write1byte_1MSA_data.time │ │ └── pcf7931_write1byte_1MSA_data.toggle.gold │ ├── tb_lf_edge_detect.v │ ├── tb_lp20khz_1MSa_iir_filter.v │ └── tb_min_max_tracker.v ├── util.v ├── xst_hf.scr ├── xst_lf.scr └── xst_nfc.scr ├── include ├── at91sam7s512.h ├── common.h ├── config_gpio.h ├── hitag2.h ├── hitagS.h ├── legic.h ├── legic_prng.h ├── mifare.h ├── proxmark3.h └── usb_cmd.h ├── install.sh ├── 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 ├── proxmark3.sh ├── rdv40.txt ├── recovery └── Makefile ├── tools ├── Makefile ├── 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 │ ├── .gitignore │ ├── Makefile │ ├── crapto1.c │ ├── crapto1.h │ ├── crypto1.c │ ├── example_trace.txt │ ├── mfkey32.c │ ├── mfkey32v2.c │ └── mfkey64.c ├── mkversion.pl ├── nonce2key │ ├── Makefile │ ├── crapto1.c │ ├── crapto1.h │ ├── crypto1.c │ ├── nonce2key.c │ └── readme.txt ├── 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 ├── EMV │ ├── mastercardtags.txt │ ├── testcard.txt │ ├── visaCVN17.txt │ ├── visaDCVV.txt │ ├── visaEMV.txt │ ├── visaFDDA.txt │ └── visatags.txt ├── 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 ├── quadrakey-521512301.pm3 ├── securakey-64169.pm3 └── visa2000.pm3 ├── uart ├── README.md ├── uart.h ├── uart_posix.c └── uart_win32.c ├── update.sh └── 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/iceman1001/proxmark3-1/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /COMPILING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/COMPILING.txt -------------------------------------------------------------------------------- /HACKING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/HACKING.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/appveyor.yml -------------------------------------------------------------------------------- /armsrc/BigBuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/armsrc/BigBuf.c -------------------------------------------------------------------------------- /armsrc/BigBuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/armsrc/BigBuf.h -------------------------------------------------------------------------------- /armsrc/LCD.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/armsrc/LCD.c -------------------------------------------------------------------------------- /armsrc/LCD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/armsrc/LCD.h -------------------------------------------------------------------------------- /armsrc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/armsrc/Makefile -------------------------------------------------------------------------------- /armsrc/Standalone/hf_colin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/armsrc/Standalone/hf_colin.c -------------------------------------------------------------------------------- /armsrc/Standalone/hf_colin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/armsrc/Standalone/hf_colin.h -------------------------------------------------------------------------------- /armsrc/Standalone/hf_mattyrun.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/armsrc/Standalone/hf_mattyrun.c -------------------------------------------------------------------------------- /armsrc/Standalone/hf_mattyrun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/armsrc/Standalone/hf_mattyrun.h -------------------------------------------------------------------------------- /armsrc/Standalone/hf_young.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/armsrc/Standalone/hf_young.c -------------------------------------------------------------------------------- /armsrc/Standalone/hf_young.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/armsrc/Standalone/hf_young.h -------------------------------------------------------------------------------- /armsrc/Standalone/lf_hidbrute.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/armsrc/Standalone/lf_hidbrute.c -------------------------------------------------------------------------------- /armsrc/Standalone/lf_hidbrute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/armsrc/Standalone/lf_hidbrute.h -------------------------------------------------------------------------------- /armsrc/Standalone/lf_proxbrute.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/armsrc/Standalone/lf_proxbrute.c -------------------------------------------------------------------------------- /armsrc/Standalone/lf_proxbrute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/armsrc/Standalone/lf_proxbrute.h -------------------------------------------------------------------------------- /armsrc/Standalone/lf_samyrun.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/armsrc/Standalone/lf_samyrun.c -------------------------------------------------------------------------------- /armsrc/Standalone/lf_samyrun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/armsrc/Standalone/lf_samyrun.h -------------------------------------------------------------------------------- /armsrc/Standalone/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/armsrc/Standalone/readme.md -------------------------------------------------------------------------------- /armsrc/Standalone/standalone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/armsrc/Standalone/standalone.h -------------------------------------------------------------------------------- /armsrc/aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/armsrc/aes.c -------------------------------------------------------------------------------- /armsrc/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/armsrc/aes.h -------------------------------------------------------------------------------- /armsrc/appmain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/armsrc/appmain.c -------------------------------------------------------------------------------- /armsrc/apps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/armsrc/apps.h -------------------------------------------------------------------------------- /armsrc/buzzer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/armsrc/buzzer.c -------------------------------------------------------------------------------- /armsrc/buzzer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/armsrc/buzzer.h -------------------------------------------------------------------------------- /armsrc/des.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/armsrc/des.c -------------------------------------------------------------------------------- /armsrc/des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/armsrc/des.h -------------------------------------------------------------------------------- /armsrc/desfire_crypto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/armsrc/desfire_crypto.c -------------------------------------------------------------------------------- /armsrc/desfire_crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/armsrc/desfire_crypto.h -------------------------------------------------------------------------------- /armsrc/desfire_key.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/armsrc/desfire_key.c -------------------------------------------------------------------------------- /armsrc/desfire_key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/armsrc/desfire_key.h -------------------------------------------------------------------------------- /armsrc/epa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/armsrc/epa.c -------------------------------------------------------------------------------- /armsrc/epa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/armsrc/epa.h -------------------------------------------------------------------------------- /armsrc/felica.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/armsrc/felica.c -------------------------------------------------------------------------------- /armsrc/flashmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/armsrc/flashmem.c -------------------------------------------------------------------------------- /armsrc/flashmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/armsrc/flashmem.h -------------------------------------------------------------------------------- /armsrc/fonts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/armsrc/fonts.c -------------------------------------------------------------------------------- /armsrc/fonts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/armsrc/fonts.h -------------------------------------------------------------------------------- /armsrc/fpgaloader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/armsrc/fpgaloader.c -------------------------------------------------------------------------------- /armsrc/fpgaloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/armsrc/fpgaloader.h -------------------------------------------------------------------------------- /armsrc/hfsnoop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/armsrc/hfsnoop.c -------------------------------------------------------------------------------- /armsrc/hitag2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/armsrc/hitag2.c -------------------------------------------------------------------------------- /armsrc/hitagS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/armsrc/hitagS.c -------------------------------------------------------------------------------- /armsrc/iclass.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/armsrc/iclass.c -------------------------------------------------------------------------------- /armsrc/iso14443a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/armsrc/iso14443a.c -------------------------------------------------------------------------------- /armsrc/iso14443a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/armsrc/iso14443a.h -------------------------------------------------------------------------------- /armsrc/iso14443b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/armsrc/iso14443b.c -------------------------------------------------------------------------------- /armsrc/iso14443b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/armsrc/iso14443b.h -------------------------------------------------------------------------------- /armsrc/iso15693.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/armsrc/iso15693.c -------------------------------------------------------------------------------- /armsrc/ldscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/armsrc/ldscript -------------------------------------------------------------------------------- /armsrc/legicrf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/armsrc/legicrf.c -------------------------------------------------------------------------------- /armsrc/legicrf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/armsrc/legicrf.h -------------------------------------------------------------------------------- /armsrc/lfops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/armsrc/lfops.c -------------------------------------------------------------------------------- /armsrc/lfsampling.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/armsrc/lfsampling.c -------------------------------------------------------------------------------- /armsrc/lfsampling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/armsrc/lfsampling.h -------------------------------------------------------------------------------- /armsrc/mifarecmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/armsrc/mifarecmd.c -------------------------------------------------------------------------------- /armsrc/mifarecmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/armsrc/mifarecmd.h -------------------------------------------------------------------------------- /armsrc/mifaredesfire.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/armsrc/mifaredesfire.c -------------------------------------------------------------------------------- /armsrc/mifaredesfire.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/armsrc/mifaredesfire.h -------------------------------------------------------------------------------- /armsrc/mifaresniff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/armsrc/mifaresniff.c -------------------------------------------------------------------------------- /armsrc/mifaresniff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/armsrc/mifaresniff.h -------------------------------------------------------------------------------- /armsrc/mifareutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/armsrc/mifareutil.c -------------------------------------------------------------------------------- /armsrc/mifareutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/armsrc/mifareutil.h -------------------------------------------------------------------------------- /armsrc/obj/.dummy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /armsrc/obj/Standalone/.dummy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /armsrc/optimized_cipher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/armsrc/optimized_cipher.c -------------------------------------------------------------------------------- /armsrc/optimized_cipher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/armsrc/optimized_cipher.h -------------------------------------------------------------------------------- /armsrc/pcf7931.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/armsrc/pcf7931.c -------------------------------------------------------------------------------- /armsrc/pcf7931.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/armsrc/pcf7931.h -------------------------------------------------------------------------------- /armsrc/printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/armsrc/printf.c -------------------------------------------------------------------------------- /armsrc/printf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/armsrc/printf.h -------------------------------------------------------------------------------- /armsrc/start.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/armsrc/start.c -------------------------------------------------------------------------------- /armsrc/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/armsrc/string.c -------------------------------------------------------------------------------- /armsrc/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/armsrc/string.h -------------------------------------------------------------------------------- /armsrc/ticks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/armsrc/ticks.c -------------------------------------------------------------------------------- /armsrc/ticks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/armsrc/ticks.h -------------------------------------------------------------------------------- /armsrc/tlv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/armsrc/tlv.c -------------------------------------------------------------------------------- /armsrc/tlv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/armsrc/tlv.h -------------------------------------------------------------------------------- /armsrc/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/armsrc/util.c -------------------------------------------------------------------------------- /armsrc/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/armsrc/util.h -------------------------------------------------------------------------------- /armsrc/vtsend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/armsrc/vtsend.c -------------------------------------------------------------------------------- /armsrc/vtsend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/armsrc/vtsend.h -------------------------------------------------------------------------------- /bootrom/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/bootrom/Makefile -------------------------------------------------------------------------------- /bootrom/bootrom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/bootrom/bootrom.c -------------------------------------------------------------------------------- /bootrom/flash-reset.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/bootrom/flash-reset.s -------------------------------------------------------------------------------- /bootrom/ldscript-flash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/bootrom/ldscript-flash -------------------------------------------------------------------------------- /bootrom/obj/.dummy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bootrom/ram-reset.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/bootrom/ram-reset.s -------------------------------------------------------------------------------- /client/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/Makefile -------------------------------------------------------------------------------- /client/README-bitlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/README-bitlib -------------------------------------------------------------------------------- /client/cli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/cli.c -------------------------------------------------------------------------------- /client/cmdanalyse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/cmdanalyse.c -------------------------------------------------------------------------------- /client/cmdanalyse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/cmdanalyse.h -------------------------------------------------------------------------------- /client/cmdcrc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/cmdcrc.c -------------------------------------------------------------------------------- /client/cmdcrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/cmdcrc.h -------------------------------------------------------------------------------- /client/cmddata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/cmddata.c -------------------------------------------------------------------------------- /client/cmddata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/cmddata.h -------------------------------------------------------------------------------- /client/cmdflashmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/cmdflashmem.c -------------------------------------------------------------------------------- /client/cmdflashmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/cmdflashmem.h -------------------------------------------------------------------------------- /client/cmdhf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/cmdhf.c -------------------------------------------------------------------------------- /client/cmdhf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/cmdhf.h -------------------------------------------------------------------------------- /client/cmdhf14a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/cmdhf14a.c -------------------------------------------------------------------------------- /client/cmdhf14a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/cmdhf14a.h -------------------------------------------------------------------------------- /client/cmdhf14b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/cmdhf14b.c -------------------------------------------------------------------------------- /client/cmdhf14b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/cmdhf14b.h -------------------------------------------------------------------------------- /client/cmdhf15.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/cmdhf15.c -------------------------------------------------------------------------------- /client/cmdhf15.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/cmdhf15.h -------------------------------------------------------------------------------- /client/cmdhfemv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/cmdhfemv.c -------------------------------------------------------------------------------- /client/cmdhfemv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/cmdhfemv.h -------------------------------------------------------------------------------- /client/cmdhfepa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/cmdhfepa.c -------------------------------------------------------------------------------- /client/cmdhfepa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/cmdhfepa.h -------------------------------------------------------------------------------- /client/cmdhffelica.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/cmdhffelica.c -------------------------------------------------------------------------------- /client/cmdhffelica.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/cmdhffelica.h -------------------------------------------------------------------------------- /client/cmdhficlass.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/cmdhficlass.c -------------------------------------------------------------------------------- /client/cmdhficlass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/cmdhficlass.h -------------------------------------------------------------------------------- /client/cmdhflegic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/cmdhflegic.c -------------------------------------------------------------------------------- /client/cmdhflegic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/cmdhflegic.h -------------------------------------------------------------------------------- /client/cmdhflist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/cmdhflist.c -------------------------------------------------------------------------------- /client/cmdhflist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/cmdhflist.h -------------------------------------------------------------------------------- /client/cmdhfmf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/cmdhfmf.c -------------------------------------------------------------------------------- /client/cmdhfmf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/cmdhfmf.h -------------------------------------------------------------------------------- /client/cmdhfmfdes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/cmdhfmfdes.c -------------------------------------------------------------------------------- /client/cmdhfmfdes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/cmdhfmfdes.h -------------------------------------------------------------------------------- /client/cmdhfmfdesfire.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/cmdhfmfdesfire.c -------------------------------------------------------------------------------- /client/cmdhfmfdesfire.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/cmdhfmfdesfire.h -------------------------------------------------------------------------------- /client/cmdhfmfhard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/cmdhfmfhard.c -------------------------------------------------------------------------------- /client/cmdhfmfhard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/cmdhfmfhard.h -------------------------------------------------------------------------------- /client/cmdhfmfu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/cmdhfmfu.c -------------------------------------------------------------------------------- /client/cmdhfmfu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/cmdhfmfu.h -------------------------------------------------------------------------------- /client/cmdhftopaz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/cmdhftopaz.c -------------------------------------------------------------------------------- /client/cmdhftopaz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/cmdhftopaz.h -------------------------------------------------------------------------------- /client/cmdhw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/cmdhw.c -------------------------------------------------------------------------------- /client/cmdhw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/cmdhw.h -------------------------------------------------------------------------------- /client/cmdlf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/cmdlf.c -------------------------------------------------------------------------------- /client/cmdlf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/cmdlf.h -------------------------------------------------------------------------------- /client/cmdlfawid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/cmdlfawid.c -------------------------------------------------------------------------------- /client/cmdlfawid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/cmdlfawid.h -------------------------------------------------------------------------------- /client/cmdlfcotag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/cmdlfcotag.c -------------------------------------------------------------------------------- /client/cmdlfcotag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/cmdlfcotag.h -------------------------------------------------------------------------------- /client/cmdlfem4x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/cmdlfem4x.c -------------------------------------------------------------------------------- /client/cmdlfem4x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/cmdlfem4x.h -------------------------------------------------------------------------------- /client/cmdlffdx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/cmdlffdx.c -------------------------------------------------------------------------------- /client/cmdlffdx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/cmdlffdx.h -------------------------------------------------------------------------------- /client/cmdlfguard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/cmdlfguard.c -------------------------------------------------------------------------------- /client/cmdlfguard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/cmdlfguard.h -------------------------------------------------------------------------------- /client/cmdlfhid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/cmdlfhid.c -------------------------------------------------------------------------------- /client/cmdlfhid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/cmdlfhid.h -------------------------------------------------------------------------------- /client/cmdlfhitag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/cmdlfhitag.c -------------------------------------------------------------------------------- /client/cmdlfhitag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/cmdlfhitag.h -------------------------------------------------------------------------------- /client/cmdlfindala.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/cmdlfindala.c -------------------------------------------------------------------------------- /client/cmdlfindala.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/cmdlfindala.h -------------------------------------------------------------------------------- /client/cmdlfio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/cmdlfio.c -------------------------------------------------------------------------------- /client/cmdlfio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/cmdlfio.h -------------------------------------------------------------------------------- /client/cmdlfjablotron.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/cmdlfjablotron.c -------------------------------------------------------------------------------- /client/cmdlfjablotron.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/cmdlfjablotron.h -------------------------------------------------------------------------------- /client/cmdlfnedap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/cmdlfnedap.c -------------------------------------------------------------------------------- /client/cmdlfnedap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/cmdlfnedap.h -------------------------------------------------------------------------------- /client/cmdlfnexwatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/cmdlfnexwatch.c -------------------------------------------------------------------------------- /client/cmdlfnexwatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/cmdlfnexwatch.h -------------------------------------------------------------------------------- /client/cmdlfnoralsy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/cmdlfnoralsy.c -------------------------------------------------------------------------------- /client/cmdlfnoralsy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/cmdlfnoralsy.h -------------------------------------------------------------------------------- /client/cmdlfpac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/cmdlfpac.c -------------------------------------------------------------------------------- /client/cmdlfpac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/cmdlfpac.h -------------------------------------------------------------------------------- /client/cmdlfparadox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/cmdlfparadox.c -------------------------------------------------------------------------------- /client/cmdlfparadox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/cmdlfparadox.h -------------------------------------------------------------------------------- /client/cmdlfpcf7931.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/cmdlfpcf7931.c -------------------------------------------------------------------------------- /client/cmdlfpcf7931.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/cmdlfpcf7931.h -------------------------------------------------------------------------------- /client/cmdlfpresco.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/cmdlfpresco.c -------------------------------------------------------------------------------- /client/cmdlfpresco.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/cmdlfpresco.h -------------------------------------------------------------------------------- /client/cmdlfpyramid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/cmdlfpyramid.c -------------------------------------------------------------------------------- /client/cmdlfpyramid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/cmdlfpyramid.h -------------------------------------------------------------------------------- /client/cmdlfsecurakey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/cmdlfsecurakey.c -------------------------------------------------------------------------------- /client/cmdlfsecurakey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/cmdlfsecurakey.h -------------------------------------------------------------------------------- /client/cmdlft55xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/cmdlft55xx.c -------------------------------------------------------------------------------- /client/cmdlft55xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/cmdlft55xx.h -------------------------------------------------------------------------------- /client/cmdlfti.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/cmdlfti.c -------------------------------------------------------------------------------- /client/cmdlfti.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/cmdlfti.h -------------------------------------------------------------------------------- /client/cmdlfviking.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/cmdlfviking.c -------------------------------------------------------------------------------- /client/cmdlfviking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/cmdlfviking.h -------------------------------------------------------------------------------- /client/cmdlfvisa2000.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/cmdlfvisa2000.c -------------------------------------------------------------------------------- /client/cmdlfvisa2000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/cmdlfvisa2000.h -------------------------------------------------------------------------------- /client/cmdmain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/cmdmain.c -------------------------------------------------------------------------------- /client/cmdmain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/cmdmain.h -------------------------------------------------------------------------------- /client/cmdparser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/cmdparser.c -------------------------------------------------------------------------------- /client/cmdparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/cmdparser.h -------------------------------------------------------------------------------- /client/cmdscript.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/cmdscript.c -------------------------------------------------------------------------------- /client/cmdscript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/cmdscript.h -------------------------------------------------------------------------------- /client/cmdsmartcard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/cmdsmartcard.c -------------------------------------------------------------------------------- /client/cmdsmartcard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/cmdsmartcard.h -------------------------------------------------------------------------------- /client/cmdtrace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/cmdtrace.c -------------------------------------------------------------------------------- /client/cmdtrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/cmdtrace.h -------------------------------------------------------------------------------- /client/default_iclass_keys.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/default_iclass_keys.dic -------------------------------------------------------------------------------- /client/default_keys.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/default_keys.dic -------------------------------------------------------------------------------- /client/default_keys_dic2lua.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/default_keys_dic2lua.awk -------------------------------------------------------------------------------- /client/default_pwd.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/default_pwd.dic -------------------------------------------------------------------------------- /client/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/elf.h -------------------------------------------------------------------------------- /client/eml2UPPER.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/eml2UPPER.sh -------------------------------------------------------------------------------- /client/eml2lower.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/eml2lower.sh -------------------------------------------------------------------------------- /client/emv/apduinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/emv/apduinfo.c -------------------------------------------------------------------------------- /client/emv/apduinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/emv/apduinfo.h -------------------------------------------------------------------------------- /client/emv/capk.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/emv/capk.txt -------------------------------------------------------------------------------- /client/emv/cmdemv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/emv/cmdemv.c -------------------------------------------------------------------------------- /client/emv/cmdemv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/emv/cmdemv.h -------------------------------------------------------------------------------- /client/emv/crypto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/emv/crypto.c -------------------------------------------------------------------------------- /client/emv/crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/emv/crypto.h -------------------------------------------------------------------------------- /client/emv/crypto_backend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/emv/crypto_backend.h -------------------------------------------------------------------------------- /client/emv/crypto_polarssl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/emv/crypto_polarssl.c -------------------------------------------------------------------------------- /client/emv/dol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/emv/dol.c -------------------------------------------------------------------------------- /client/emv/dol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/emv/dol.h -------------------------------------------------------------------------------- /client/emv/dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/emv/dump.c -------------------------------------------------------------------------------- /client/emv/dump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/emv/dump.h -------------------------------------------------------------------------------- /client/emv/emv_pk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/emv/emv_pk.c -------------------------------------------------------------------------------- /client/emv/emv_pk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/emv/emv_pk.h -------------------------------------------------------------------------------- /client/emv/emv_pki.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/emv/emv_pki.c -------------------------------------------------------------------------------- /client/emv/emv_pki.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/emv/emv_pki.h -------------------------------------------------------------------------------- /client/emv/emv_pki_priv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/emv/emv_pki_priv.c -------------------------------------------------------------------------------- /client/emv/emv_pki_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/emv/emv_pki_priv.h -------------------------------------------------------------------------------- /client/emv/emv_tags.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/emv/emv_tags.c -------------------------------------------------------------------------------- /client/emv/emv_tags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/emv/emv_tags.h -------------------------------------------------------------------------------- /client/emv/emvcore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/emv/emvcore.c -------------------------------------------------------------------------------- /client/emv/emvcore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/emv/emvcore.h -------------------------------------------------------------------------------- /client/emv/test/cda_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/emv/test/cda_test.c -------------------------------------------------------------------------------- /client/emv/test/cda_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/emv/test/cda_test.h -------------------------------------------------------------------------------- /client/emv/test/crypto_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/emv/test/crypto_test.c -------------------------------------------------------------------------------- /client/emv/test/crypto_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/emv/test/crypto_test.h -------------------------------------------------------------------------------- /client/emv/test/cryptotest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/emv/test/cryptotest.c -------------------------------------------------------------------------------- /client/emv/test/cryptotest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/emv/test/cryptotest.h -------------------------------------------------------------------------------- /client/emv/test/dda_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/emv/test/dda_test.c -------------------------------------------------------------------------------- /client/emv/test/dda_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/emv/test/dda_test.h -------------------------------------------------------------------------------- /client/emv/test/sda_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/emv/test/sda_test.c -------------------------------------------------------------------------------- /client/emv/test/sda_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/emv/test/sda_test.h -------------------------------------------------------------------------------- /client/emv/tlv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/emv/tlv.c -------------------------------------------------------------------------------- /client/emv/tlv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/emv/tlv.h -------------------------------------------------------------------------------- /client/flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/flash.c -------------------------------------------------------------------------------- /client/flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/flash.h -------------------------------------------------------------------------------- /client/flasher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/flasher.c -------------------------------------------------------------------------------- /client/fpga_compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/fpga_compress.c -------------------------------------------------------------------------------- /client/gen_pm3mfsim_script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/gen_pm3mfsim_script.sh -------------------------------------------------------------------------------- /client/graph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/graph.c -------------------------------------------------------------------------------- /client/graph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/graph.h -------------------------------------------------------------------------------- /client/guidummy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/guidummy.cpp -------------------------------------------------------------------------------- /client/hardnested/bf_bench_data.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/bf_bench_data.bin -------------------------------------------------------------------------------- /client/hardnested/hardnested_bf_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/hardnested_bf_core.c -------------------------------------------------------------------------------- /client/hardnested/hardnested_bf_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/hardnested_bf_core.h -------------------------------------------------------------------------------- /client/hardnested/hardnested_bitarray_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/hardnested_bitarray_core.c -------------------------------------------------------------------------------- /client/hardnested/hardnested_bitarray_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/hardnested_bitarray_core.h -------------------------------------------------------------------------------- /client/hardnested/hardnested_bruteforce.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/hardnested_bruteforce.c -------------------------------------------------------------------------------- /client/hardnested/hardnested_bruteforce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/hardnested_bruteforce.h -------------------------------------------------------------------------------- /client/hardnested/hardnested_tables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/hardnested_tables.c -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_001_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_001_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_003_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_003_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_005_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_005_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_007_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_007_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_009_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_009_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_00b_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_00b_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_00d_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_00d_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_00f_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_00f_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_010_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_010_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_014_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_014_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_01c_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_01c_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_021_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_021_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_023_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_023_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_025_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_025_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_027_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_027_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_029_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_029_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_02b_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_02b_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_02d_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_02d_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_02f_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_02f_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_030_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_030_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_034_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_034_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_03c_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_03c_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_040_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_040_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_044_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_044_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_04c_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_04c_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_051_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_051_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_053_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_053_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_055_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_055_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_057_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_057_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_059_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_059_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_05b_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_05b_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_05d_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_05d_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_05f_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_05f_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_064_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_064_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_06c_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_06c_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_071_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_071_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_073_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_073_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_075_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_075_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_077_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_077_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_079_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_079_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_07b_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_07b_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_07f_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_07f_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_081_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_081_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_083_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_083_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_085_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_085_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_087_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_087_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_089_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_089_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_08b_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_08b_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_08d_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_08d_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_08f_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_08f_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_090_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_090_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_094_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_094_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_09c_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_09c_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_0a1_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_0a1_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_0a3_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_0a3_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_0a5_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_0a5_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_0a7_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_0a7_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_0a9_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_0a9_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_0ab_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_0ab_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_0ad_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_0ad_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_0af_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_0af_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_0b0_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_0b0_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_0b4_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_0b4_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_0bc_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_0bc_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_0c0_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_0c0_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_0c4_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_0c4_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_0cc_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_0cc_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_0d1_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_0d1_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_0d3_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_0d3_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_0d5_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_0d5_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_0d7_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_0d7_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_0d9_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_0d9_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_0db_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_0db_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_0dd_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_0dd_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_0df_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_0df_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_0e4_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_0e4_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_0ec_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_0ec_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_0f1_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_0f1_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_0f3_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_0f3_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_0f5_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_0f5_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_0f7_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_0f7_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_0f9_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_0f9_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_0fb_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_0fb_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_0fd_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_0fd_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_0ff_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_0ff_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_104_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_104_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_10c_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_10c_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_111_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_111_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_113_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_113_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_115_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_115_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_117_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_117_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_119_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_119_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_11b_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_11b_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_11d_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_11d_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_11f_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_11f_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_124_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_124_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_12c_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_12c_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_131_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_131_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_133_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_133_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_135_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_135_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_137_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_137_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_139_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_139_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_13b_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_13b_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_13d_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_13d_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_13f_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_13f_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_141_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_141_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_143_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_143_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_145_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_145_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_147_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_147_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_149_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_149_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_14b_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_14b_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_14d_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_14d_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_14f_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_14f_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_150_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_150_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_154_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_154_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_15c_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_15c_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_161_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_161_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_163_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_163_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_165_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_165_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_167_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_167_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_169_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_169_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_16b_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_16b_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_16d_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_16d_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_16f_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_16f_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_170_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_170_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_174_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_174_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_17c_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_17c_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_184_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_184_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_18c_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_18c_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_191_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_191_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_193_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_193_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_195_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_195_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_197_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_197_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_199_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_199_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_19b_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_19b_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_19d_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_19d_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_19f_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_19f_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_1a4_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_1a4_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_1ac_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_1ac_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_1b1_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_1b1_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_1b3_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_1b3_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_1b5_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_1b5_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_1b7_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_1b7_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_1b9_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_1b9_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_1bb_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_1bb_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_1bd_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_1bd_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_1bf_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_1bf_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_1c1_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_1c1_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_1c3_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_1c3_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_1c5_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_1c5_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_1c9_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_1c9_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_1cb_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_1cb_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_1d0_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_1d0_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_1d4_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_1d4_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_1dc_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_1dc_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_1e1_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_1e1_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_1e3_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_1e3_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_1e5_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_1e5_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_1e7_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_1e7_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_1e9_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_1e9_states.bin.z -------------------------------------------------------------------------------- /client/hardnested/tables/bitflip_0_1eb_states.bin.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hardnested/tables/bitflip_0_1eb_states.bin.z -------------------------------------------------------------------------------- /client/hid-flasher/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hid-flasher/Info.plist -------------------------------------------------------------------------------- /client/hid-flasher/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hid-flasher/Makefile -------------------------------------------------------------------------------- /client/hid-flasher/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hid-flasher/elf.h -------------------------------------------------------------------------------- /client/hid-flasher/flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hid-flasher/flash.c -------------------------------------------------------------------------------- /client/hid-flasher/flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hid-flasher/flash.h -------------------------------------------------------------------------------- /client/hid-flasher/flasher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hid-flasher/flasher.c -------------------------------------------------------------------------------- /client/hid-flasher/obj/.dummy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/hid-flasher/proxendian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hid-flasher/proxendian.h -------------------------------------------------------------------------------- /client/hid-flasher/proxmark3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hid-flasher/proxmark3.h -------------------------------------------------------------------------------- /client/hid-flasher/proxusb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hid-flasher/proxusb.c -------------------------------------------------------------------------------- /client/hid-flasher/proxusb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hid-flasher/proxusb.h -------------------------------------------------------------------------------- /client/hid-flasher/sleep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hid-flasher/sleep.h -------------------------------------------------------------------------------- /client/hid-flasher/usb_cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hid-flasher/usb_cmd.h -------------------------------------------------------------------------------- /client/hitag2.ht2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/hitag2.ht2 -------------------------------------------------------------------------------- /client/libluamiibo.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/libluamiibo.so -------------------------------------------------------------------------------- /client/loclass/cipher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/loclass/cipher.c -------------------------------------------------------------------------------- /client/loclass/cipher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/loclass/cipher.h -------------------------------------------------------------------------------- /client/loclass/cipherutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/loclass/cipherutils.c -------------------------------------------------------------------------------- /client/loclass/cipherutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/loclass/cipherutils.h -------------------------------------------------------------------------------- /client/loclass/elite_crack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/loclass/elite_crack.c -------------------------------------------------------------------------------- /client/loclass/elite_crack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/loclass/elite_crack.h -------------------------------------------------------------------------------- /client/loclass/fileutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/loclass/fileutils.c -------------------------------------------------------------------------------- /client/loclass/fileutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/loclass/fileutils.h -------------------------------------------------------------------------------- /client/loclass/hash1_brute.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/loclass/hash1_brute.c -------------------------------------------------------------------------------- /client/loclass/hash1_brute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/loclass/hash1_brute.h -------------------------------------------------------------------------------- /client/loclass/iclass_dump.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/loclass/iclass_dump.bin -------------------------------------------------------------------------------- /client/loclass/ikeys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/loclass/ikeys.c -------------------------------------------------------------------------------- /client/loclass/ikeys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/loclass/ikeys.h -------------------------------------------------------------------------------- /client/loclass/loclass information.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/loclass/loclass information.txt -------------------------------------------------------------------------------- /client/loclass/loclass_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/loclass/loclass_main.h -------------------------------------------------------------------------------- /client/loclass/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/loclass/main.c -------------------------------------------------------------------------------- /client/lualibs/7816_error.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/lualibs/7816_error.lua -------------------------------------------------------------------------------- /client/lualibs/amiibolib.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/lualibs/amiibolib.lua -------------------------------------------------------------------------------- /client/lualibs/ansicolors.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/lualibs/ansicolors.lua -------------------------------------------------------------------------------- /client/lualibs/commands.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/lualibs/commands.lua -------------------------------------------------------------------------------- /client/lualibs/default_toys.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/lualibs/default_toys.lua -------------------------------------------------------------------------------- /client/lualibs/default_toys_di.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/lualibs/default_toys_di.lua -------------------------------------------------------------------------------- /client/lualibs/dkjson.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/lualibs/dkjson.lua -------------------------------------------------------------------------------- /client/lualibs/emulator.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/lualibs/emulator.lua -------------------------------------------------------------------------------- /client/lualibs/getopt.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/lualibs/getopt.lua -------------------------------------------------------------------------------- /client/lualibs/hf_reader.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/lualibs/hf_reader.lua -------------------------------------------------------------------------------- /client/lualibs/html_dumplib.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/lualibs/html_dumplib.lua -------------------------------------------------------------------------------- /client/lualibs/htmlskel.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/lualibs/htmlskel.lua -------------------------------------------------------------------------------- /client/lualibs/md5.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/lualibs/md5.lua -------------------------------------------------------------------------------- /client/lualibs/precalc.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/lualibs/precalc.lua -------------------------------------------------------------------------------- /client/lualibs/read14a.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/lualibs/read14a.lua -------------------------------------------------------------------------------- /client/lualibs/read14b.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/lualibs/read14b.lua -------------------------------------------------------------------------------- /client/lualibs/taglib.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/lualibs/taglib.lua -------------------------------------------------------------------------------- /client/lualibs/utils.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/lualibs/utils.lua -------------------------------------------------------------------------------- /client/mfkey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/mfkey.c -------------------------------------------------------------------------------- /client/mfkey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/mfkey.h -------------------------------------------------------------------------------- /client/mifaredefault.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/mifaredefault.h -------------------------------------------------------------------------------- /client/mifarehost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/mifarehost.c -------------------------------------------------------------------------------- /client/mifarehost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/mifarehost.h -------------------------------------------------------------------------------- /client/obj/.dummy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/obj/crapto1/.dummy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/obj/emv/.dummy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/obj/emv/test/.dummy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/obj/hardnested/.dummy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/obj/loclass/.dummy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/obj/nonce2key/.dummy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/obj/polarssl/.dummy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/obj/reveng/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/obj/reveng/.gitignore -------------------------------------------------------------------------------- /client/platforms/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/platforms/.gitignore -------------------------------------------------------------------------------- /client/pm3_binlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/pm3_binlib.c -------------------------------------------------------------------------------- /client/pm3_binlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/pm3_binlib.h -------------------------------------------------------------------------------- /client/pm3_bit_limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/pm3_bit_limits.h -------------------------------------------------------------------------------- /client/pm3_bitlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/pm3_bitlib.c -------------------------------------------------------------------------------- /client/pm3_bitlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/pm3_bitlib.h -------------------------------------------------------------------------------- /client/pm3_eml2mfd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/pm3_eml2mfd.py -------------------------------------------------------------------------------- /client/pm3_eml_mfd_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/pm3_eml_mfd_test.py -------------------------------------------------------------------------------- /client/pm3_mfd2eml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/pm3_mfd2eml.py -------------------------------------------------------------------------------- /client/pm3_mfdread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/pm3_mfdread.py -------------------------------------------------------------------------------- /client/polarssl_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/polarssl_config.h -------------------------------------------------------------------------------- /client/proxendian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/proxendian.h -------------------------------------------------------------------------------- /client/proxgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/proxgui.cpp -------------------------------------------------------------------------------- /client/proxgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/proxgui.h -------------------------------------------------------------------------------- /client/proxguiqt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/proxguiqt.cpp -------------------------------------------------------------------------------- /client/proxguiqt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/proxguiqt.h -------------------------------------------------------------------------------- /client/proxmark3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/proxmark3.c -------------------------------------------------------------------------------- /client/proxmark3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/proxmark3.h -------------------------------------------------------------------------------- /client/reveng/bmpbit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/reveng/bmpbit.c -------------------------------------------------------------------------------- /client/reveng/cli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/reveng/cli.c -------------------------------------------------------------------------------- /client/reveng/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/reveng/config.h -------------------------------------------------------------------------------- /client/reveng/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/reveng/getopt.c -------------------------------------------------------------------------------- /client/reveng/getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/reveng/getopt.h -------------------------------------------------------------------------------- /client/reveng/model.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/reveng/model.c -------------------------------------------------------------------------------- /client/reveng/poly.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/reveng/poly.c -------------------------------------------------------------------------------- /client/reveng/preset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/reveng/preset.c -------------------------------------------------------------------------------- /client/reveng/reveng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/reveng/reveng.c -------------------------------------------------------------------------------- /client/reveng/reveng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/reveng/reveng.h -------------------------------------------------------------------------------- /client/scandir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/scandir.c -------------------------------------------------------------------------------- /client/scandir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/scandir.h -------------------------------------------------------------------------------- /client/scripting.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/scripting.c -------------------------------------------------------------------------------- /client/scripting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/scripting.h -------------------------------------------------------------------------------- /client/scripts/14araw.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/scripts/14araw.lua -------------------------------------------------------------------------------- /client/scripts/Legic_clone.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/scripts/Legic_clone.lua -------------------------------------------------------------------------------- /client/scripts/amiibo.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/scripts/amiibo.lua -------------------------------------------------------------------------------- /client/scripts/brutesim.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/scripts/brutesim.lua -------------------------------------------------------------------------------- /client/scripts/calc_di.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/scripts/calc_di.lua -------------------------------------------------------------------------------- /client/scripts/calc_ev1_it.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/scripts/calc_ev1_it.lua -------------------------------------------------------------------------------- /client/scripts/calc_mizip.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/scripts/calc_mizip.lua -------------------------------------------------------------------------------- /client/scripts/calypso.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/scripts/calypso.lua -------------------------------------------------------------------------------- /client/scripts/cmdline.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/scripts/cmdline.lua -------------------------------------------------------------------------------- /client/scripts/didump.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/scripts/didump.lua -------------------------------------------------------------------------------- /client/scripts/dumptoemul-mfu.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/scripts/dumptoemul-mfu.lua -------------------------------------------------------------------------------- /client/scripts/dumptoemul.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/scripts/dumptoemul.lua -------------------------------------------------------------------------------- /client/scripts/e.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/scripts/e.lua -------------------------------------------------------------------------------- /client/scripts/emul2dump.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/scripts/emul2dump.lua -------------------------------------------------------------------------------- /client/scripts/emul2html.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/scripts/emul2html.lua -------------------------------------------------------------------------------- /client/scripts/formatMifare.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/scripts/formatMifare.lua -------------------------------------------------------------------------------- /client/scripts/hf_read.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/scripts/hf_read.lua -------------------------------------------------------------------------------- /client/scripts/htmldump.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/scripts/htmldump.lua -------------------------------------------------------------------------------- /client/scripts/legic.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/scripts/legic.lua -------------------------------------------------------------------------------- /client/scripts/legic_buffer2card.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/scripts/legic_buffer2card.lua -------------------------------------------------------------------------------- /client/scripts/lf_bulk.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/scripts/lf_bulk.lua -------------------------------------------------------------------------------- /client/scripts/mfkeys.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/scripts/mfkeys.lua -------------------------------------------------------------------------------- /client/scripts/mifare_access.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/scripts/mifare_access.lua -------------------------------------------------------------------------------- /client/scripts/mifare_autopwn.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/scripts/mifare_autopwn.lua -------------------------------------------------------------------------------- /client/scripts/mifareplus.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/scripts/mifareplus.lua -------------------------------------------------------------------------------- /client/scripts/ndef_dump.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/scripts/ndef_dump.lua -------------------------------------------------------------------------------- /client/scripts/ntag_3d.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/scripts/ntag_3d.lua -------------------------------------------------------------------------------- /client/scripts/parameters.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/scripts/parameters.lua -------------------------------------------------------------------------------- /client/scripts/remagic.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/scripts/remagic.lua -------------------------------------------------------------------------------- /client/scripts/test_t55x7_ask.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/scripts/test_t55x7_ask.lua -------------------------------------------------------------------------------- /client/scripts/test_t55x7_bi.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/scripts/test_t55x7_bi.lua -------------------------------------------------------------------------------- /client/scripts/test_t55x7_fsk.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/scripts/test_t55x7_fsk.lua -------------------------------------------------------------------------------- /client/scripts/test_t55x7_psk.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/scripts/test_t55x7_psk.lua -------------------------------------------------------------------------------- /client/scripts/tnp3clone.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/scripts/tnp3clone.lua -------------------------------------------------------------------------------- /client/scripts/tnp3dump.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/scripts/tnp3dump.lua -------------------------------------------------------------------------------- /client/scripts/tnp3sim.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/scripts/tnp3sim.lua -------------------------------------------------------------------------------- /client/scripts/tracetest.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/scripts/tracetest.lua -------------------------------------------------------------------------------- /client/scripts/ufodump.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/scripts/ufodump.lua -------------------------------------------------------------------------------- /client/scripts/ul_uid.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/scripts/ul_uid.lua -------------------------------------------------------------------------------- /client/snooper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/snooper.c -------------------------------------------------------------------------------- /client/ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/ui.c -------------------------------------------------------------------------------- /client/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/ui.h -------------------------------------------------------------------------------- /client/ui/overlays.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/ui/overlays.ui -------------------------------------------------------------------------------- /client/unbind-proxmark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/unbind-proxmark -------------------------------------------------------------------------------- /client/usb_cmd_h2lua.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/usb_cmd_h2lua.awk -------------------------------------------------------------------------------- /client/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/util.c -------------------------------------------------------------------------------- /client/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/util.h -------------------------------------------------------------------------------- /client/util_posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/util_posix.c -------------------------------------------------------------------------------- /client/util_posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/util_posix.h -------------------------------------------------------------------------------- /client/whereami.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/whereami.c -------------------------------------------------------------------------------- /client/whereami.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/client/whereami.h -------------------------------------------------------------------------------- /common/Makefile.common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/common/Makefile.common -------------------------------------------------------------------------------- /common/bucketsort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/common/bucketsort.c -------------------------------------------------------------------------------- /common/bucketsort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/common/bucketsort.h -------------------------------------------------------------------------------- /common/cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/common/cmd.c -------------------------------------------------------------------------------- /common/cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/common/cmd.h -------------------------------------------------------------------------------- /common/crapto1/crapto1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/common/crapto1/crapto1.c -------------------------------------------------------------------------------- /common/crapto1/crapto1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/common/crapto1/crapto1.h -------------------------------------------------------------------------------- /common/crapto1/crypto1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/common/crapto1/crypto1.c -------------------------------------------------------------------------------- /common/crapto1/readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/common/crapto1/readme -------------------------------------------------------------------------------- /common/crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/common/crc.c -------------------------------------------------------------------------------- /common/crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/common/crc.h -------------------------------------------------------------------------------- /common/crc16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/common/crc16.c -------------------------------------------------------------------------------- /common/crc16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/common/crc16.h -------------------------------------------------------------------------------- /common/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/common/crc32.c -------------------------------------------------------------------------------- /common/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/common/crc32.h -------------------------------------------------------------------------------- /common/crc64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/common/crc64.c -------------------------------------------------------------------------------- /common/crc64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/common/crc64.h -------------------------------------------------------------------------------- /common/default_version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/common/default_version.c -------------------------------------------------------------------------------- /common/desfire.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/common/desfire.h -------------------------------------------------------------------------------- /common/emvtags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/common/emvtags.h -------------------------------------------------------------------------------- /common/fpga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/common/fpga.h -------------------------------------------------------------------------------- /common/i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/common/i2c.c -------------------------------------------------------------------------------- /common/i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/common/i2c.h -------------------------------------------------------------------------------- /common/iso14443crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/common/iso14443crc.c -------------------------------------------------------------------------------- /common/iso14443crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/common/iso14443crc.h -------------------------------------------------------------------------------- /common/iso15693tools.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/common/iso15693tools.c -------------------------------------------------------------------------------- /common/iso15693tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/common/iso15693tools.h -------------------------------------------------------------------------------- /common/ldscript.common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/common/ldscript.common -------------------------------------------------------------------------------- /common/legic_prng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/common/legic_prng.c -------------------------------------------------------------------------------- /common/lfdemod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/common/lfdemod.c -------------------------------------------------------------------------------- /common/lfdemod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/common/lfdemod.h -------------------------------------------------------------------------------- /common/parity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/common/parity.c -------------------------------------------------------------------------------- /common/parity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/common/parity.h -------------------------------------------------------------------------------- /common/polarssl/aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/common/polarssl/aes.c -------------------------------------------------------------------------------- /common/polarssl/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/common/polarssl/aes.h -------------------------------------------------------------------------------- /common/polarssl/base64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/common/polarssl/base64.c -------------------------------------------------------------------------------- /common/polarssl/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/common/polarssl/base64.h -------------------------------------------------------------------------------- /common/polarssl/bignum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/common/polarssl/bignum.c -------------------------------------------------------------------------------- /common/polarssl/bignum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/common/polarssl/bignum.h -------------------------------------------------------------------------------- /common/polarssl/bn_mul.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/common/polarssl/bn_mul.h -------------------------------------------------------------------------------- /common/polarssl/des.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/common/polarssl/des.c -------------------------------------------------------------------------------- /common/polarssl/des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/common/polarssl/des.h -------------------------------------------------------------------------------- /common/polarssl/hmac_drbg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/common/polarssl/hmac_drbg.c -------------------------------------------------------------------------------- /common/polarssl/hmac_drbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/common/polarssl/hmac_drbg.h -------------------------------------------------------------------------------- /common/polarssl/polarssl_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/common/polarssl/polarssl_config.h -------------------------------------------------------------------------------- /common/polarssl/rsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/common/polarssl/rsa.c -------------------------------------------------------------------------------- /common/polarssl/rsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/common/polarssl/rsa.h -------------------------------------------------------------------------------- /common/polarssl/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/common/polarssl/sha1.c -------------------------------------------------------------------------------- /common/polarssl/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/common/polarssl/sha1.h -------------------------------------------------------------------------------- /common/polarssl/sha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/common/polarssl/sha256.c -------------------------------------------------------------------------------- /common/polarssl/sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/common/polarssl/sha256.h -------------------------------------------------------------------------------- /common/prng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/common/prng.c -------------------------------------------------------------------------------- /common/prng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/common/prng.h -------------------------------------------------------------------------------- /common/protocols.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/common/protocols.c -------------------------------------------------------------------------------- /common/protocols.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/common/protocols.h -------------------------------------------------------------------------------- /common/radixsort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/common/radixsort.c -------------------------------------------------------------------------------- /common/radixsort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/common/radixsort.h -------------------------------------------------------------------------------- /common/random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/common/random.c -------------------------------------------------------------------------------- /common/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/common/random.h -------------------------------------------------------------------------------- /common/tea.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/common/tea.c -------------------------------------------------------------------------------- /common/tea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/common/tea.h -------------------------------------------------------------------------------- /common/usart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/common/usart.c -------------------------------------------------------------------------------- /common/usart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/common/usart.h -------------------------------------------------------------------------------- /common/usb_cdc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/common/usb_cdc.c -------------------------------------------------------------------------------- /common/usb_cdc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/common/usb_cdc.h -------------------------------------------------------------------------------- /common/wiegand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/common/wiegand.c -------------------------------------------------------------------------------- /common/wiegand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/common/wiegand.h -------------------------------------------------------------------------------- /covbuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/covbuild.sh -------------------------------------------------------------------------------- /covconfig.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/covconfig.sh -------------------------------------------------------------------------------- /doc/Proxmark III - Ubuntu GSG v1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/doc/Proxmark III - Ubuntu GSG v1.pdf -------------------------------------------------------------------------------- /doc/Proxmark III - Windows 7 GSG v1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/doc/Proxmark III - Windows 7 GSG v1.pdf -------------------------------------------------------------------------------- /doc/Proxmark III - Windows XP SP3 GSG v1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/doc/Proxmark III - Windows XP SP3 GSG v1.pdf -------------------------------------------------------------------------------- /doc/RFID_Antenna-Basic-Form.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/doc/RFID_Antenna-Basic-Form.stl -------------------------------------------------------------------------------- /doc/RFID_Antenna-With-Lanyard-Hook.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/doc/RFID_Antenna-With-Lanyard-Hook.stl -------------------------------------------------------------------------------- /doc/proxmark3.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/doc/proxmark3.brd -------------------------------------------------------------------------------- /doc/proxmark3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/doc/proxmark3.pdf -------------------------------------------------------------------------------- /doc/proxmark3.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/doc/proxmark3.sch -------------------------------------------------------------------------------- /doc/proxmark3.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/doc/proxmark3.xls -------------------------------------------------------------------------------- /doc/proxmark3_schema.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/doc/proxmark3_schema.pdf -------------------------------------------------------------------------------- /doc/system.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/doc/system.txt -------------------------------------------------------------------------------- /driver/77-pm3-usb-device-blacklist.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/driver/77-pm3-usb-device-blacklist.rules -------------------------------------------------------------------------------- /driver/proxmark3.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/driver/proxmark3.inf -------------------------------------------------------------------------------- /fpga/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/fpga/Makefile -------------------------------------------------------------------------------- /fpga/clk_divider.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/fpga/clk_divider.v -------------------------------------------------------------------------------- /fpga/fpga.ucf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/fpga/fpga.ucf -------------------------------------------------------------------------------- /fpga/fpga_hf.bit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/fpga/fpga_hf.bit -------------------------------------------------------------------------------- /fpga/fpga_hf.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/fpga/fpga_hf.v -------------------------------------------------------------------------------- /fpga/fpga_lf.bit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/fpga/fpga_lf.bit -------------------------------------------------------------------------------- /fpga/fpga_lf.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/fpga/fpga_lf.v -------------------------------------------------------------------------------- /fpga/go.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/fpga/go.bat -------------------------------------------------------------------------------- /fpga/hi_flite.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/fpga/hi_flite.v -------------------------------------------------------------------------------- /fpga/hi_iso14443a.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/fpga/hi_iso14443a.v -------------------------------------------------------------------------------- /fpga/hi_read_rx_xcorr.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/fpga/hi_read_rx_xcorr.v -------------------------------------------------------------------------------- /fpga/hi_read_tx.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/fpga/hi_read_tx.v -------------------------------------------------------------------------------- /fpga/hi_simulate.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/fpga/hi_simulate.v -------------------------------------------------------------------------------- /fpga/hi_sniffer.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/fpga/hi_sniffer.v -------------------------------------------------------------------------------- /fpga/lf_edge_detect.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/fpga/lf_edge_detect.v -------------------------------------------------------------------------------- /fpga/lo_edge_detect.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/fpga/lo_edge_detect.v -------------------------------------------------------------------------------- /fpga/lo_passthru.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/fpga/lo_passthru.v -------------------------------------------------------------------------------- /fpga/lo_read.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/fpga/lo_read.v -------------------------------------------------------------------------------- /fpga/lo_simulate.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/fpga/lo_simulate.v -------------------------------------------------------------------------------- /fpga/lp20khz_1MSa_iir_filter.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/fpga/lp20khz_1MSa_iir_filter.v -------------------------------------------------------------------------------- /fpga/min_max_tracker.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/fpga/min_max_tracker.v -------------------------------------------------------------------------------- /fpga/sim.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/fpga/sim.tcl -------------------------------------------------------------------------------- /fpga/testbed_fpga.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/fpga/testbed_fpga.v -------------------------------------------------------------------------------- /fpga/testbed_hi_read_tx.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/fpga/testbed_hi_read_tx.v -------------------------------------------------------------------------------- /fpga/testbed_hi_simulate.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/fpga/testbed_hi_simulate.v -------------------------------------------------------------------------------- /fpga/testbed_lo_read.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/fpga/testbed_lo_read.v -------------------------------------------------------------------------------- /fpga/testbed_lo_simulate.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/fpga/testbed_lo_simulate.v -------------------------------------------------------------------------------- /fpga/tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/fpga/tests/Makefile -------------------------------------------------------------------------------- /fpga/tests/plot_edgedetect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/fpga/tests/plot_edgedetect.py -------------------------------------------------------------------------------- /fpga/tests/tb_data/pcf7931_read_1MSA_data.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/fpga/tests/tb_data/pcf7931_read_1MSA_data.in -------------------------------------------------------------------------------- /fpga/tests/tb_data/pcf7931_read_1MSA_data.low.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/fpga/tests/tb_data/pcf7931_read_1MSA_data.low.gold -------------------------------------------------------------------------------- /fpga/tests/tb_data/pcf7931_read_1MSA_data.max.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/fpga/tests/tb_data/pcf7931_read_1MSA_data.max.gold -------------------------------------------------------------------------------- /fpga/tests/tb_data/pcf7931_read_1MSA_data.min.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/fpga/tests/tb_data/pcf7931_read_1MSA_data.min.gold -------------------------------------------------------------------------------- /fpga/tests/tb_data/pcf7931_read_1MSA_data.time: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/fpga/tests/tb_data/pcf7931_read_1MSA_data.time -------------------------------------------------------------------------------- /fpga/tests/tb_data/pcf7931_write1byte_1MSA_data.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/fpga/tests/tb_data/pcf7931_write1byte_1MSA_data.in -------------------------------------------------------------------------------- /fpga/tests/tb_lf_edge_detect.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/fpga/tests/tb_lf_edge_detect.v -------------------------------------------------------------------------------- /fpga/tests/tb_lp20khz_1MSa_iir_filter.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/fpga/tests/tb_lp20khz_1MSa_iir_filter.v -------------------------------------------------------------------------------- /fpga/tests/tb_min_max_tracker.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/fpga/tests/tb_min_max_tracker.v -------------------------------------------------------------------------------- /fpga/util.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/fpga/util.v -------------------------------------------------------------------------------- /fpga/xst_hf.scr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/fpga/xst_hf.scr -------------------------------------------------------------------------------- /fpga/xst_lf.scr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/fpga/xst_lf.scr -------------------------------------------------------------------------------- /fpga/xst_nfc.scr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/fpga/xst_nfc.scr -------------------------------------------------------------------------------- /include/at91sam7s512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/include/at91sam7s512.h -------------------------------------------------------------------------------- /include/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/include/common.h -------------------------------------------------------------------------------- /include/config_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/include/config_gpio.h -------------------------------------------------------------------------------- /include/hitag2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/include/hitag2.h -------------------------------------------------------------------------------- /include/hitagS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/include/hitagS.h -------------------------------------------------------------------------------- /include/legic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/include/legic.h -------------------------------------------------------------------------------- /include/legic_prng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/include/legic_prng.h -------------------------------------------------------------------------------- /include/mifare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/include/mifare.h -------------------------------------------------------------------------------- /include/proxmark3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/include/proxmark3.h -------------------------------------------------------------------------------- /include/usb_cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/include/usb_cmd.h -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/install.sh -------------------------------------------------------------------------------- /liblua/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/liblua/Makefile -------------------------------------------------------------------------------- /liblua/lapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/liblua/lapi.c -------------------------------------------------------------------------------- /liblua/lapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/liblua/lapi.h -------------------------------------------------------------------------------- /liblua/lauxlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/liblua/lauxlib.c -------------------------------------------------------------------------------- /liblua/lauxlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/liblua/lauxlib.h -------------------------------------------------------------------------------- /liblua/lbaselib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/liblua/lbaselib.c -------------------------------------------------------------------------------- /liblua/lbitlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/liblua/lbitlib.c -------------------------------------------------------------------------------- /liblua/lcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/liblua/lcode.c -------------------------------------------------------------------------------- /liblua/lcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/liblua/lcode.h -------------------------------------------------------------------------------- /liblua/lcorolib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/liblua/lcorolib.c -------------------------------------------------------------------------------- /liblua/lctype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/liblua/lctype.c -------------------------------------------------------------------------------- /liblua/lctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/liblua/lctype.h -------------------------------------------------------------------------------- /liblua/ldblib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/liblua/ldblib.c -------------------------------------------------------------------------------- /liblua/ldebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/liblua/ldebug.c -------------------------------------------------------------------------------- /liblua/ldebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/liblua/ldebug.h -------------------------------------------------------------------------------- /liblua/ldo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/liblua/ldo.c -------------------------------------------------------------------------------- /liblua/ldo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/liblua/ldo.h -------------------------------------------------------------------------------- /liblua/ldump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/liblua/ldump.c -------------------------------------------------------------------------------- /liblua/lfunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/liblua/lfunc.c -------------------------------------------------------------------------------- /liblua/lfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/liblua/lfunc.h -------------------------------------------------------------------------------- /liblua/lgc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/liblua/lgc.c -------------------------------------------------------------------------------- /liblua/lgc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/liblua/lgc.h -------------------------------------------------------------------------------- /liblua/linit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/liblua/linit.c -------------------------------------------------------------------------------- /liblua/liolib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/liblua/liolib.c -------------------------------------------------------------------------------- /liblua/llex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/liblua/llex.c -------------------------------------------------------------------------------- /liblua/llex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/liblua/llex.h -------------------------------------------------------------------------------- /liblua/llimits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/liblua/llimits.h -------------------------------------------------------------------------------- /liblua/lmathlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/liblua/lmathlib.c -------------------------------------------------------------------------------- /liblua/lmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/liblua/lmem.c -------------------------------------------------------------------------------- /liblua/lmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/liblua/lmem.h -------------------------------------------------------------------------------- /liblua/loadlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/liblua/loadlib.c -------------------------------------------------------------------------------- /liblua/lobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/liblua/lobject.c -------------------------------------------------------------------------------- /liblua/lobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/liblua/lobject.h -------------------------------------------------------------------------------- /liblua/lopcodes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/liblua/lopcodes.c -------------------------------------------------------------------------------- /liblua/lopcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/liblua/lopcodes.h -------------------------------------------------------------------------------- /liblua/loslib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/liblua/loslib.c -------------------------------------------------------------------------------- /liblua/lparser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/liblua/lparser.c -------------------------------------------------------------------------------- /liblua/lparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/liblua/lparser.h -------------------------------------------------------------------------------- /liblua/lstate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/liblua/lstate.c -------------------------------------------------------------------------------- /liblua/lstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/liblua/lstate.h -------------------------------------------------------------------------------- /liblua/lstring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/liblua/lstring.c -------------------------------------------------------------------------------- /liblua/lstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/liblua/lstring.h -------------------------------------------------------------------------------- /liblua/lstrlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/liblua/lstrlib.c -------------------------------------------------------------------------------- /liblua/ltable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/liblua/ltable.c -------------------------------------------------------------------------------- /liblua/ltable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/liblua/ltable.h -------------------------------------------------------------------------------- /liblua/ltablib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/liblua/ltablib.c -------------------------------------------------------------------------------- /liblua/ltm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/liblua/ltm.c -------------------------------------------------------------------------------- /liblua/ltm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/liblua/ltm.h -------------------------------------------------------------------------------- /liblua/lua.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/liblua/lua.c -------------------------------------------------------------------------------- /liblua/lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/liblua/lua.h -------------------------------------------------------------------------------- /liblua/lua.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/liblua/lua.hpp -------------------------------------------------------------------------------- /liblua/luac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/liblua/luac.c -------------------------------------------------------------------------------- /liblua/luaconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/liblua/luaconf.h -------------------------------------------------------------------------------- /liblua/lualib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/liblua/lualib.h -------------------------------------------------------------------------------- /liblua/lundump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/liblua/lundump.c -------------------------------------------------------------------------------- /liblua/lundump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/liblua/lundump.h -------------------------------------------------------------------------------- /liblua/lvm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/liblua/lvm.c -------------------------------------------------------------------------------- /liblua/lvm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/liblua/lvm.h -------------------------------------------------------------------------------- /liblua/lzio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/liblua/lzio.c -------------------------------------------------------------------------------- /liblua/lzio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/liblua/lzio.h -------------------------------------------------------------------------------- /proxmark3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/proxmark3.sh -------------------------------------------------------------------------------- /rdv40.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /recovery/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/recovery/Makefile -------------------------------------------------------------------------------- /tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/tools/Makefile -------------------------------------------------------------------------------- /tools/at91sam7s256-armusbocd-flash-program.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/tools/at91sam7s256-armusbocd-flash-program.cfg -------------------------------------------------------------------------------- /tools/at91sam7s256-armusbocd.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/tools/at91sam7s256-armusbocd.cfg -------------------------------------------------------------------------------- /tools/at91sam7s256-jtagkey.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/tools/at91sam7s256-jtagkey.cfg -------------------------------------------------------------------------------- /tools/at91sam7s256-wiggler.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/tools/at91sam7s256-wiggler.cfg -------------------------------------------------------------------------------- /tools/at91sam7s512-busblaster.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/tools/at91sam7s512-busblaster.cfg -------------------------------------------------------------------------------- /tools/at91sam7s512-buspirate.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/tools/at91sam7s512-buspirate.cfg -------------------------------------------------------------------------------- /tools/at91sam7s512-jtagkey.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/tools/at91sam7s512-jtagkey.cfg -------------------------------------------------------------------------------- /tools/findbits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/tools/findbits.py -------------------------------------------------------------------------------- /tools/findbits_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/tools/findbits_test.py -------------------------------------------------------------------------------- /tools/install-gnuarm4.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/tools/install-gnuarm4.sh -------------------------------------------------------------------------------- /tools/mfkey/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/tools/mfkey/.gitignore -------------------------------------------------------------------------------- /tools/mfkey/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/tools/mfkey/Makefile -------------------------------------------------------------------------------- /tools/mfkey/crapto1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/tools/mfkey/crapto1.c -------------------------------------------------------------------------------- /tools/mfkey/crapto1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/tools/mfkey/crapto1.h -------------------------------------------------------------------------------- /tools/mfkey/crypto1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/tools/mfkey/crypto1.c -------------------------------------------------------------------------------- /tools/mfkey/example_trace.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/tools/mfkey/example_trace.txt -------------------------------------------------------------------------------- /tools/mfkey/mfkey32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/tools/mfkey/mfkey32.c -------------------------------------------------------------------------------- /tools/mfkey/mfkey32v2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/tools/mfkey/mfkey32v2.c -------------------------------------------------------------------------------- /tools/mfkey/mfkey64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/tools/mfkey/mfkey64.c -------------------------------------------------------------------------------- /tools/mkversion.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/tools/mkversion.pl -------------------------------------------------------------------------------- /tools/nonce2key/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/tools/nonce2key/Makefile -------------------------------------------------------------------------------- /tools/nonce2key/crapto1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/tools/nonce2key/crapto1.c -------------------------------------------------------------------------------- /tools/nonce2key/crapto1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/tools/nonce2key/crapto1.h -------------------------------------------------------------------------------- /tools/nonce2key/crypto1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/tools/nonce2key/crypto1.c -------------------------------------------------------------------------------- /tools/nonce2key/nonce2key.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/tools/nonce2key/nonce2key.c -------------------------------------------------------------------------------- /tools/nonce2key/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/tools/nonce2key/readme.txt -------------------------------------------------------------------------------- /tools/rfidtest.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/tools/rfidtest.pl -------------------------------------------------------------------------------- /tools/srecswap.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/tools/srecswap.pl -------------------------------------------------------------------------------- /tools/xorcheck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/tools/xorcheck.py -------------------------------------------------------------------------------- /traces/ATA5577-HIDemu-FC1-C9.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/traces/ATA5577-HIDemu-FC1-C9.pm3 -------------------------------------------------------------------------------- /traces/AWID-15-259.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/traces/AWID-15-259.pm3 -------------------------------------------------------------------------------- /traces/Casi-12ed825c29.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/traces/Casi-12ed825c29.pm3 -------------------------------------------------------------------------------- /traces/EM4102-1.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/traces/EM4102-1.pm3 -------------------------------------------------------------------------------- /traces/EM4102-2.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/traces/EM4102-2.pm3 -------------------------------------------------------------------------------- /traces/EM4102-3.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/traces/EM4102-3.pm3 -------------------------------------------------------------------------------- /traces/EM4102-Fob.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/traces/EM4102-Fob.pm3 -------------------------------------------------------------------------------- /traces/EMV/mastercardtags.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/traces/EMV/mastercardtags.txt -------------------------------------------------------------------------------- /traces/EMV/testcard.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/traces/EMV/testcard.txt -------------------------------------------------------------------------------- /traces/EMV/visaCVN17.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/traces/EMV/visaCVN17.txt -------------------------------------------------------------------------------- /traces/EMV/visaDCVV.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/traces/EMV/visaDCVV.txt -------------------------------------------------------------------------------- /traces/EMV/visaEMV.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/traces/EMV/visaEMV.txt -------------------------------------------------------------------------------- /traces/EMV/visaFDDA.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/traces/EMV/visaFDDA.txt -------------------------------------------------------------------------------- /traces/EMV/visatags.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/traces/EMV/visatags.txt -------------------------------------------------------------------------------- /traces/HID-weak-fob-11647.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/traces/HID-weak-fob-11647.pm3 -------------------------------------------------------------------------------- /traces/Paradox-96_40426-APJN08.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/traces/Paradox-96_40426-APJN08.pm3 -------------------------------------------------------------------------------- /traces/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/traces/README.txt -------------------------------------------------------------------------------- /traces/TITEST.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/traces/TITEST.TXT -------------------------------------------------------------------------------- /traces/Transit999-best.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/traces/Transit999-best.pm3 -------------------------------------------------------------------------------- /traces/em4102-clamshell.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/traces/em4102-clamshell.pm3 -------------------------------------------------------------------------------- /traces/em4102-thin.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/traces/em4102-thin.pm3 -------------------------------------------------------------------------------- /traces/em4x05.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/traces/em4x05.pm3 -------------------------------------------------------------------------------- /traces/em4x50.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/traces/em4x50.pm3 -------------------------------------------------------------------------------- /traces/hid-proxCardII-05512-11432784-1.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/traces/hid-proxCardII-05512-11432784-1.pm3 -------------------------------------------------------------------------------- /traces/homeagain.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/traces/homeagain.pm3 -------------------------------------------------------------------------------- /traces/homeagain1600.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/traces/homeagain1600.pm3 -------------------------------------------------------------------------------- /traces/indala-00002-12345678-1A.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/traces/indala-00002-12345678-1A.pm3 -------------------------------------------------------------------------------- /traces/indala-504278295.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/traces/indala-504278295.pm3 -------------------------------------------------------------------------------- /traces/ioProx-XSF-01-BE-03011.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/traces/ioProx-XSF-01-BE-03011.pm3 -------------------------------------------------------------------------------- /traces/ioprox-XSF-01-3B-44725.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/traces/ioprox-XSF-01-3B-44725.pm3 -------------------------------------------------------------------------------- /traces/keri.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/traces/keri.pm3 -------------------------------------------------------------------------------- /traces/modulation-ask-biph-50.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/traces/modulation-ask-biph-50.pm3 -------------------------------------------------------------------------------- /traces/modulation-ask-man-100.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/traces/modulation-ask-man-100.pm3 -------------------------------------------------------------------------------- /traces/modulation-ask-man-128.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/traces/modulation-ask-man-128.pm3 -------------------------------------------------------------------------------- /traces/modulation-ask-man-16.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/traces/modulation-ask-man-16.pm3 -------------------------------------------------------------------------------- /traces/modulation-ask-man-32.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/traces/modulation-ask-man-32.pm3 -------------------------------------------------------------------------------- /traces/modulation-ask-man-40.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/traces/modulation-ask-man-40.pm3 -------------------------------------------------------------------------------- /traces/modulation-ask-man-8.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/traces/modulation-ask-man-8.pm3 -------------------------------------------------------------------------------- /traces/modulation-biphase.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/traces/modulation-biphase.pm3 -------------------------------------------------------------------------------- /traces/modulation-data.dat: -------------------------------------------------------------------------------- 1 |  2 | -------------------------------------------------------------------------------- /traces/modulation-direct-32.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/traces/modulation-direct-32.pm3 -------------------------------------------------------------------------------- /traces/modulation-direct-40.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/traces/modulation-direct-40.pm3 -------------------------------------------------------------------------------- /traces/modulation-direct-50.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/traces/modulation-direct-50.pm3 -------------------------------------------------------------------------------- /traces/modulation-fsk1-50.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/traces/modulation-fsk1-50.pm3 -------------------------------------------------------------------------------- /traces/modulation-fsk1.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/traces/modulation-fsk1.pm3 -------------------------------------------------------------------------------- /traces/modulation-fsk1a-50.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/traces/modulation-fsk1a-50.pm3 -------------------------------------------------------------------------------- /traces/modulation-fsk2-50.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/traces/modulation-fsk2-50.pm3 -------------------------------------------------------------------------------- /traces/modulation-fsk2.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/traces/modulation-fsk2.pm3 -------------------------------------------------------------------------------- /traces/modulation-fsk2a-40.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/traces/modulation-fsk2a-40.pm3 -------------------------------------------------------------------------------- /traces/modulation-fsk2a-50.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/traces/modulation-fsk2a-50.pm3 -------------------------------------------------------------------------------- /traces/modulation-manchester.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/traces/modulation-manchester.pm3 -------------------------------------------------------------------------------- /traces/modulation-nrz.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/traces/modulation-nrz.pm3 -------------------------------------------------------------------------------- /traces/modulation-psk1-32-4.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/traces/modulation-psk1-32-4.pm3 -------------------------------------------------------------------------------- /traces/modulation-psk1-64-8.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/traces/modulation-psk1-64-8.pm3 -------------------------------------------------------------------------------- /traces/modulation-psk1.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/traces/modulation-psk1.pm3 -------------------------------------------------------------------------------- /traces/modulation-psk2-32-2.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/traces/modulation-psk2-32-2.pm3 -------------------------------------------------------------------------------- /traces/modulation-psk2.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/traces/modulation-psk2.pm3 -------------------------------------------------------------------------------- /traces/modulation-psk3-32-8.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/traces/modulation-psk3-32-8.pm3 -------------------------------------------------------------------------------- /traces/modulation-psk3.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/traces/modulation-psk3.pm3 -------------------------------------------------------------------------------- /traces/quadrakey-521512301.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/traces/quadrakey-521512301.pm3 -------------------------------------------------------------------------------- /traces/securakey-64169.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/traces/securakey-64169.pm3 -------------------------------------------------------------------------------- /traces/visa2000.pm3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/traces/visa2000.pm3 -------------------------------------------------------------------------------- /uart/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/uart/README.md -------------------------------------------------------------------------------- /uart/uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/uart/uart.h -------------------------------------------------------------------------------- /uart/uart_posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/uart/uart_posix.c -------------------------------------------------------------------------------- /uart/uart_win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/uart/uart_win32.c -------------------------------------------------------------------------------- /update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/update.sh -------------------------------------------------------------------------------- /zlib/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/zlib/ChangeLog -------------------------------------------------------------------------------- /zlib/FAQ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/zlib/FAQ -------------------------------------------------------------------------------- /zlib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/zlib/README -------------------------------------------------------------------------------- /zlib/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/zlib/adler32.c -------------------------------------------------------------------------------- /zlib/deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/zlib/deflate.c -------------------------------------------------------------------------------- /zlib/deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/zlib/deflate.h -------------------------------------------------------------------------------- /zlib/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/zlib/inffast.c -------------------------------------------------------------------------------- /zlib/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/zlib/inffast.h -------------------------------------------------------------------------------- /zlib/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/zlib/inffixed.h -------------------------------------------------------------------------------- /zlib/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/zlib/inflate.c -------------------------------------------------------------------------------- /zlib/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/zlib/inflate.h -------------------------------------------------------------------------------- /zlib/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/zlib/inftrees.c -------------------------------------------------------------------------------- /zlib/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/zlib/inftrees.h -------------------------------------------------------------------------------- /zlib/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/zlib/trees.c -------------------------------------------------------------------------------- /zlib/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/zlib/trees.h -------------------------------------------------------------------------------- /zlib/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/zlib/zconf.h -------------------------------------------------------------------------------- /zlib/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/zlib/zlib.h -------------------------------------------------------------------------------- /zlib/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/zlib/zutil.c -------------------------------------------------------------------------------- /zlib/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceman1001/proxmark3-1/HEAD/zlib/zutil.h --------------------------------------------------------------------------------