Hello
I am curious about the security of default admin panel of Django. For a live Django website, I will be using Django admin for all management and it feels like simply asking username and password at the mysite.com/admin/
url is kinda weak against brute force attemps (or maybe dictionary based attempts. I have very little knowledge about auto hacking attempts)
What would you suggest for extra protection ?
my ideas are:
- only allowing
admin/
login for specific ips. (I have no idea how to achieve this) - asking recaptcha (I can find some infor for using recaptcha on django but do not know for admin login)
Thanks