I am testing a site and have come across this password ...
aW/hY4XQjFpq1ZGzoO5cZ.
I have noticed a "." at the end and not sure which encryption method would create this. Any ideas would be useful.
I am testing a site and have come across this password ...
aW/hY4XQjFpq1ZGzoO5cZ.
I have noticed a "." at the end and not sure which encryption method would create this. Any ideas would be useful.
As has been said, multiple people trying to reverse this online. If you're not "cacaocaca1" and "Vicci", there's a big chance this password is simple, and easy to guess in a dictionary attack.
That looks like the right size and charset for a crypt MD5, except its missing the salt and prefix. Normally the output from crypt MD5 would look something like this.
$1$rasmusle$jrCf9Xc61lNMIQse/NJ1q.
With your hash I'd expect to also see the type and salt before the hash itself. In my example it would be "1" and "rasmusle". Maybe they have the salt hardcoded elsewhere and are stripping it out of the final hash you're fetching. Or they're just using something that uses the same encoding scheme as crypt MD5 with a final hash thats the same bit size.