What could be type of this encryption
#1
Hi,

I want to find type of some encryption but hashcat, other hash identifiers could not find the type

Hash is 64 char
Contains only small letters, big letters and numbers
Lotly part is letter
Not contains any special char
Exits from a django password reset application
Reply
#2
https://www.onlinehashcrack.com/hash-identification.php

https://www.tunnelsup.com/hash-analyzer/

https://hashcat.net/wiki/doku.php?id=example_hashes
Reply
#3
I have tried all
Reply
#4
(12-17-2022, 06:58 PM)ug0x01 Wrote: Exits from a django password reset application

Maybe not a hash at all, rather an URL string. That is I would expect from a "password reset" app.
Reply
#5
(12-18-2022, 03:13 PM)viffju Wrote:
(12-17-2022, 06:58 PM)ug0x01 Wrote: Exits from a django password reset application

Maybe not a hash at all, rather an URL string. That is I would expect from a "password reset" app.

Nope this is not a random token code. This is a CTF and at the hint, writes it's a hash
Reply
#6
it is very, very, very unlikely that a hashfunction will return a string with mixed small and capital letters NO WAY

maybe this would be no problem when the output is hex, but will result in many many problems if not, anyway again, no hashfunction will ever output mixed small and capital letters, so i also assume that this is some kind of token
Reply
#7
CTF. Maybe some obfuscation is in play. Something like base64. That would create this kind of string.
Or maybe you have to really use as token to get the "real" hash from web.
Reply
#8
(12-19-2022, 07:28 PM)viffju Wrote: CTF. Maybe some obfuscation is in play. Something like base64. That would create this kind of string.
Or maybe you have to really use as token to get the "real" hash from web.

I have tried basic things like base64 but didn't worked
Reply