mirror of
https://github.com/Proxmark/proxmark3.git
synced 2025-08-22 06:13:27 -07:00
Fixed bruteforce password array
This commit is contained in:
parent
230cfa8cc7
commit
eeb687399e
1 changed files with 2 additions and 2 deletions
|
@ -402,8 +402,8 @@ void BruteForcePCF7931(uint64_t password, uint8_t tries, uint16_t init_delay, in
|
||||||
pass_array[2] = (password >> 16) & 0xFF;
|
pass_array[2] = (password >> 16) & 0xFF;
|
||||||
pass_array[3] = (password >> 24) & 0xFF;
|
pass_array[3] = (password >> 24) & 0xFF;
|
||||||
pass_array[4] = (password >> 32) & 0xFF;
|
pass_array[4] = (password >> 32) & 0xFF;
|
||||||
pass_array[5] = (password >> 48) & 0xFF;
|
pass_array[5] = (password >> 40) & 0xFF;
|
||||||
pass_array[6] = (password >> 56) & 0xFF;
|
pass_array[6] = (password >> 48) & 0xFF;
|
||||||
|
|
||||||
Dbprintf("Trying: %02x %02x %02x %02x %02x %02x %02x ...",
|
Dbprintf("Trying: %02x %02x %02x %02x %02x %02x %02x ...",
|
||||||
pass_array[0],
|
pass_array[0],
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue