在Django中使用Google Recaptcha V3的最佳方法

时间:2019-03-04 03:38:04

标签: python jquery django recaptcha

首先,我应该说我已经读过this,这不是我所需要的。我想使用html / css而不是Django表单制作表单。

我的方法基于this,实际上是在PHP中。

我写了代码,并且很好用 ,但我相信应该有更好的方法。

代码的总结是,我提交表单,将数据和google recaptcha令牌发布到我的函数中,然后对其进行一些处理,然后根据处理结果重定向到相对页面,我返回url和状态再次显示为jQuery,然后使用jQuery重定向到该页面。

这是我的代码:

login.html:

<script src="https://www.google.com/recaptcha/api.js?render=here is recaptcha public key"></script>
<!-- login form and etc -->

<script>
$('#loginForm').submit(function() {
    // stop what loginform is going to do
    event.preventDefault();
    var username = $('#username').val();
    var password = $("#password").val();
    grecaptcha.ready(function () {
      grecaptcha.execute("here is recaptcha public key", 
         {action: "{% url 'basic_app:login_page' %}"}).then(function (token_id) 
              {$('#loginForm').prepend('<input type="hidden" name="g-recaptcha-response" value="' + token_id + '">');
                $.post("{% url 'basic_app:login' %}",  // url
                   {username: username,password: password,
                    token_id: token_id,csrfmiddlewaretoken: '{{ csrf_token }}'},
                       function( result ){
                            console.log(result);
                            if(result.status == 0) {
                                    window.location.replace(result.url)
                            } else if (result.status == 1){
                                    window.location.replace(result.url)
                            }
                        },
                'json');
          });
      });
  });

views.py:

def user_login(request):
    if request.method == "POST":
        username = request.POST.get('username')
        password = request.POST.get('password')
        token_id = request.POST.get('token_id')
        if(token_id):
            secretKey = "here is recaptcha secret key"
            data = {
                'secret': secretKey,
                'response': token
            }
            r = requests.post('https://www.google.com/recaptcha/api/siteverify', data=data)
            result = r.json()
            ....
            ## some codes for more security 
            ....
            response = {'status': 0, 'message':"", 'url': '/'}
            return HttpResponse(json.dumps(response), content_type='application/json')
        else:
            response = {'status': 0, 'message':"", 'url': '/login_page'}
            return HttpResponse(json.dumps(response), content_type='application/json')     

....

此方法是否存在安全性问题?
有没有办法编写更好的代码来使用recaptcha V3? 谢谢。

1 个答案:

答案 0 :(得分:0)

更好的步骤:

  1. 用户单击“提交”时,请防止出现默认行为
  2. 在onSubmit内,执行g-recaptcha并将令牌存储在表单中
  3. 像下面的教程中那样调用this.submit()或form.submit()
  4. 验证视图中的验证码。

How to Implement Google Recaptcha v3 on your django app