Skip to content

Kura passwords encryption

Salvatore Coppola edited this page Jan 12, 2022 · 1 revision

Kura passwords are encrypted with sha256 and encoded in base64 format.

Here is an example of how to do it in linux shell:

echo -ne $(printf "admin" | sha256sum | awk '{print }' | sed -e 's|..|\\x&|g') | base64
Clone this wiki locally