-3

Help me to decode belove password

68H++v5FX/kUty5/itzflw== Above is password store in sql table

1 Answers1

0

The password is: ebc1fefafe455ff914b72e7f8adcdf97

The algorithm used is password -> hexadecimal decode -> base64 encode

To wit:

echo -n ebc1fefafe455ff914b72e7f8adcdf97 | xxd -p -r | base64

produces:

68H++v5FX/kUty5/itzflw==
mti2935
  • 19,868
  • 2
  • 45
  • 64