Plugin Directory

Changeset 1762685


Ignore:
Timestamp:
11/10/2017 10:05:39 AM (8 years ago)
Author:
vaptcha
Message:

Update

Location:
vaptcha
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • vaptcha/trunk/VaptchaPlugin.php

    r1762649 r1762685  
    111111        $validated['vaptcha_register'] = ($input['vaptcha_register'] == "1" ? "1" : "0");
    112112        $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");
    114114        $validated['bg_color'] = trim($input['bg_color']);
    115115        $validated['vaptcha_width'] = trim($input['vaptcha_width']);
  • vaptcha/trunk/options.php

    r1762649 r1762685  
    8686            <th>
    8787                <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">
    8989                <label for="lang_en">English</label>
    9090                <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  
    11=== Vaptcha ===
    2 Contributors: vaptcha
     2Contributors: VAPTCHA:the CAPTCHA from future
    33Donate link: https://www.vaptcha.com
    4 Tags: vaptcha, captcha, 验证, 极验, 验证码, 手势验证, 人机验证
     4Tags: vaptcha, captcha, 验证, 验证码, 手势验证, 人机验证
    55Requires at least: 3.0.1
    66Requires PHP: 5.3.0
     
    1212== Description ==
    1313VAPTCHA (an acronym for “Variation Analysis Based Public Turing Test to Tell Computers and Humans Apart”) is an AI-based verification system.
     14
     15
    1416VAPTCHA 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. 
    1817
    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. 
    2024
    2125== Installation ==
Note: See TracChangeset for help on using the changeset viewer.