You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
374 B
374 B
this procedure sucks but it is what it is
The following procedure sets a users password to 'trustno1'
ssh cyberian@matrix.cyberia.club
# pop open a postgres prompt and reset the user password lolz
sudo -u postgres psql
\c synapse
UPDATE users SET
password_hash='$2b$12$TDvI.fxdmTDA64jO657mm.SFzoq6Xs4Fvf2XWQl7G8otiPrcr6s5m'
WHERE name='@foobar:cyberia.club';
quit