3
I was reading about an apache rule for validating permissions to access files/directories, and saw that the default file that reads the user and password was:
usuário:senha (sendo a senha em base64).
I tried to decode the password through the linux terminal, only an error message was returned:
~$ echo "zuQCCnEXtTamg" | base64 -d
~$ Invalid Input
And In Windows with ceramic:
Retorno inválido de dados
I searched and saw that this error is generated by the type of char-encoding that the file was encoded (UTF-8, UTF-16, etc)
The problem is that I don’t know how it was coded and where (as windows uses utf8 and linux not by default). Is there any way to find out how it was coded and its encoding?
Hash: zuQCCnEXtTamg
echo "zuQCCnEXtTamg" | base64 -d , isso no Linux.
No windows usei o cerUtil --decode ...
O resultado no linux foi : caracteres bugados
e no Windows: Retorno de dados inválidos
– Thiago
@user3386417 put this information in the question as well!!!
– user6026