| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| source | 2025-10-11 | ||
| binary | 2025-10-11 | ||
| readme.txt | 2025-10-15 | 10.8 kB | |
| Totals: 3 Items | 10.8 kB | 4 |
seed_tag v5 (2025-10-15):
! three hash512
!! range position of wrods in bip39 from 0 to 2047
first word have position 0 (zero)
if you put numbers on «dog tag» (or steel plate) please remember this
hash_NUMBER=HASH512(NUMBER)
hash_PASSWORD=HASH512(PASSWORD)
hash_EMAIL=HASH512(EMAIL)
(fake word) = (original word) XOR (three letters of hash_NUMBER) XOR (three letters of hash_PASSWORD) XOR (three letters of hash_EMAIL)
!warning! in «verion 5» word positions in bip39 have range from 0 to 2047 !
=====================================
how it works (in the program, this process occurs automatically,
but the entire packaging/unpacking process can be reproduced manually,
this will require a hash512 calculation site from a string and a calculator in programmer mode):
####################################################
short description of version 5 here:
1. for example three keys
Number = 123456
Password = password
Email = email@server
2. get hash512 of key strings
num = hash512(Number) = hash512(123456)
psw = hash512(Password) = hash512(password)
eml = hash512(Email) = hash512(email@server)
num = ba3253876aed6bc22d4a6ff53d8406c6ad864195ed144ab5c87621b6c233b548baeae6956df346ec8c17f5ea10f35ee3cbc514797ed7ddd3145464e2a0bab413
psw = b109f3bbbc244eb82441917ed06d618b9008dd09b3befd1b5e07394c706a8bb980b1d7785e5976ec049b46df5f1326af5a2ea6d103fd07c95385ffab0cacbc86
eml = 5c10c2f652d803d4bfa82632152bd929526c4b718fca97a49a4ad99c5b1595ddb32d771203089dd41d356ddaa1751f588cdc313012e4485702c75b4b059d5e87
!note! you can use online service like https://sha512.online/
in linux terminal you can use command like
echo -n 123456 | sha512sum
echo -n password | sha512sum
echo -n email@server | sha512sum
or
echo -n '123456' | sha512sum
echo -n 'password' | sha512sum
echo -n 'email@server' | sha512sum
3. Generate fake seed
3.1 For each word of the seed phrase, three characters from each hash512 are taken.
words: 1 2 3 …
num = ba3 253 876 aed6bc22d4a6ff53d8406c6ad864195ed144ab5c87621b6c233b548baeae6956df346ec8c17f5ea10f35ee3cbc514797ed7ddd3145464e2a0bab413
psw = b10 9f3 bbb c244eb82441917ed06d618b9008dd09b3befd1b5e07394c706a8bb980b1d7785e5976ec049b46df5f1326af5a2ea6d103fd07c95385ffab0cacbc86
eml = 5c1 0c2 f65 2d803d4bfa82632152bd929526c4b718fca97a49a4ad99c5b1595ddb32d771203089dd41d356ddaa1751f588cdc313012e4485702c75b4b059d5e87
3.2 Then the hex value of these three characters (for each hash) is converted to a number,
which is truncated by the mask 0x7ff (this number corresponds to the size of the bip39 dictionary)
Number: ba3 253 876 …
0xba3 0x253 0x876 …
AND AND AND
0x7ff 0x7ff 0x7ff
————— ————— —————
0x3a3 0x253 0x076
Password: b10 9f3 bbb …
0xb10 0x9f3 0xbbb …
AND AND AND
0x7ff 0x7ff 0x7ff
————— ————— —————
0x310 0x1f3 0x3bb
Email: 5c1 0c2 f65 …
0x5c1 0x0c2 0xf65 …
AND AND AND
0x7ff 0x7ff 0x7ff
————— ————— —————
0x5c1 0x0c2 0x765
3.3 For each word of seed-phrase, a number is taken, the number of the word's position in the bip39 dictionary.
! note: range from 0 to 2047
abandon ability able about above absent
0 1 2 3 4 5
absorb abstract absurd abuse access accident
6 7 8 9 10 11
account accuse achieve acid acoustic acquire
12 13 14 15 16 17
across act action actor actress actual
18 19 20 21 22 23
3.4 Using the XOR bit operation, the word number is added to the number
obtained from the three letters hash512 and the resulting value
(which is located within the bip39 dictionary) is the word number of the fake seed phrase,
each word of which is truncated to 4 letters
0x3a3 0x253 0x076 … // Number convert hex to decimal:
(931) (595) (118) // decimal
XOR XOR XOR
0x310 0x1f3 0x3bb … // Password convert hex to decimal:
(784) (499) (955) // decimal
XOR XOR XOR
0x5c1 0x0c2 0x765 … // Email convert to decimal:
(1473) (194) (1893) // decimal
XOR XOR XOR
0 1 2 … // Num position in bip39 word original phrase
// decimal
————— ————— —————
1394 867 1194 … // decimal, number of position in bip39 fake word
puri hock next … // fake word
4. If you need to get the original seed phrase,
then you need to enter the words (or numbers of their positions
in bip39 dictionary) of the fake seed phrase,
as well as the number, password, and email address (the same ones
that were used to create the fake seed phrase)
and click the "Unpack packed seed" button
all fake words:
puri hock next liqu evid stoo elec blin vacu fing sist wood puri roma scre abse boun key sort clou feel near unus tack
all pos fake words:
1394 0867 1194 1042 0622 1715 0571 0190 1924 0695 1612 2025 1394 1500 1548 0005 0211 0976 1660 0351 0678 1180 1906 1768
http://calc.penjee.com/?s=CKCVCAJVEMAVAk
raw data
BA3253876AED6BC22D4A6FF53D8406C6AD864195ED144AB5C87621B6C233B548BAEAE6956DF346EC8C17F5EA10F35EE3CBC514797ED7DDD3145464E2A0BAB413
B109F3BBBC244EB82441917ED06D618B9008DD09B3BEFD1B5E07394C706A8BB980B1D7785E5976EC049B46DF5F1326AF5A2EA6D103FD07C95385FFAB0CACBC86
5C10C2F652D803D4BFA82632152BD929526C4B718FCA97A49A4AD99C5B1595DDB32D771203089DD41D356DDAA1751F588CDC313012E4485702C75B4B059D5E87
word pos 1
BA3 B10 5C1
and and and
7FF 7FF 7FF
--- --- ---
3A3 310 5C1
___________
fake word 1394 = 0x000 xor 0x3A3 xor 0x310 xor 0x5C1 // hex
fake word: 1394 = 0 xor 931 xor 784 xor 1473 // dec
fake word: puri
word pos 2
253 9F3 0C2
and and and
7FF 7FF 7FF
--- --- ---
253 1F3 0C2
___________
fake word 867 = 0x001 xor 0x253 xor 0x1F3 xor 0x0C2
fake word: 867 = 1 xor 595 xor 499 xor 194
fake word: hock
word pos 3
876 BBB F65
and and and
7FF 7FF 7FF
--- --- ---
076 3BB 765
___________
fake word 1194 = 0x002 xor 0x076 xor 0x3BB xor 0x765
fake word: 1194 = 2 xor 118 xor 955 xor 1893
fake word: next
word pos 4
AED C24 2D8
and and and
7FF 7FF 7FF
--- --- ---
2ED 424 2D8
___________
fake word 1042 = 0x003 xor 0x2ED xor 0x424 xor 0x2D8
fake word: 1042 = 3 xor 749 xor 1060 xor 728
fake word: liqu
word pos 5
6BC 4EB 03D
and and and
7FF 7FF 7FF
--- --- ---
6BC 4EB 03D
___________
fake word 622 = 0x004 xor 0x6BC xor 0x4EB xor 0x03D
fake word: 622 = 4 xor 1724 xor 1259 xor 61
fake word: evid
word pos 6
22D 824 4BF
and and and
7FF 7FF 7FF
--- --- ---
22D 024 4BF
___________
fake word 1715 = 0x005 xor 0x22D xor 0x024 xor 0x4BF
fake word: 1715 = 5 xor 557 xor 36 xor 1215
fake word: stoo
word pos 7
4A6 419 A82
and and and
7FF 7FF 7FF
--- --- ---
4A6 419 282
___________
fake word 571 = 0x006 xor 0x4A6 xor 0x419 xor 0x282
fake word: 571 = 6 xor 1190 xor 1049 xor 642
fake word: elec
word pos 8
FF5 17E 632
and and and
7FF 7FF 7FF
--- --- ---
7F5 17E 632
___________
fake word 190 = 0x007 xor 0x7F5 xor 0x17E xor 0x632
fake word: 190 = 7 xor 2037 xor 382 xor 1586
fake word: blin
word pos 9
3D8 D06 152
and and and
7FF 7FF 7FF
--- --- ---
3D8 506 152
___________
fake word 1924 = 0x008 xor 0x3D8 xor 0x506 xor 0x152
fake word: 1924 = 8 xor 984 xor 1286 xor 338
fake word: vacu
word pos 10
406 D61 BD9
and and and
7FF 7FF 7FF
--- --- ---
406 561 3D9
___________
fake word 695 = 0x009 xor 0x406 xor 0x561 xor 0x3D9
fake word: 695 = 9 xor 1030 xor 1377 xor 985
fake word: fing
word pos 11
C6A 8B9 295
and and and
7FF 7FF 7FF
--- --- ---
46A 0B9 295
___________
fake word 1612 = 0x00A xor 0x46A xor 0x0B9 xor 0x295
fake word: 1612 = 10 xor 1130 xor 185 xor 661
fake word: sist
word pos 12
D86 008 26C
and and and
7FF 7FF 7FF
--- --- ---
586 008 26C
___________
fake word 2025 = 0x00B xor 0x586 xor 0x008 xor 0x26C
fake word: 2025 = 11 xor 1414 xor 8 xor 620
fake word: wood
word pos 13
419 DD0 4B7
and and and
7FF 7FF 7FF
--- --- ---
419 5D0 4B7
___________
fake word 1394 = 0x00C xor 0x419 xor 0x5D0 xor 0x4B7
fake word: 1394 = 12 xor 1049 xor 1488 xor 1207
fake word: puri
word pos 14
5ED 9B3 18F
and and and
7FF 7FF 7FF
--- --- ---
5ED 1B3 18F
___________
fake word 1500 = 0x00D xor 0x5ED xor 0x1B3 xor 0x18F
fake word: 1500 = 13 xor 1517 xor 435 xor 399
fake word: roma
word pos 15
144 BEF CA9
and and and
7FF 7FF 7FF
--- --- ---
144 3EF 4A9
___________
fake word 1548 = 0x00E xor 0x144 xor 0x3EF xor 0x4A9
fake word: 1548 = 14 xor 324 xor 1007 xor 1193
fake word: scre
word pos 16
AB5 D1B 7A4
and and and
7FF 7FF 7FF
--- --- ---
2B5 51B 7A4
___________
fake word 5 = 0x00F xor 0x2B5 xor 0x51B xor 0x7A4
fake word: 5 = 15 xor 693 xor 1307 xor 1956
fake word: abse
word pos 17
C87 5E0 9A4
and and and
7FF 7FF 7FF
--- --- ---
487 5E0 1A4
___________
fake word 211 = 0x010 xor 0x487 xor 0x5E0 xor 0x1A4
fake word: 211 = 16 xor 1159 xor 1504 xor 420
fake word: boun
word pos 18
621 739 AD9
and and and
7FF 7FF 7FF
--- --- ---
621 739 2D9
___________
fake word 976 = 0x011 xor 0x621 xor 0x739 xor 0x2D9
fake word: 976 = 17 xor 1569 xor 1849 xor 729
fake word: key
word pos 19
B6C 4C7 9C5
and and and
7FF 7FF 7FF
--- --- ---
36C 4C7 1C5
___________
fake word 1660 = 0x012 xor 0x36C xor 0x4C7 xor 0x1C5
fake word: 1660 = 18 xor 876 xor 1223 xor 453
fake word: sort
word pos 20
233 06A B15
and and and
7FF 7FF 7FF
--- --- ---
233 06A 315
___________
fake word 351 = 0x013 xor 0x233 xor 0x06A xor 0x315
fake word: 351 = 19 xor 563 xor 106 xor 789
fake word: clou
word pos 21
B54 8BB 95D
and and and
7FF 7FF 7FF
--- --- ---
354 0BB 15D
___________
fake word 678 = 0x014 xor 0x354 xor 0x0BB xor 0x15D
fake word: 678 = 20 xor 852 xor 187 xor 349
fake word: feel
word pos 22
8BA 980 DB3
and and and
7FF 7FF 7FF
--- --- ---
0BA 180 5B3
___________
fake word 1180 = 0x015 xor 0x0BA xor 0x180 xor 0x5B3
fake word: 1180 = 21 xor 186 xor 384 xor 1459
fake word: near
word pos 23
EAE B1D 2D7
and and and
7FF 7FF 7FF
--- --- ---
6AE 31D 2D7
___________
fake word 1906 = 0x016 xor 0x6AE xor 0x31D xor 0x2D7
fake word: 1906 = 22 xor 1710 xor 797 xor 727
fake word: unus
word pos 24
695 778 712
and and and
7FF 7FF 7FF
--- --- ---
695 778 712
___________
fake word 1768 = 0x017 xor 0x695 xor 0x778 xor 0x712
fake word: 1768 = 23 xor 1685 xor 1912 xor 1810
fake word: tack
—————————————————————