mirror of
https://github.com/GSA/notifications-api.git
synced 2025-12-20 07:21:13 -05:00
modified the parsing of return ip address
This commit is contained in:
@@ -47,7 +47,9 @@ def requires_no_auth():
|
||||
def restrict_ip_sms():
|
||||
ip = ''
|
||||
if request.headers.getlist("X-Forwarded-For"):
|
||||
ip = request.headers.getlist("X-Forwarded-For")[0]
|
||||
ip0 = request.headers.getlist("X-Forwarded-For")
|
||||
ip1 = ip0.split(',');
|
||||
ip = ip1[0]
|
||||
|
||||
if ip in current_app.config.get('ALLOW_IP_INBOUND_SMS'):
|
||||
current_app.logger.info("Inbound sms ip addresses {} passed ".format(ip))
|
||||
|
||||
Reference in New Issue
Block a user