Revert "ofw pr 4316 MIFARE Plus 2K Cards in SL1 Mode"

This reverts commit 647e65cfae.
This commit is contained in:
MX
2025-12-16 17:40:56 +03:00
parent c6cdaccc87
commit 7be5ea8a00
29 changed files with 36 additions and 74 deletions

View File

@@ -59,7 +59,7 @@ NfcCommand nfc_dict_attack_worker_callback(NfcGenericEvent event, void* context)
mfc_event->data->poller_mode.data = mfc_data;
instance->nfc_dict_context.sectors_total =
mf_classic_get_scannable_sectors_num(mfc_data->type);
mf_classic_get_total_sectors_num(mfc_data->type);
mf_classic_get_read_sectors_and_keys(
mfc_data,
&instance->nfc_dict_context.sectors_read,

View File

@@ -23,7 +23,7 @@ void nfc_scene_mf_classic_show_keys_on_enter(void* context) {
furi_string_cat_printf(instance->text_box_store, "\e#Found MFC Keys:");
uint8_t num_sectors = mf_classic_get_scannable_sectors_num(mfc_data->type);
uint8_t num_sectors = mf_classic_get_total_sectors_num(mfc_data->type);
uint8_t found_keys_a = 0, found_keys_b = 0;
for(uint8_t i = 0; i < num_sectors; i++) {
MfClassicSectorTrailer* sec_tr = mf_classic_get_sector_trailer_by_sector(mfc_data, i);