fix: password encoding

This commit is contained in:
DarkPhoenix2704
2024-08-29 17:27:32 +05:30
parent 1935e86737
commit 03ab55def4

View File

@@ -90,7 +90,7 @@ urlencode() {
}
generate_password() {
openssl rand -base64 48 | tr -dc 'a-zA-Z0-9!@#$%^&*()-_+=' | head -c 32
openssl rand -base64 48 | tr -dc 'a-zA-Z0-9' | head -c 32
}
get_public_ip() {
@@ -945,4 +945,4 @@ main() {
fi
}
main "$@"
main "$@"