목록팀/>_water (1)
jm_p_op
Throttling - 비정상적 요청 유저 벤하기
목표 - 요청을 매크로 보내는 사람 걸러주기 throttling -> request을 카운팅해서 제한을 걸러준다 -> 카운팅하는것에서 유저를 벤시키면 되지 않을까? 기본세팅 -비로그인 유저는 ip로 저장된다. settings.py REST_FRAMEWORK = { 'DEFAULT_THROTTLE_CLASSES': [ 'rest_framework.throttling.AnonRateThrottle', 'rest_framework.throttling.UserRateThrottle' ], 'DEFAULT_THROTTLE_RATES': { 'anon': '100/day', 'user': '1000/day' } } view.py from rest_framework.throttling import UserRateTh..
팀/>_water
2023. 7. 6. 03:24