mirror of
https://github.com/TitanEmbeds/Titan.git
synced 2024-12-25 06:27:03 +01:00
Add x forward for header
This commit is contained in:
parent
ff401271e6
commit
66b8c7dd09
@ -20,6 +20,9 @@ from titanembeds.discordrest import DiscordREST
|
||||
discord_api = DiscordREST(config['bot-token'])
|
||||
|
||||
def get_client_ipaddr():
|
||||
if request.headers.getlist("X-Forwarded-For"):
|
||||
ip = request.headers.getlist("X-Forwarded-For")[0]
|
||||
else:
|
||||
ip = request.remote_addr
|
||||
return hashlib.sha512((config['app-secret'] + ip).encode('utf-8')).hexdigest()[:15]
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user