Home > Software engineering >  How to protect from brute force in Flask
How to protect from brute force in Flask

Time:03-03

I am using Flask and I want to make sure no one is able to fuzz/dos or brute force my api.
How to do it?

CodePudding user response:

Since a flask application should not be directly exposed to the public, but should be served through the use of technologies such as gunicorn and nginx, you should understand how to protect by setting nginx to defend against ddos ​​attacks. Check out the nginx documentation to understand how to protect your server.

  • Related