Can you please provide some information on what this module can do or not and how ?

You say in the impression module page :

We have a small but powerful module Human Behavior to prevent bots from registering users in your site.

Does it means the module only block login processes ?

You say also :

It is not another Captcha module but acts like a Captcha.

Does it mean it also can block any form validation (comments, webform...) ?
And if yes, how ?

And how can we be aware of what it has blocked ?
I didn't find any information on blocked IP in the drupal logs.
And when we list all impression data (using views) we have a list of data like :

IID: 18
Action: 2
Date de création: Mardi 18 Avril 2017 - 18:55
Domaine: www.mydomain.com
Identifiant (ID) utilisateur: 0
IP: 88.161.65.166
Referral: http://www.mydomain.com/
URI: http://www.mydomain.com/

How can we interpret this data ? What mean : action = 2 or 3 ?

I enabled the module on some sites having form spam issues and it seemed to have no effect on comments spam issues and some success on webform spam issues. But since no clear information on blocked actions is provided, it is difficult to evaluate...

Thanks.

Comments

remaye created an issue. See original summary.

sakural’s picture

I see the module , it add a validate function to some form, you can write your form ids to it's configuration page (Default form is :'user_register_form, user_login_form, user_pass, user_login').

And the validate function is compare the time for now and the impression token create time;
// the value of ( time() - $impression ) compare to 10800

if this validate is not passed ; it return a error form this form ;
// form_set_error('title', t('Catpcha verification failed.'));

action 0 Page load , 1 Mobile Screen Touch, 2 Mouse Move ,3 Keyboard .(it's from impression module )

wuinfo - Bill Wu’s picture

If my memory serves, it is the way it should be.

The way how it is working is to capture the actions from end user like mouse move and click etc. So, we grant access when we are confident it is not bots.

For your comment form, it will need some configuration.

apaderno’s picture

Status: Needs review » Active