Skip to content

Instantly share code, notes, and snippets.

@alexwilson
Created August 21, 2018 14:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alexwilson/77b31b25f04da696e5476dc70ad9430b to your computer and use it in GitHub Desktop.
Save alexwilson/77b31b25f04da696e5476dc70ad9430b to your computer and use it in GitHub Desktop.
eZ Platform - Reset Admin Password
SET @key = 'test123456789';
SET @username = 'admin';
SET @del = '\n';
SET @hash = MD5(CONCAT(@username,@del,@key));
UPDATE ezuser SET password_hash=@hash WHERE login=@username;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment