PluginProbe ʕ •ᴥ•ʔ
reCaptcha by BestWebSoft / 1.29
reCaptcha by BestWebSoft v1.29
1.79 1.80 1.82 1.83 1.84 1.85 1.86 1.87 trunk 1.01 1.02 1.03 1.04 1.05 1.06 1.07 1.08 1.09 1.10 1.11 1.12 1.13 1.14 1.15 1.16 1.17 1.18 1.19 1.20 1.21 1.22 1.23 1.24 1.25 1.26 1.27 1.28 1.29 1.30 1.31 1.32 1.33 1.34 1.35 1.36 1.37 1.38 1.39 1.40 1.41 1.42 1.43 1.44 1.45 1.46 1.47 1.48 1.49 1.50 1.51 1.52 1.53 1.54 1.55 1.56 1.57 1.58 1.59 1.60 1.61 1.62 1.63 1.64 1.65 1.66 1.67 1.68 1.70 1.71 1.72 1.73 1.74 1.75 1.78
google-captcha / lib / recaptchalib.php
google-captcha / lib Last commit date
license.txt 9 years ago recaptchalib.php 9 years ago
recaptchalib.php
258 lines
1 <?php
2 /*
3 * This is a PHP library that handles calling reCAPTCHA.
4 * - Documentation and latest version
5 * http://recaptcha.net/plugins/php/
6 * - Get a reCAPTCHA API Key
7 * https://www.google.com/recaptcha/admin/create
8 * - Discussion group
9 * http://groups.google.com/group/recaptcha
10 *
11 * Copyright (c) 2007 reCAPTCHA -- http://recaptcha.net
12 * AUTHORS:
13 * Mike Crawford
14 * Ben Maurer
15 *
16 * Permission is hereby granted, free of charge, to any person obtaining a copy
17 * of this software and associated documentation files (the "Software"), to deal
18 * in the Software without restriction, including without limitation the rights
19 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
20 * copies of the Software, and to permit persons to whom the Software is
21 * furnished to do so, subject to the following conditions:
22 *
23 * The above copyright notice and this permission notice shall be included in
24 * all copies or substantial portions of the Software.
25 *
26 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
27 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
28 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
29 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
30 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
31 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
32 * THE SOFTWARE.
33 */
34
35 /**
36 * Encodes the given data into a query string format
37 * @param $data - array of string elements to be encoded
38 * @return string - encoded request
39 */
40 function gglcptch_recaptcha_qsencode ($data) {
41 $req = "";
42 foreach ( $data as $key => $value )
43 $req .= $key . '=' . urlencode( stripslashes($value) ) . '&';
44
45 // Cut the last '&'
46 $req=substr($req,0,strlen($req)-1);
47 return $req;
48 }
49
50 /**
51 * Submits an HTTP POST to a reCAPTCHA server
52 * @param string $host
53 * @param string $path
54 * @param array $data
55 * @param int port
56 * @return array response
57 */
58 function gglcptch_recaptcha_http_post($host, $path, $data, $port = 80) {
59
60 $req = gglcptch_recaptcha_qsencode ($data);
61
62 $http_request = "POST $path HTTP/1.0\r\n";
63 $http_request .= "Host: $host\r\n";
64 $http_request .= "Content-Type: application/x-www-form-urlencoded;\r\n";
65 $http_request .= "Content-Length: " . strlen($req) . "\r\n";
66 $http_request .= "User-Agent: reCAPTCHA/PHP\r\n";
67 $http_request .= "\r\n";
68 $http_request .= $req;
69
70 $response = '';
71 if( false == ( $fs = @fsockopen($host, $port, $errno, $errstr, 10) ) ) {
72 die ('Could not open socket');
73 }
74
75 fwrite($fs, $http_request);
76
77 while ( !feof($fs) )
78 $response .= fgets($fs, 1160); // One TCP-IP packet
79 fclose($fs);
80 $response = explode("\r\n\r\n", $response, 2);
81
82 return $response;
83 }
84
85 /**
86 * Gets the challenge HTML (javascript and non-javascript version).
87 * This is called from the browser, and the resulting reCAPTCHA HTML widget
88 * is embedded within the HTML form it was called from.
89 * @param string $pubkey A public key for reCAPTCHA
90 * @param string $error The error given by reCAPTCHA (optional, default is null)
91 * @param boolean $use_ssl Should the request be made over ssl? (optional, default is false)
92 * @return string - The HTML to be embedded in the user's form.
93 */
94 function gglcptch_recaptcha_get_html ($pubkey, $error = null, $use_ssl = false)
95 {
96 if ($pubkey == null || $pubkey == '') {
97 die ("To use reCAPTCHA you must get an API key from <a href='https://www.google.com/recaptcha/admin/create'>https://www.google.com/recaptcha/admin/create</a>");
98 }
99
100 if ($use_ssl) {
101 $server = "https://www.google.com/recaptcha/api";
102 } else {
103 $server = "http://www.google.com/recaptcha/api";
104 }
105
106 $errorpart = "";
107 if ($error) {
108 $errorpart = "&amp;error=" . $error;
109 }
110 return '<noscript>
111 <iframe src="'. $server . '/noscript?k=' . $pubkey . $errorpart . '" height="300" width="320" frameborder="0"></iframe><br/>
112 <textarea name="recaptcha_challenge_field" rows="3" cols="40" style="width: 320px !important; border: 1px solid #333 !important; resize: none !important;"></textarea>
113 <input type="hidden" name="recaptcha_response_field" value="manual_challenge"/>
114 </noscript>';
115 }
116
117 /**
118 * A gglcptch_ReCaptchaResponse is returned from gglcptch_recaptcha_check_answer()
119 */
120 class gglcptch_ReCaptchaResponse {
121 var $is_valid;
122 var $error;
123 }
124
125 /**
126 * Calls an HTTP POST function to verify if the user's guess was correct
127 * @param string $privkey
128 * @param string $remoteip
129 * @param string $challenge
130 * @param string $response
131 * @param array $extra_params an array of extra variables to post to the server
132 * @return gglcptch_ReCaptchaResponse
133 */
134 function gglcptch_recaptcha_check_answer ($privkey, $remoteip, $challenge, $response, $extra_params = array())
135 {
136 if ($privkey == null || $privkey == '') {
137 die ("To use reCAPTCHA you must get an API key from <a href='https://www.google.com/recaptcha/admin/create'>https://www.google.com/recaptcha/admin/create</a>");
138 }
139
140 if ($remoteip == null || $remoteip == '') {
141 die ("For security reasons, you must pass the remote ip to reCAPTCHA");
142 }
143
144
145
146 //discard spam submissions
147 if ($challenge == null || strlen($challenge) == 0 || $response == null || strlen($response) == 0) {
148 $recaptcha_response = new gglcptch_ReCaptchaResponse();
149 $recaptcha_response->is_valid = false;
150 $recaptcha_response->error = 'incorrect-captcha-sol';
151 return $recaptcha_response;
152 }
153
154 $response = gglcptch_recaptcha_http_post ("www.google.com", "/recaptcha/api/verify",
155 array (
156 'privatekey' => $privkey,
157 'remoteip' => $remoteip,
158 'challenge' => $challenge,
159 'response' => $response
160 ) + $extra_params
161 );
162
163 $answers = explode ("\n", $response [1]);
164 $recaptcha_response = new gglcptch_ReCaptchaResponse();
165
166 if (trim ($answers [0]) == 'true') {
167 $recaptcha_response->is_valid = true;
168 }
169 else {
170 $recaptcha_response->is_valid = false;
171 $recaptcha_response->error = $answers [1];
172 }
173 return $recaptcha_response;
174
175 }
176
177 /**
178 * gets a URL where the user can sign up for reCAPTCHA. If your application
179 * has a configuration page where you enter a key, you should provide a link
180 * using this function.
181 * @param string $domain The domain where the page is hosted
182 * @param string $appname The name of your application
183 */
184 function gglcptch_recaptcha_get_signup_url ($domain = null, $appname = null) {
185 return "https://www.google.com/recaptcha/admin/create?" . gglcptch_recaptcha_qsencode (array ('domains' => $domain, 'app' => $appname));
186 }
187
188 function gglcptch_recaptcha_aes_pad($val) {
189 $block_size = 16;
190 $numpad = $block_size - (strlen ($val) % $block_size);
191 return str_pad($val, strlen ($val) + $numpad, chr($numpad));
192 }
193
194 /* Mailhide related code */
195
196 function gglcptch_recaptcha_aes_encrypt($val,$ky) {
197 if (! function_exists ("mcrypt_encrypt")) {
198 die ("To use reCAPTCHA Mailhide, you need to have the mcrypt php module installed.");
199 }
200 $mode=MCRYPT_MODE_CBC;
201 $enc=MCRYPT_RIJNDAEL_128;
202 $val=gglcptch_recaptcha_aes_pad($val);
203 return mcrypt_encrypt($enc, $ky, $val, $mode, "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0");
204 }
205
206
207 function gglcptch_recaptcha_mailhide_urlbase64 ($x) {
208 return strtr(base64_encode ($x), '+/', '-_');
209 }
210
211 /* gets the reCAPTCHA Mailhide url for a given email, public key and private key */
212 function gglcptch_recaptcha_mailhide_url($pubkey, $privkey, $email) {
213 if ($pubkey == '' || $pubkey == null || $privkey == "" || $privkey == null) {
214 die ("To use reCAPTCHA Mailhide, you have to sign up for a public and private key, " .
215 "you can do so at <a href='http://www.google.com/recaptcha/mailhide/apikey'>http://www.google.com/recaptcha/mailhide/apikey</a>");
216 }
217
218
219 $ky = pack('H*', $privkey);
220 $cryptmail = gglcptch_recaptcha_aes_encrypt ($email, $ky);
221
222 return "http://www.google.com/recaptcha/mailhide/d?k=" . $pubkey . "&c=" . gglcptch_recaptcha_mailhide_urlbase64 ($cryptmail);
223 }
224
225 /**
226 * gets the parts of the email to expose to the user.
227 * eg, given johndoe@example,com return ["john", "example.com"].
228 * the email is then displayed as john...@example.com
229 */
230 function gglcptch_recaptcha_mailhide_email_parts ($email) {
231 $arr = preg_split("/@/", $email );
232
233 if (strlen ($arr[0]) <= 4) {
234 $arr[0] = substr ($arr[0], 0, 1);
235 } else if (strlen ($arr[0]) <= 6) {
236 $arr[0] = substr ($arr[0], 0, 3);
237 } else {
238 $arr[0] = substr ($arr[0], 0, 4);
239 }
240 return $arr;
241 }
242
243 /**
244 * Gets html to display an email address given a public an private key.
245 * to get a key, go to:
246 *
247 * http://www.google.com/recaptcha/mailhide/apikey
248 */
249 function gglcptch_recaptcha_mailhide_html($pubkey, $privkey, $email) {
250 $emailparts = gglcptch_recaptcha_mailhide_email_parts ($email);
251 $url = gglcptch_recaptcha_mailhide_url ($pubkey, $privkey, $email);
252
253 return htmlentities($emailparts[0]) . "<a href='" . htmlentities ($url) .
254 "' onclick=\"window.open('" . htmlentities ($url) . "', '', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=500,height=300'); return false;\" title=\"Reveal this e-mail address\">...</a>@" . htmlentities ($emailparts [1]);
255
256 }
257
258 ?>