There has been some reports about attack on /oauth2/access_token/. This cause LMS to be down. This is being resolved by rate limiting the endpoint. LEARNER-3393
6 lines
87 B
Python
6 lines
87 B
Python
from ipware.ip import get_ip
|
|
|
|
|
|
def real_ip(group, request):
|
|
return get_ip(request)
|