Changeset 1762685
- Timestamp:
- 11/10/2017 10:05:39 AM (8 years ago)
- Location:
- vaptcha
- Files:
-
- 5 edited
-
assets/screenshot-1.png (modified) (previous)
-
assets/screenshot-2.png (modified) (previous)
-
trunk/VaptchaPlugin.php (modified) (1 diff)
-
trunk/options.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
vaptcha/trunk/VaptchaPlugin.php
r1762649 r1762685 111 111 $validated['vaptcha_register'] = ($input['vaptcha_register'] == "1" ? "1" : "0"); 112 112 $validated['vaptcha_login'] = ($input['vaptcha_login'] == "1" ? "1" : "0"); 113 $validated['vaptcha_lang'] = ($input['vaptcha_lang'] == "zh " ? "zh" : "en");113 $validated['vaptcha_lang'] = ($input['vaptcha_lang'] == "zh-CN" ? "zh-CN" : "en"); 114 114 $validated['bg_color'] = trim($input['bg_color']); 115 115 $validated['vaptcha_width'] = trim($input['vaptcha_width']); -
vaptcha/trunk/options.php
r1762649 r1762685 86 86 <th> 87 87 <label for="lang_zh">中文</label> 88 <input name="vaptcha_options[vaptcha_lang]" id="lang_zh" type="radio" value="zh-CN" <?php if ($options['vaptcha_lang'] == 'zh ') { ?> checked <?php } ?> class="regular-text code">88 <input name="vaptcha_options[vaptcha_lang]" id="lang_zh" type="radio" value="zh-CN" <?php if ($options['vaptcha_lang'] == 'zh-CN') { ?> checked <?php } ?> class="regular-text code"> 89 89 <label for="lang_en">English</label> 90 90 <input name="vaptcha_options[vaptcha_lang]" id="lang_en" type="radio" value="en" <?php if ($options['vaptcha_lang'] == 'en') { ?> checked <?php } ?> class="regular-text code"> -
vaptcha/trunk/readme.txt
r1762649 r1762685 1 1 === Vaptcha === 2 Contributors: vaptcha2 Contributors: VAPTCHA:the CAPTCHA from future 3 3 Donate link: https://www.vaptcha.com 4 Tags: vaptcha, captcha, 验证, 极验,验证码, 手势验证, 人机验证4 Tags: vaptcha, captcha, 验证, 验证码, 手势验证, 人机验证 5 5 Requires at least: 3.0.1 6 6 Requires PHP: 5.3.0 … … 12 12 == Description == 13 13 VAPTCHA (an acronym for “Variation Analysis Based Public Turing Test to Tell Computers and Humans Apart”) is an AI-based verification system. 14 15 14 16 VAPTCHA shows significant advantages over traditional verification systems. 15 Easy on human. Users won’t suffer awfully distorted imagines that is hard to tell or strange characters from foreign languages here in VAPTCHA, just an easy drag of mouse and the verification is completed. Credible clients that have passed risk assessment are able to complete verification within 200 millisecond with an easy click of the “I am not a robot” button.16 Strict on security. VAPTCHA gives a hard time to bots. Verification image is generated randomly, which calls for abstract thinking that is unique to human, so the verification images are nothing but illogical pixels to bots. VAPTCHA has built a behavior characteristics bank with the help of machine learning to tell human and bots apart; device-fingering techniques are used to track suspicious clients whose verification history would be checked to see if they are guilty or not; blacklist is updated in real-time to expose attackers. After numerous crack tests, VAPTCHA proves to be the safest verification system.17 P.S.: come to VAPTCHA’s website to sign in, create your own verification unit and get VID and KEY for plug-in admin, so you can check the verification statistics in real-time.18 17 19 VAPTCHA是”Variation Analysis - based Public Turing Test to Tell Computers and Humans Apart ”的简称,也叫手势验证。一种通过用户鼠标手势即可完成人机验证的图灵测试程序。VAPTCHA更加简单和安全,是目前传统验证码的最佳替代方案。VAPTCHA不仅大幅节省了用户在使用互联网服务时在人机验证上面的耗时,平均通过时间不超过1秒,同时也是目前世界上最不可能被破解的验证系统。 18 19 *Easy on human.* Users won’t suffer awfully distorted imagines that is hard to tell or strange characters from foreign languages here in VAPTCHA, just an easy drag of mouse and the verification is completed. Credible clients that have passed risk assessment are able to complete verification within 200 millisecond with an easy click of the “I am not a robot” button. 20 21 *Strict on security.* VAPTCHA gives a hard time to bots. Verification image is generated randomly, which calls for abstract thinking that is unique to human, so the verification images are nothing but illogical pixels to bots. VAPTCHA has built a behavior characteristics bank with the help of machine learning to tell human and bots apart; device-fingering techniques are used to track suspicious clients whose verification history would be checked to see if they are guilty or not; blacklist is updated in real-time to expose attackers. After numerous crack tests, VAPTCHA proves to be the safest verification system. 22 23 *P.S.*: come to VAPTCHA’s website to sign in, create your own verification unit and get VID and KEY for plug-in admin, so you can check the verification statistics in real-time. 20 24 21 25 == Installation ==
Note: See TracChangeset
for help on using the changeset viewer.