Research, development and trades concerning the powerful Proxmark3 device.
Remember; sharing is caring. Bring something back to the community.
"Learn the tools of the trade the hard way." +Fravia
You are not logged in.
Time changes and with it the technology
Proxmark3 @ discord
Users of this forum, please be aware that information stored on this site is not private.
Hello
So basically I was trying to make a dictionary to crack any card.
I wrote this script on python
from itertools import combinations
allCharacters = ["a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k",
"l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y",
"z", "1", "2", "3", "4", "5", "6", "7", "8", "9"]temp = combinations(allCharacters, 12)
count = 0
with open('fuckingDictionary.txt', 'w') as f:
for x in list(temp):
# print(x)
temporal = str(''.join(x))
f.write(temporal + temporal + "\n")
count += 1
if count == 1000000:
break
but it give memory error.
And when I make it smaller it can be worked with the proxmark.
Any idea on how to crack?
I am also looking forward to cracking, appart from mifare classic 1k, mifare desfire 4k.
Thanks
Offline
do you understand what is inside a dictionary file ?
Offline
Yes, as I understand the file termination is not .txt, is .dic (or at least that it is with the GUI software, I haven't tested with the new command line updated one, the dictionary stuff), and it is about a combination of numbers and letters, with 12 character length. And when reading the memory it tries every key of the dictionary until there is a successful one.
Offline
so the answer no. You don't understand.
Offline
Okay bro, I will be investigating too.
But I extracted all this from an old tutorial https://vimeo.com/133409169
Thanks
Offline