remotes/1693045480750635534/spooky-22
Aevann1 2022-05-03 06:09:02 +02:00
parent db82fdda6e
commit 394244a4cd
1 changed files with 1 additions and 3 deletions

View File

@ -87,9 +87,7 @@ def before_request():
with open('site_settings.json', 'r') as f:
app.config['SETTINGS'] = json.load(f)
if request.host != app.config["SERVER_NAME"]:
print(request.host, flush=True)
return {"error":"Unauthorized host provided."}, 401
if request.host != app.config["SERVER_NAME"]: return {"error":"Unauthorized host provided."}, 401
if request.headers.get("CF-Worker"): return {"error":"Cloudflare workers are not allowed to access this website."}, 401
if not app.config['SETTINGS']['Bots'] and request.headers.get("Authorization"): abort(503)