Anoop K V
02/01/2023, 6:20 AMRachel Perkins
02/01/2023, 2:22 PMBenjamin Edwards
02/01/2023, 2:33 PMAnoop K V
02/01/2023, 4:17 PMRachel Perkins
02/01/2023, 4:39 PMzwass
02/01/2023, 5:54 PMRachel Perkins
02/01/2023, 6:54 PMyeah I just managed to test it locally, so assuming they can connect to their mysql database, in the CLI or a mysql GUI:
insert into password_reset_requests (user_id, token, expires_at) values ((select id from users where name = 'martin'), 'secrettoken', date_add(current_timestamp, interval 10 minute));
(replace 'martin' by their username, 'secrettoken' with a secret)
then visit: https://localhost:8080/login/reset?token=secrettoken
(replace localhost:8080 by their Fleet server URL, and 'secrettoken' with the secret used above)@Anoop K V Hope this does the trick!
Anoop K V
02/03/2023, 9:03 AM