Fixed logging of proxied client requests while authenticating. #2721

pull/2745/head v1.4.6-beta.14
morpheus65535 2 months ago
parent 23c19db2e2
commit ac1a3c5eb0

@ -11,7 +11,9 @@ from app.config import settings
def check_credentials(user, pw, request, log_success=True): def check_credentials(user, pw, request, log_success=True):
ip_addr = request.environ.get('HTTP_X_FORWARDED_FOR', request.remote_addr) forwarded_for_ip_addr = request.environ.get('HTTP_X_FORWARDED_FOR')
real_ip_addr = request.environ.get('HTTP_X_REAL_IP')
ip_addr = forwarded_for_ip_addr or real_ip_addr or request.remote_addr
username = settings.auth.username username = settings.auth.username
password = settings.auth.password password = settings.auth.password
if hashlib.md5(f"{pw}".encode('utf-8')).hexdigest() == password and user == username: if hashlib.md5(f"{pw}".encode('utf-8')).hexdigest() == password and user == username:

Loading…
Cancel
Save