Update Navidrome

VnPower 2024-03-02 13:09:15 +00:00
parent 1d7034b641
commit 9449547fdb

@ -10,6 +10,21 @@ If you cannot find what tracks/albums you are looking for on the server, you can
If you wish to create an account, please contact me via [Matrix](https://matrix.to/#/@vnpower:eientei.org) or [email](mailto:vnpower@disroot.org) and provide an username, a password and optionally an email.
You can access a demo account with these credentials, which could be deleted when I am sad :(
You can access a demo account with these credentials.
- Username: `exozyme`
- Password: `kUgRAonMCJEdMX6cCxzw49m6pyW3HQ`
The password has been obfuscated by this Python function below:
```python
def encrypt(s):
ss = ""
s = s[::-1]
for i in s[::2]:
ss += i
offset = len(s) % 2
for i in s[::-1][offset::2]:
ss += i
return ss[::-1]
```
To access the demo account, you have to decode the string. Here is the encrypted password: `fsAC86Wx2y8TTNFY44UbYF7qKHBA7s`
If you wish not to solve this problem, just contact me to get the password. Otherwise, have fun hacking :)