Compare commits

...

2 Commits

  1. 4
      auth/auth.py
  2. 7
      run

4
auth/auth.py

@ -19,8 +19,6 @@ class Authentication:
"CREATE TABLE IF NOT EXISTS new(user)")
def check_token(self, profileId, token):
if len(token) != 43:
return False
with self.connect() as c:
res = c.execute("SELECT token FROM users WHERE profileId=?",
(profileId,)).fetchone()
@ -37,6 +35,8 @@ class Authentication:
return res[0] == user
# Check if new user can be created
if len(token) != 43:
return False
res = c.execute("SELECT 1 FROM new WHERE user=?",
(user,)).fetchone()
if res is None or res[0] != 1:

7
run

@ -1,9 +1,10 @@
#!/bin/sh
dir="$(dirname "$0")"
dir="$(realpath "$(dirname "$0")")"
mkdir -p server
cd server
exec java \
-DsocksProxyHost=127.0.0.1 -DsocksProxyPort=25560 \
exec "$dir/proxy/proxychains-ng/proxychain4" \
-f "$dir/proxy/proxychains-ng/src/proxychains.conf"
java \
-jar ../jars/a1.1.2_01/a0.2.1.jar \
nogui

Loading…
Cancel
Save