我设法绕过服务器端的验证码集成由我-我做错了什么


I managed to bypass recaptcha on server-side integration by me - What am I doing wrong?

我想在一个非常简单的形式实现验证码我有一个index.html文件在客户端,和一个post.php服务器端。

我已经尝试在服务器站点上集成验证码,正如您可以在下面的代码中看到的。

我做了一些测试,似乎有一个预期的结果…

当我尝试这个查询时,问题出现了

for X in `seq 0 100`; do curl -D - "http://example.com/post.php" -d
"email=email${X}%40example.com&tos=on&g-recaptcha-response[]=plm&submit="; done

结果是我成功地绕过了验证码,我不确定问题是什么。

最有可能的是,我的php代码有问题,但究竟是什么?

post.php

<?php
    $email;$submit;$captcha;
    if(isset($_POST['submit']))
    {
      $email=filter_var($_POST['email'], FILTER_SANITIZE_EMAIL);
    }
    if(isset($_POST['g-recaptcha-response']))
    {
      $captcha=$_POST['g-recaptcha-response'];
    }
    if(!$captcha)
    {
      echo '<h2>Please check the the captcha form.</h2>';
      exit;
    }
    $response=file_get_contents("https://www.google.com/recaptcha/api/siteverify?secret=6Le[whatever[7_t&response=".$captcha."&remoteip=".$_SERVER['REMOTE_ADDR']);
    if($response.success==false)
    {
      echo '<h2>You are spammer ! Get the @$%K out</h2>';
    }
    else
    {
      $file = 'email-list.txt';
      if (filter_var($email, FILTER_VALIDATE_EMAIL)) 
        {
            if(!(exec('grep '.escapeshellarg($email).' '.$file))) 
            {           
                // Open the file to get existing content
                $current = file_get_contents($file);
                // Append a new person to the file
                $current .= $email . "'n";
                // Write the contents back to the file
                file_put_contents($file, $current);
                header('Location: index.html?success='.urlencode($email));
            }
            else
                header('Location: index.html?fail='.urlencode($email));
        } 
        else 
        {
            echo "$email is <strong>NOT</strong> a valid email address.<br/><br/>";
        }
    }
?>

index . html

...
<div class="form-group" ng-cloak>
    <div class="g-recaptcha" ng-show="IAgree" data-sitekey="6LeEW[whatever]-UXo3"></div>
</div>
...

我该如何解决这个问题?英语不是我的母语;请原谅输入错误

正如我在上面的评论中提到的- file_get_contents返回一个字符串。您需要使用json_decode函数将json字符串解码为php对象:

$url = "https://www.google.com/recaptcha/api/siteverify?"‌
$response = json_decode(file_get_contents($url​)); 
if($response->success == false) {
    echo "Oh no"; 
}