MD5 Code? (1 Viewer)

Neily0_0

New member
Local time
Today, 18:56
Joined
Mar 27, 2021
Messages
1
I am more than new to this. I do Geocaching and have a puzzle to solve that I believe is MD5 Code It is four lines of numbers and letters with 64 characters in each line. My request is, how can I decode this. It should give me some coordinates to find the cache.

Neil
 

Jon

Access World Site Owner
Staff member
Local time
Today, 18:56
Joined
Sep 28, 1999
Messages
7,383
Welcome to the forums! We are the most active Microsoft Access community on the internet by far, with posts going back over 20 years!

To get started, I highly recommend you read the post below. It contains important information for all new users to this forum. https://www.access-programmers.co.uk/forums/threads/new-member-read-me-first.223250/ We look forward to having you around here, learning stuff and having fun!
 

isladogs

MVP / VIP
Local time
Today, 18:56
Joined
Jan 14, 2017
Messages
18,209
There are various free tools online but whether they will work for you is another matter as it depends on both the 'hash' used and any 'salting'.
I'll leave you to research those terms online
 

arnelgp

..forever waiting... waiting for jellybean!
Local time
Tomorrow, 01:56
Joined
May 7, 2009
Messages
19,231
64 characters x 4 lines = 256 code.

MD5 is "1-way" hashing. you cannot reverse it.
 

isladogs

MVP / VIP
Local time
Today, 18:56
Joined
Jan 14, 2017
Messages
18,209
Yes I'm well aware of that.
I was careful in my choice of words and you'll notice I made no mention of reversing the encryption.
I stand by my comments about online tools.
You can check for yourself how these work ... and also why such tools are not guaranteed to work in all cases
 

theDBguy

I’m here to help
Staff member
Local time
Today, 10:56
Joined
Oct 29, 2018
Messages
21,449
Hi Neil. Welcome to AWF!

I have moved your topic out of the Introduction forum. You can start a new one there to introduce yourself.

Cheers!
 

The_Doc_Man

Immoderate Moderator
Staff member
Local time
Today, 12:56
Joined
Feb 28, 2001
Messages
27,135
IF what you have really is an MD5 hash value, it is considered practically irreversible. You MIGHT look at this site:


However, without knowing other factors that were fed into the hashing algorithm, you might not have enough to assure proper reversal. Not that such reversal can be assured anyway.
 

isladogs

MVP / VIP
Local time
Today, 18:56
Joined
Jan 14, 2017
Messages
18,209
I don't want to give too detailed an explanation but for encryption using MD5 (or RC4) as with ACCDB/ACCDE encryption, the password can only be retrieved by 'brute force attack'. However the time needed for that is likely to be prohibitively large.

An alternative approach is therefore used using 'rainbow tables'. These are tables which have been prepared using a very large number of passwords/hash keys. The decrypter can work through each of these in turn relatively quickly and if it finds a match, the hash is decrypted.
Such tools will only 'succeed' if the hash key / password is contained in the 'rainbow table'. If not, it will fail

'Salting' the data with a suitable text string before encryption will significantly reduce the chance of the data being recoverable by such an approach
 

Users who are viewing this thread

Top Bottom