This repository has been archived on 2022-05-11. You can view files and clone it, but cannot push or open issues or pull requests.
misc/scripts/matrix-register.sh

14 lines
402 B
Bash
Raw Normal View History

2022-03-05 22:45:35 +00:00
#!/bin/bash
NONCE=$(curl -s https://chat.is-cute.ml/_synapse/admin/v1/register)
NONCE=${NONCE//\"}
NONCE=${NONCE//:}
NONCE=${NONCE//\}}
NONCE=${NONCE//\{}
NONCE=${NONCE//nonce}
echo $NONCE
DIGEST=$(python3 ./matrix-register.py $NONCE tetra 'RGfZk_-Hk5')
echo $DIGEST
echo $(http POST https://chat.is-cute.ml/_synapse/admin/v1/register nonce=$NONCE username="tetra" password="RGfZk_-Hk5" mac=$DIGEST)