X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/kivitendo-erp.git/blobdiff_plain/deb4d2dbb676d7d6f69dfe7815d6e0cb09bd4a44..53593baa211863fbf66540cf1bcc36c8fb37257f:/sql/Pg-upgrade2-auth/remove_insecurely_hashed_passwords.sql diff --git a/sql/Pg-upgrade2-auth/remove_insecurely_hashed_passwords.sql b/sql/Pg-upgrade2-auth/remove_insecurely_hashed_passwords.sql new file mode 100644 index 000000000..1ea6b449b --- /dev/null +++ b/sql/Pg-upgrade2-auth/remove_insecurely_hashed_passwords.sql @@ -0,0 +1,8 @@ +-- @tag: remove_insecurely_hashed_passwords +-- @description: Passwörter löschen, die mit unsicheren Hash-Verfahren gehasht wurden +-- @depends: release_3_3_0 +UPDATE auth.user +SET password = '*' +WHERE (password IS NOT NULL) + AND (password NOT LIKE '{PBKDF2%') + AND (password NOT LIKE '{SHA256%');