9mido
9mido
Linking the following PR here since it relates: https://github.com/pennersr/django-allauth/pull/2181
Linking the following issue since it relates: https://github.com/pennersr/django-allauth/issues/2814
@ebrahimp What version of django and allauth are you using? Did you see this? https://stackoverflow.com/questions/38289442/django-all-auth-remove-asking-password-twice-in-signup-form Try using ACCOUNT_SIGNUP_PASSWORD_VERIFICATION and report back. It seems like forms.py SignupForm and BaseSignupForm classes and...
@ebrahimp Strange I just tried it out myself and did not have any problems with it.
@mbi Take a look at code written by SilverStrings024. It did not work when he tried to help me with it (we still need to do a remote session together)...
Update: I was able to accomplish playing the audio in the browser using https://django-simple-captcha.readthedocs.io/en/latest/advanced.html#rendering and adding ``` ``` to custom_field.html https://stackoverflow.com/questions/18972515/how-to-create-ajax-refresh-for-django-simple-captcha
What about Ajax refresh? Wouldn't that need some kind of rate limiting protection? I imagine if someone malicious were to brute force click the refresh button millions of times per...
@mbi I just wonder though what kind of captcha_challenge function would be bullet proof? Maybe a mix of letters and numbers and guessing the next one for each? But what...
@mbi good points. Just brainstorming here. Maybe do something like given IP, geoIP, time on page, number of interactions, time of day, etc. some simple model predicting likelihood of spam?...
@mbi I found this site and the default design with lines and dots of django-simple-captcha can be defeated. Could the solution be a redesign or implementation of the gif captcha?...