mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-11-11 08:40:38 +08:00
Author: jareckib - created 02.02.2025
version v1.00
A simple script for searching the password for T5577. The script creates a
dictionary starting from the entered starting year to the entered ending year.
There are two search methods - DDMMYYYY or YYYYMMDD. Checking the entire year
takes about 1 minute and 50 seconds. Date from 1900 to 2100. The script may be
useful if the password is, for example, a date of birth.
Usage:
script run t55_chk [-s start_year] [-e end_year] [-d | -y]
Options:
-h Show this help message
-s Starting year (required)
-e Ending year (default: current year)
-d Search method: DDMMYYYY
-y Search method: YYYYMMDD
Examples:
script run t55_chk -s 1999 -d - start from 1999, end year is current year, method 01011999
script run t55_chk -s 1999 -y - start from 1999, end year is current year, method 19990101
script run t55_chk -s 1999 -e 2001 -y - start from 1999, end year 2001, method 19990101
script run t55_chk -s 1999 -e 2001 -d - start from 1999, end year 2001, method 01011999
Signed-off-by: Jarek Barwinski <116510448+jareckib@users.noreply.github.com>
|
||
|---|---|---|
| .. | ||
| examples | ||
| tests | ||
| data_hex_crc.lua | ||
| data_mf_accessdecode.lua | ||
| data_mf_bin2eml.lua | ||
| data_mf_bin2html.lua | ||
| data_mf_eml2bin.lua | ||
| data_mf_eml2html.lua | ||
| data_mfu_bin2eml.lua | ||
| hf_14a_aztek.lua | ||
| hf_14a_i2crevive.lua | ||
| hf_14a_protectimus_nfc.lua | ||
| hf_14a_raw.lua | ||
| hf_14a_read_ltocm.lua | ||
| hf_14b_calypso.lua | ||
| hf_14b_mobib.lua | ||
| hf_15_magic.lua | ||
| hf_i2c_plus_2k_utils.lua | ||
| hf_legic.lua | ||
| hf_legic_buffer2card.lua | ||
| hf_legic_clone.lua | ||
| hf_mf_autopwn.lua | ||
| hf_mf_dump_luxeo.lua | ||
| hf_mf_em_util.lua | ||
| hf_mf_format.lua | ||
| hf_mf_gen3_writer.lua | ||
| hf_mf_keycheck.lua | ||
| hf_mf_magicrevive.lua | ||
| hf_mf_mini_dumpdecrypt.lua | ||
| hf_mf_sim_hid.lua | ||
| hf_mf_tnp3_clone.lua | ||
| hf_mf_tnp3_dump.lua | ||
| hf_mf_tnp3_sim.lua | ||
| hf_mf_uid_downgrade.lua | ||
| hf_mf_uidbruteforce.lua | ||
| hf_mf_uidkeycalc.lua | ||
| hf_mf_uidkeycalc_mizip.lua | ||
| hf_mf_ultimatecard.lua | ||
| hf_mf_uscuid_prog.lua | ||
| hf_mfp_raw.lua | ||
| hf_mfu_amiibo_restore.lua | ||
| hf_mfu_amiibo_sim.lua | ||
| hf_mfu_magicwrite.lua | ||
| hf_mfu_pwdgen_italy.lua | ||
| hf_mfu_setuid.lua | ||
| hf_ndef_dump.lua | ||
| hf_ntag_3d.lua | ||
| hf_ntag_bruteforce.lua | ||
| hf_ntag_dt.lua | ||
| init_rdv4.lua | ||
| lf_awid_bulkclone.lua | ||
| lf_electra.lua | ||
| lf_em4100_bulk.lua | ||
| lf_em_tearoff.lua | ||
| lf_em_tearoff_protect.lua | ||
| lf_hid_bulkclone.lua | ||
| lf_hid_bulkclone_v2.lua | ||
| lf_ident_json.lua | ||
| lf_ioprox_bulkclone.lua | ||
| lf_t55xx_reset.lua | ||
| mem_readpwd.lua | ||
| mem_spiffs_readpwd.lua | ||
| mfc_hammerlite.lua | ||
| multi_bruteforce.lua | ||
| ntag_getsig.lua | ||
| ntag_hammertime.lua | ||
| Paxton_clone.lua | ||
| t55_chk.lua | ||
| t55_chk_date.lua | ||