Skip Navigation LinksALVAO 10.2ALVAO Asset ManagementSystem Implementation in an OrganizationEnabling CAPTCHA Skip Navigation Links. Skip Navigation Links Skip Navigation Links.


Enabling CAPTCHA

For better protection against password-guessing attack you can enable CAPTCHA in ALVAO WebApp. To do so, proceed as follows:

  1. Go to ReCAPTCHA, create an account and obtain a public and a private key. Follow the instructions shown on the page.
  2. Execute the following SQL commands on the database with the public key (Site key) and private key (Secret key) obtained:
    INSERT
    INTOtProperty(sProperty,sPropertyValue)VALUES (N'WebApp.CAPTCHAPublicKey', N'<public key>');
    INSERTINTOtProperty(sProperty,sPropertyValue)VALUES (N'WebApp.CAPTCHAPrivateKey', N'<private key>');
  3. When a high number of unsuccessful WA login attempts occurs, a human verification test will be performed to exclude automated robots.

If you want to disable this behavior, execute the following commands:
DELETEFROM tProperty WHERE sProperty = N'WebApp.CAPTCHAPublicKey';
DELETEFROM tProperty WHERE sProperty = N'WebApp.CAPTCHAPrivateKey';

 

Did not find what you were looking for? Ask our technical support team.