Flask - Security Best Practices
Given this Flask route with rate limiting:
What happens if a client sends 4 requests within one minute?
@app.route('/data')
@limiter.limit('3 per minute')
def data():
return 'Data accessed'What happens if a client sends 4 requests within one minute?
