mirror of
https://github.com/nocodb/nocodb.git
synced 2026-02-01 23:48:33 +00:00
fix: password encoding
This commit is contained in:
@@ -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 "$@"
|
||||
|
||||
Reference in New Issue
Block a user